mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-01 08:42:55 +08:00
129 lines
2.4 KiB
Go
129 lines
2.4 KiB
Go
package testutil
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
func TestTempDir_DirIsValid(t *testing.T) {
|
|
dir := TempDir(t)
|
|
|
|
stat, err := os.Stat(dir)
|
|
if err != nil {
|
|
t.Errorf("TestDir returns %q which cannot be stated", dir)
|
|
}
|
|
if !stat.IsDir() {
|
|
t.Errorf("TestDir returns %q which is not a dir", dir)
|
|
}
|
|
}
|
|
|
|
func TestTempDir_DirHasSymlinksResolved(t *testing.T) {
|
|
dir := TempDir(t)
|
|
|
|
resolved, err := filepath.EvalSymlinks(dir)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if dir != resolved {
|
|
t.Errorf("TestDir returns %q, but it resolves to %q", dir, resolved)
|
|
}
|
|
}
|
|
|
|
func TestTempDir_CleanupRemovesDirRecursively(t *testing.T) {
|
|
c := &cleanuper{}
|
|
dir := TempDir(c)
|
|
|
|
err := os.WriteFile(filepath.Join(dir, "a"), []byte("test"), 0600)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
c.runCleanups()
|
|
if _, err := os.Stat(dir); err == nil {
|
|
t.Errorf("Dir %q still exists after cleanup", dir)
|
|
}
|
|
}
|
|
|
|
func TestChdir(t *testing.T) {
|
|
dir := TempDir(t)
|
|
original := getWd()
|
|
|
|
c := &cleanuper{}
|
|
Chdir(c, dir)
|
|
|
|
after := getWd()
|
|
if after != dir {
|
|
t.Errorf("pwd is now %q, want %q", after, dir)
|
|
}
|
|
|
|
c.runCleanups()
|
|
restored := getWd()
|
|
if restored != original {
|
|
t.Errorf("pwd restored to %q, want %q", restored, original)
|
|
}
|
|
}
|
|
|
|
func TestApplyDir_CreatesFiles(t *testing.T) {
|
|
InTempDir(t)
|
|
|
|
ApplyDir(Dir{
|
|
"a": "a content",
|
|
"b": "b content",
|
|
})
|
|
|
|
testFileContent(t, "a", "a content")
|
|
testFileContent(t, "b", "b content")
|
|
}
|
|
|
|
func TestApplyDir_CreatesDirectories(t *testing.T) {
|
|
InTempDir(t)
|
|
|
|
ApplyDir(Dir{
|
|
"d": Dir{
|
|
"d1": "d1 content",
|
|
"d2": "d2 content",
|
|
"dd": Dir{
|
|
"dd1": "dd1 content",
|
|
},
|
|
},
|
|
})
|
|
|
|
testFileContent(t, "d/d1", "d1 content")
|
|
testFileContent(t, "d/d2", "d2 content")
|
|
testFileContent(t, "d/dd/dd1", "dd1 content")
|
|
}
|
|
|
|
func TestApplyDir_AllowsExistingDirectories(t *testing.T) {
|
|
InTempDir(t)
|
|
|
|
ApplyDir(Dir{"d": Dir{}})
|
|
ApplyDir(Dir{"d": Dir{"a": "content"}})
|
|
|
|
testFileContent(t, "d/a", "content")
|
|
}
|
|
|
|
func getWd() string {
|
|
dir, err := os.Getwd()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
dir, err = filepath.EvalSymlinks(dir)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return dir
|
|
}
|
|
|
|
func testFileContent(t *testing.T, filename string, wantContent string) {
|
|
t.Helper()
|
|
content, err := os.ReadFile(filename)
|
|
if err != nil {
|
|
t.Errorf("Could not read %v: %v", filename, err)
|
|
return
|
|
}
|
|
if string(content) != wantContent {
|
|
t.Errorf("File %v is %q, want %q", filename, content, wantContent)
|
|
}
|
|
}
|