-
Notifications
You must be signed in to change notification settings - Fork 0
/
darcs_test.go
162 lines (132 loc) · 3.69 KB
/
darcs_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
159
160
161
162
package vcsinfo_test
import (
"path"
"time"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
. "github.com/onsi/gomega/gstruct"
. "github.com/jayclassless/vcsinfo"
)
var _ = Describe("Darcs", func() {
probe := DarcsProbe{}
Describe("Name", func() {
It("works", func() {
Expect(probe.Name()).To(Equal("darcs"))
})
})
Describe("DefaultFormat", func() {
It("works", func() {
Expect(probe.DefaultFormat()).To(Not(Equal("")))
})
})
Describe("IsAvailable", func() {
It("works", func() {
Expect(probe.IsAvailable()).To(BeTrue())
})
})
Describe("IsRepositoryRoot", func() {
var dir string
BeforeEach(func() {
dir = tmpdir()
})
AfterEach(func() {
rmdir(dir)
dir = ""
})
It("returns false in dir with no repo", func() {
Expect(probe.IsRepositoryRoot(dir)).To(BeFalse())
})
It("returns true in dir with new repo", func() {
run(dir, "darcs", "init")
Expect(probe.IsRepositoryRoot(dir)).To(BeTrue())
})
})
Describe("GatherInfo", func() {
var dir string
BeforeEach(func() {
dir = tmpdir()
run(dir, "darcs", "init")
})
AfterEach(func() {
rmdir(dir)
dir = ""
})
It("returns the basics", func() {
info, err := probe.GatherInfo(dir)
Expect(err).To(BeEmpty())
Expect(info).To(MatchFields(IgnoreExtras, Fields{
"VcsName": Equal("darcs"),
"Path": Equal(dir),
"RepositoryRoot": Equal(dir),
"Branch": Equal(path.Base(dir)),
}))
})
It("returns the basics when deep in repo", func() {
deep := mkdir(dir, "/some/deep/path")
info, err := probe.GatherInfo(deep)
Expect(err).To(BeEmpty())
Expect(info).To(MatchFields(IgnoreExtras, Fields{
"VcsName": Equal("darcs"),
"Path": Equal(deep),
"RepositoryRoot": Equal(dir),
"Branch": Equal(path.Base(dir)),
}))
})
It("sees nothing when empty", func() {
info, err := probe.GatherInfo(dir)
Expect(err).To(BeEmpty())
Expect(info).To(MatchFields(IgnoreExtras, Fields{
"HasNew": BeFalse(),
"HasModified": BeFalse(),
"HasStaged": BeFalse(),
"Hash": Equal(""),
"ShortHash": Equal(""),
"Revision": Equal(""),
}))
})
It("sees new files", func() {
writeFile(dir, "foo", "bar")
info, err := probe.GatherInfo(dir)
Expect(err).To(BeEmpty())
Expect(info).To(MatchFields(IgnoreExtras, Fields{
"HasNew": BeTrue(),
"HasModified": BeFalse(),
"HasStaged": BeFalse(),
}))
})
It("sees modified files", func() {
writeFile(dir, "foo", "bar")
run(dir, "darcs", "add", "foo")
run(dir, "darcs", "record", "--author", "[email protected]", "--no-interactive", "-m", "blah")
// Darcs "file has been updated" detection is poor. If we update the file too quickly, it doesn't see it as a change
time.Sleep(1001 * time.Millisecond)
writeFile(dir, "foo", "baz")
info, err := probe.GatherInfo(dir)
Expect(err).To(BeEmpty())
Expect(info).To(MatchFields(IgnoreExtras, Fields{
"HasNew": BeFalse(),
"HasModified": BeTrue(),
"HasStaged": BeFalse(),
"Hash": Not(Equal("")),
}))
})
It("sees deleted files", func() {
writeFile(dir, "foo", "bar")
run(dir, "darcs", "add", "foo")
run(dir, "darcs", "record", "--author", "[email protected]", "--no-interactive", "-m", "blah")
rm(dir, "foo")
info, err := probe.GatherInfo(dir)
Expect(err).To(BeEmpty())
Expect(info).To(MatchFields(IgnoreExtras, Fields{
"HasNew": BeFalse(),
"HasModified": BeTrue(),
"HasStaged": BeFalse(),
"Hash": Not(Equal("")),
}))
})
It("doesnt crash when in VCS special dir", func() {
_, err := probe.GatherInfo(dir + "/_darcs")
Expect(err).To(BeEmpty())
})
})
})