forked from roots/trellis-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testing.go
51 lines (42 loc) · 856 Bytes
/
testing.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package trellis
import (
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"testing"
)
func LoadFixtureProject(t *testing.T) func() {
old, err := os.Getwd()
if err != nil {
t.Fatalf("err: %s", err)
}
tempDir, err := ioutil.TempDir("", "trellis")
if err != nil {
t.Fatalf("err: %s", err)
}
os.Chdir("../trellis")
cmd := exec.Command("cp", "-a", "testdata/trellis", tempDir)
err = cmd.Run()
if err != nil {
t.Fatalf("err: %s", err)
}
os.Chdir(filepath.Join(tempDir, "trellis"))
return func() {
if err := os.Chdir(old); err != nil {
t.Fatalf("err: %s", err)
}
os.RemoveAll(tempDir)
}
}
func TestChdir(t *testing.T, dir string) func() {
t.Helper()
old, err := os.Getwd()
if err != nil {
t.Fatalf("err: %s", err)
}
if err := os.Chdir(dir); err != nil {
t.Fatalf("err: %s", err)
}
return func() { os.Chdir(old) }
}