-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathdiffer_test.go
88 lines (80 loc) · 1.87 KB
/
differ_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
/*
Copyright 2016 The gta AUTHORS. All rights reserved.
Use of this source code is governed by the Apache 2 license that can be found
in the LICENSE file.
*/
package gta
import (
"bytes"
"testing"
"github.com/google/go-cmp/cmp"
)
// check to make sure Git implements the Differ interface.
var _ Differ = &differ{}
func Test_diffFileDirectories(t *testing.T) {
var tests = []struct {
desc string
root string
buf []byte
want map[string]struct{}
}{
{
desc: "single changed file",
root: "/",
buf: []byte("foo/bar.go\n"),
want: map[string]struct{}{
"/foo/bar.go": struct{}{},
},
},
{
desc: "multiple changed files in same directory (duplicate)",
root: "/foo",
buf: []byte(`bar/bar.go
bar/baz.go`),
want: map[string]struct{}{
"/foo/bar/bar.go": struct{}{},
"/foo/bar/baz.go": struct{}{},
},
},
{
desc: "multiple changed files in different directories",
root: "/foo/bar",
buf: []byte(`baz/bar.go
baz/qux/baz.go`),
want: map[string]struct{}{
"/foo/bar/baz/bar.go": struct{}{},
"/foo/bar/baz/qux/baz.go": struct{}{},
},
},
{
desc: "multiple changed files in different directories, with duplicate directories",
root: "/",
buf: []byte(`foo/bar.go
foo/baz.go
bar/foo.go
bar/baz/qux.go
bar/baz/corge.go
bar/baz/qux/corge.go
`),
want: map[string]struct{}{
"/foo/bar.go": struct{}{},
"/foo/baz.go": struct{}{},
"/bar/foo.go": struct{}{},
"/bar/baz/qux.go": struct{}{},
"/bar/baz/corge.go": struct{}{},
"/bar/baz/qux/corge.go": struct{}{},
},
},
}
for _, tt := range tests {
t.Run(tt.desc, func(t *testing.T) {
got, err := diffPaths(tt.root, bytes.NewReader(tt.buf))
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if diff := cmp.Diff(tt.want, got); diff != "" {
t.Errorf("(-want, +got)\n%s", diff)
}
})
}
}