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
|
package index
import (
"testing"
. "gopkg.in/check.v1"
"gopkg.in/src-d/go-git.v4/plumbing"
"gopkg.in/src-d/go-git.v4/plumbing/format/index"
"gopkg.in/src-d/go-git.v4/utils/merkletrie"
)
func Test(t *testing.T) { TestingT(t) }
type NoderSuite struct{}
var _ = Suite(&NoderSuite{})
func (s *NoderSuite) TestDiff(c *C) {
indexA := &index.Index{
Entries: []index.Entry{
{Name: "foo", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
{Name: "bar/foo", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
{Name: "bar/qux", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
{Name: "bar/baz/foo", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
},
}
indexB := &index.Index{
Entries: []index.Entry{
{Name: "foo", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
{Name: "bar/foo", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
{Name: "bar/qux", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
{Name: "bar/baz/foo", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
},
}
nodeA, err := NewRootNode(indexA)
c.Assert(err, IsNil)
nodeB, err := NewRootNode(indexB)
c.Assert(err, IsNil)
ch, err := merkletrie.DiffTree(nodeA, nodeB, IsEquals)
c.Assert(err, IsNil)
c.Assert(ch, HasLen, 0)
}
func (s *NoderSuite) TestDiffChange(c *C) {
indexA := &index.Index{
Entries: []index.Entry{
{Name: "bar/baz/bar", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
},
}
indexB := &index.Index{
Entries: []index.Entry{
{Name: "bar/baz/foo", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
},
}
nodeA, err := NewRootNode(indexA)
c.Assert(err, IsNil)
nodeB, err := NewRootNode(indexB)
c.Assert(err, IsNil)
ch, err := merkletrie.DiffTree(nodeA, nodeB, IsEquals)
c.Assert(err, IsNil)
c.Assert(ch, HasLen, 2)
}
func (s *NoderSuite) TestDiffDir(c *C) {
indexA := &index.Index{
Entries: []index.Entry{
{Name: "foo", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
},
}
indexB := &index.Index{
Entries: []index.Entry{
{Name: "foo/bar", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
},
}
nodeA, err := NewRootNode(indexA)
c.Assert(err, IsNil)
nodeB, err := NewRootNode(indexB)
c.Assert(err, IsNil)
ch, err := merkletrie.DiffTree(nodeA, nodeB, IsEquals)
c.Assert(err, IsNil)
c.Assert(ch, HasLen, 2)
}
func (s *NoderSuite) TestDiffSameRoot(c *C) {
indexA := &index.Index{
Entries: []index.Entry{
{Name: "foo.go", Hash: plumbing.NewHash("aab686eafeb1f44702738c8b0f24f2567c36da6d")},
{Name: "foo/bar", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
},
}
indexB := &index.Index{
Entries: []index.Entry{
{Name: "foo/bar", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
{Name: "foo.go", Hash: plumbing.NewHash("8ab686eafeb1f44702738c8b0f24f2567c36da6d")},
},
}
nodeA, err := NewRootNode(indexA)
c.Assert(err, IsNil)
nodeB, err := NewRootNode(indexB)
c.Assert(err, IsNil)
ch, err := merkletrie.DiffTree(nodeA, nodeB, IsEquals)
c.Assert(err, IsNil)
c.Assert(ch, HasLen, 1)
}
|