mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 02:48:28 -07:00
968831c5b9
Updates #2803. Squashed commit of the following: commit ce711ae2e08c3714a4e0c6d177c02f7801c05fce Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Mar 11 20:58:40 2021 +0300 all: imp code, docs commit e91094e461893c27eda879b33b5ed2c7085510df Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Mar 11 20:42:14 2021 +0300 all: rm var shadowing vol. 3
64 lines
1.3 KiB
Go
64 lines
1.3 KiB
Go
// +build windows
|
|
|
|
package aghtest
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
const (
|
|
maxRetryDur = 1000 * time.Millisecond
|
|
retryDur = 5 * time.Millisecond
|
|
)
|
|
|
|
func prepareTestDir(t *testing.T) (dir string) {
|
|
// Windows, including the version of Windows Server that Github Actions
|
|
// uses, apparently likes to overly eagerly inspect new directories with
|
|
// its Windows Defender. Disabling it might require additional
|
|
// workarounds, and until we've figured it out, just retry the deletion
|
|
// until the error goes away.
|
|
//
|
|
// The code is largely inspired by the one that has been introduced into
|
|
// the go command itself. We should probably make a proposal to use the
|
|
// same mechanism in t.TempDir.
|
|
//
|
|
// See https://go-review.googlesource.com/c/go/+/172337.
|
|
//
|
|
// See https://github.com/golang/go/issues/44919.
|
|
|
|
t.Helper()
|
|
|
|
wd, err := os.Getwd()
|
|
require.Nil(t, err)
|
|
|
|
dir, err = ioutil.TempDir(wd, "agh-test")
|
|
require.Nil(t, err)
|
|
require.NotEmpty(t, dir)
|
|
|
|
t.Cleanup(func() {
|
|
start := time.Now()
|
|
for {
|
|
err = os.RemoveAll(dir)
|
|
if err == nil {
|
|
break
|
|
}
|
|
|
|
if time.Since(start) >= maxRetryDur {
|
|
break
|
|
}
|
|
|
|
time.Sleep(retryDur)
|
|
}
|
|
|
|
assert.Nil(t, err, "after %s", time.Since(start))
|
|
})
|
|
|
|
return dir
|
|
}
|