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
|
package config
import (
"testing"
. "gopkg.in/check.v1"
"srcd.works/go-git.v4/plumbing"
)
type RefSpecSuite struct{}
var _ = Suite(&RefSpecSuite{})
func Test(t *testing.T) { TestingT(t) }
func (s *RefSpecSuite) TestRefSpecIsValid(c *C) {
spec := RefSpec("+refs/heads/*:refs/remotes/origin/*")
c.Assert(spec.Validate(), Equals, nil)
spec = RefSpec("refs/heads/*:refs/remotes/origin/")
c.Assert(spec.Validate(), Equals, ErrRefSpecMalformedWildcard)
spec = RefSpec("refs/heads/master:refs/remotes/origin/master")
c.Assert(spec.Validate(), Equals, nil)
spec = RefSpec(":refs/heads/master")
c.Assert(spec.Validate(), Equals, nil)
spec = RefSpec(":refs/heads/*")
c.Assert(spec.Validate(), Equals, ErrRefSpecMalformedWildcard)
spec = RefSpec(":*")
c.Assert(spec.Validate(), Equals, ErrRefSpecMalformedWildcard)
spec = RefSpec("refs/heads/*")
c.Assert(spec.Validate(), Equals, ErrRefSpecMalformedSeparator)
spec = RefSpec("refs/heads:")
c.Assert(spec.Validate(), Equals, ErrRefSpecMalformedSeparator)
}
func (s *RefSpecSuite) TestRefSpecIsForceUpdate(c *C) {
spec := RefSpec("+refs/heads/*:refs/remotes/origin/*")
c.Assert(spec.IsForceUpdate(), Equals, true)
spec = RefSpec("refs/heads/*:refs/remotes/origin/*")
c.Assert(spec.IsForceUpdate(), Equals, false)
}
func (s *RefSpecSuite) TestRefSpecIsDelete(c *C) {
spec := RefSpec(":refs/heads/master")
c.Assert(spec.IsDelete(), Equals, true)
spec = RefSpec("+refs/heads/*:refs/remotes/origin/*")
c.Assert(spec.IsDelete(), Equals, false)
spec = RefSpec("refs/heads/*:refs/remotes/origin/*")
c.Assert(spec.IsDelete(), Equals, false)
}
func (s *RefSpecSuite) TestRefSpecSrc(c *C) {
spec := RefSpec("refs/heads/*:refs/remotes/origin/*")
c.Assert(spec.Src(), Equals, "refs/heads/*")
spec = RefSpec(":refs/heads/master")
c.Assert(spec.Src(), Equals, "")
}
func (s *RefSpecSuite) TestRefSpecMatch(c *C) {
spec := RefSpec("refs/heads/master:refs/remotes/origin/master")
c.Assert(spec.Match(plumbing.ReferenceName("refs/heads/foo")), Equals, false)
c.Assert(spec.Match(plumbing.ReferenceName("refs/heads/master")), Equals, true)
spec = RefSpec(":refs/heads/master")
c.Assert(spec.Match(plumbing.ReferenceName("")), Equals, true)
c.Assert(spec.Match(plumbing.ReferenceName("refs/heads/master")), Equals, false)
}
func (s *RefSpecSuite) TestRefSpecMatchGlob(c *C) {
spec := RefSpec("refs/heads/*:refs/remotes/origin/*")
c.Assert(spec.Match(plumbing.ReferenceName("refs/tag/foo")), Equals, false)
c.Assert(spec.Match(plumbing.ReferenceName("refs/heads/foo")), Equals, true)
}
func (s *RefSpecSuite) TestRefSpecDst(c *C) {
spec := RefSpec("refs/heads/master:refs/remotes/origin/master")
c.Assert(
spec.Dst(plumbing.ReferenceName("refs/heads/master")).String(), Equals,
"refs/remotes/origin/master",
)
}
func (s *RefSpecSuite) TestRefSpecDstBlob(c *C) {
spec := RefSpec("refs/heads/*:refs/remotes/origin/*")
c.Assert(
spec.Dst(plumbing.ReferenceName("refs/heads/foo")).String(), Equals,
"refs/remotes/origin/foo",
)
}
func (s *RefSpecSuite) TestMatchAny(c *C) {
specs := []RefSpec{
"refs/heads/bar:refs/remotes/origin/foo",
"refs/heads/foo:refs/remotes/origin/bar",
}
c.Assert(MatchAny(specs, plumbing.ReferenceName("refs/heads/foo")), Equals, true)
c.Assert(MatchAny(specs, plumbing.ReferenceName("refs/heads/bar")), Equals, true)
c.Assert(MatchAny(specs, plumbing.ReferenceName("refs/heads/master")), Equals, false)
}
|