-
Notifications
You must be signed in to change notification settings - Fork 12
/
tdir.go
68 lines (58 loc) · 1016 Bytes
/
tdir.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
68
package main
import (
"io/ioutil"
"os"
"os/exec"
)
type TempDir struct {
OrigDir string
DirPath string
Files map[string]*os.File
}
func NewTempDir() *TempDir {
dirname, err := ioutil.TempDir(".", "testdir_")
if err != nil {
panic(err)
}
origdir, err := os.Getwd()
if err != nil {
panic(err)
}
// add files needed for capnpc -ogo compilation
exec.Command("/bin/cp", "go.capnp", dirname).Run()
return &TempDir{
OrigDir: origdir,
DirPath: dirname,
Files: make(map[string]*os.File),
}
}
func (d *TempDir) MoveTo() {
err := os.Chdir(d.DirPath)
if err != nil {
panic(err)
}
}
func (d *TempDir) Close() {
for _, f := range d.Files {
f.Close()
}
}
func (d *TempDir) Cleanup() {
d.Close()
err := os.RemoveAll(d.DirPath)
if err != nil {
panic(err)
}
err = os.Chdir(d.OrigDir)
if err != nil {
panic(err)
}
}
func (d *TempDir) TempFile() *os.File {
f, err := ioutil.TempFile(d.DirPath, "testfile.")
if err != nil {
panic(err)
}
d.Files[f.Name()] = f
return f
}