mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-23 22:27:38 -05:00
Fix failing test (windows) - simulate an error by executing stat on a filename with zero-byte in it. Fix cleanup of created files after the tests.
This commit is contained in:
parent
6717edcb87
commit
f122b3bbdf
1 changed files with 18 additions and 4 deletions
|
@ -7,6 +7,7 @@ import (
|
|||
"path/filepath"
|
||||
"strings"
|
||||
"testing"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
func TestRoot(t *testing.T) {
|
||||
|
@ -26,10 +27,13 @@ func TestRoot(t *testing.T) {
|
|||
if err != nil {
|
||||
t.Fatalf("BeforeTest: Failed to create temp file for testing! Error was: %v", err)
|
||||
}
|
||||
defer os.Remove(existingFile.Name())
|
||||
|
||||
unaccessiblePath := filepath.Join(existingFile.Name(), "some_name")
|
||||
defer func () {
|
||||
existingFile.Close()
|
||||
os.Remove(existingFile.Name())
|
||||
}()
|
||||
|
||||
unaccessiblePath := getInaccessibleOsDependentPath(existingFile.Name())
|
||||
|
||||
tests := []struct {
|
||||
input string
|
||||
shouldErr bool
|
||||
|
@ -60,8 +64,9 @@ func TestRoot(t *testing.T) {
|
|||
for i, test := range tests {
|
||||
c := NewTestController(test.input)
|
||||
mid, err := Root(c)
|
||||
|
||||
if test.shouldErr && err == nil {
|
||||
t.Errorf("Test %d: Expected error but found nil for input %s", i, test.input)
|
||||
t.Errorf("Test %d: Expected error but found %s for input %s", i, err, test.input)
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
|
@ -97,3 +102,12 @@ func getTempDirPath() (string, error) {
|
|||
|
||||
return tempDir, nil
|
||||
}
|
||||
|
||||
func getInaccessibleOsDependentPath(file string) string{
|
||||
if runtime.GOOS == "windows"{
|
||||
return filepath.Join("C:", "file\x00name")// 0 byte breaks the lstat syscall
|
||||
} else {
|
||||
// TODO - check if the zero-byte filename works for linux only. If it does - use it instead
|
||||
return filepath.Join(file, "some_name")
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue