-
Notifications
You must be signed in to change notification settings - Fork 2
/
support_test.go
158 lines (126 loc) · 2.61 KB
/
support_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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package main
import (
"io/ioutil"
"os"
"path"
"testing"
"github.com/libgit2/git2go"
)
type repoTestFunc func(conf *git.Config)
func withinStubRepo(t *testing.T, repoPath string, repoTest repoTestFunc) {
cwd, err := os.Getwd()
if err != nil {
t.Fatal(err)
}
conf, err := initializeRepo(repoPath)
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(repoPath)
err = os.Chdir(repoPath)
if err != nil {
t.Fatal(err)
}
repoTest(conf)
err = os.Chdir(cwd)
if err != nil {
t.Fatal(err)
}
}
func mockHomeEnv(dir string) {
cwd, err := os.Getwd()
if err != nil {
os.Stderr.WriteString("Could not get current directory\n")
os.Exit(2)
}
dir = path.Join(cwd, dir)
_, err = os.Open(dir)
if err != nil {
err = os.Mkdir(dir, os.ModePerm)
if err != nil {
os.Stderr.WriteString("Could not create directory\n")
os.Exit(2)
}
}
os.Setenv("HOME", dir)
}
func initializeRepo(p string) (*git.Config, error) {
repo, err := git.InitRepository(p, true)
if err != nil {
return nil, err
}
conf, err := repo.Config()
if err != nil {
return nil, err
}
return conf, nil
}
func closeFile(f *os.File) {
name := f.Name()
f.Close()
os.Remove(name)
}
func initTestGitConfig(path string, t *testing.T) *git.Config {
gitconfig, err := git.NewConfig()
if err != nil {
t.Error(err)
}
err = gitconfig.AddFile(path, git.ConfigLevelHighest, false)
if err != nil {
t.Error(err)
}
return gitconfig
}
func createPearrc(t *testing.T, contents []byte) *os.File {
p := path.Join(os.Getenv("HOME"), ".pearrc")
f, err := os.Create(p)
if err != nil {
os.Stdout = os.Stderr
t.Fatalf("Could not create .pearrc %s", err)
}
_, err = f.Write(contents)
if err != nil {
os.Stdout = os.Stderr
t.Fatal("Could not write to .pearrc %s", err)
}
return f
}
func mockStdin(t *testing.T, contents string) *os.File {
tmp, err := ioutil.TempFile("", "")
if err != nil {
t.Fatal(err)
}
_, err = tmp.WriteString(contents + "\n")
if err != nil {
t.Fatal(err)
}
_, err = tmp.Seek(0, os.SEEK_SET)
if err != nil {
t.Fatal(err)
}
os.Stdin = tmp
return tmp
}
func mockStdout(t *testing.T) (*os.File, *os.File) {
oldstdout := os.Stdout
tmp, err := ioutil.TempFile("", "")
if err != nil {
t.Error("Could not create temp file")
}
os.Stdout = tmp
return tmp, oldstdout
}
func cleanupStdout(t *testing.T, tmp *os.File, stdout *os.File) {
err := tmp.Close()
if err != nil {
t.Error(err)
}
os.Stdout = stdout
}
func restorePearrc(t *testing.T, contents []byte) {
p := path.Join(os.Getenv("HOME"), ".pearrc")
err := ioutil.WriteFile(p, contents, os.ModeExclusive)
if err != nil {
t.Error(err)
}
}