forked from MediaMath/grim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common_test.go
67 lines (51 loc) · 1.35 KB
/
common_test.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package grim
import (
"io/ioutil"
"os"
"testing"
)
const badPath = "/\\/\\/\\"
const badContents = "}{"
func getEnvOrSkip(t *testing.T, name string) string {
value := os.Getenv(name)
if value == "" {
t.Skipf("this test requires the environment variable %q to be set", name)
}
return value
}
func withTempFile(t *testing.T, contents string, f func(string)) {
withTempFilePerms(t, contents, 0660, f)
}
func withTempScript(t *testing.T, contents string, f func(string)) {
withTempFilePerms(t, contents, 0770, f)
}
func withTempFilePerms(t *testing.T, contents string, mode os.FileMode, f func(string)) {
file, err := ioutil.TempFile("", "grim_testing_")
if err != nil {
t.Fatalf("failed to create temp file: %v", err)
}
file.Close()
fn := file.Name()
defer func() {
if err := os.Remove(fn); err != nil {
t.Errorf("failed to remove temp file at %v: %v", fn, err)
}
}()
if err := ioutil.WriteFile(fn, []byte(contents), mode); err != nil {
t.Fatalf("failed to write temp file contents at %q: %v", fn, err)
}
os.Chmod(fn, mode)
f(fn)
}
func withTempDir(t *testing.T, f func(string)) {
dir, err := ioutil.TempDir("", "grim_testing_")
if err != nil {
t.Fatalf("failed to create temp dir: %v", err)
}
defer func() {
if err := os.RemoveAll(dir); err != nil {
t.Errorf("failed to remove temp dir at %v: %v", dir, err)
}
}()
f(dir)
}