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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
package skate
import (
"reflect"
"testing"
"github.com/kr/pretty"
)
func TestLineColumn(t *testing.T) {
var cases = []struct {
line string
sep string
column int
result string
}{
{"", "", 2, ""},
{"1 2 3", " ", 1, "1"},
{"1 2 3", " ", 2, "2"},
{"1 2 3", " ", 3, "3"},
{"1 2 3", " ", 4, ""},
{"1 2 3", "\t", 1, "1 2 3"},
}
for _, c := range cases {
result := CutSep(c.line, c.sep, c.column)
if result != c.result {
t.Fatalf("got %v, want %v", result, c.result)
}
}
}
func TestUniqueMatches(t *testing.T) {
var cases = []struct {
about string
docs []string
result []*BiblioRef
err error
}{
{
about: "missing fields are ignored",
docs: []string{`{}`},
result: []*BiblioRef{&BiblioRef{}},
err: nil,
},
{
about: "a single doc is passed on",
docs: []string{`{
"source_release_ident": "s1",
"target_release_ident": "t1"}`},
result: []*BiblioRef{&BiblioRef{
SourceReleaseIdent: "s1",
TargetReleaseIdent: "t1",
}},
err: nil,
},
{
about: "we want to keep the exact match, if available",
docs: []string{`
{"source_release_ident": "s1",
"target_release_ident": "t1",
"match_status": "fuzzy"}`,
`{"source_release_ident": "s1",
"target_release_ident": "t1",
"match_status": "exact"}`,
},
result: []*BiblioRef{&BiblioRef{
SourceReleaseIdent: "s1",
TargetReleaseIdent: "t1",
MatchStatus: "exact",
}},
err: nil,
},
{
about: "if both are exact, we just take (any) one",
docs: []string{`
{"source_release_ident": "s1",
"target_release_ident": "t1",
"match_status": "exact",
"match_reason": "a"}`,
`{"source_release_ident": "s1",
"target_release_ident": "t1",
"match_status": "exact",
"match_reason": "b"}`,
},
result: []*BiblioRef{&BiblioRef{
SourceReleaseIdent: "s1",
TargetReleaseIdent: "t1",
MatchStatus: "exact",
MatchReason: "b",
}},
err: nil,
},
}
for _, c := range cases {
result, err := uniqueMatches(c.docs)
if err != c.err {
t.Fatalf("got %v, want %v (%s)", err, c.err, c.about)
}
if !reflect.DeepEqual(result, c.result) {
t.Fatalf("got %#v, want %#v (%s)",
pretty.Sprint(result),
pretty.Sprint(c.result), c.about)
}
}
}
func TestMatchedRefsExtend(t *testing.T) {
var cases = []struct {
matched []*BiblioRef
refs []*Ref
result []*BiblioRef
}{
{
matched: []*BiblioRef{},
refs: []*Ref{},
result: []*BiblioRef{},
},
{
matched: []*BiblioRef{
&BiblioRef{
RefIndex: 2,
RefKey: "K2",
},
},
refs: []*Ref{},
result: []*BiblioRef{
&BiblioRef{
RefIndex: 2,
RefKey: "K2",
},
},
},
{
matched: []*BiblioRef{
&BiblioRef{
SourceReleaseIdent: "pud5shsflfgrth77lmlernavjm",
RefIndex: 2,
RefKey: "K2",
},
},
refs: []*Ref{
&Ref{
ReleaseIdent: "0000",
Biblio: Biblio{
Title: "Title",
},
Index: 3,
Key: "K3",
},
},
result: []*BiblioRef{
&BiblioRef{
SourceReleaseIdent: "pud5shsflfgrth77lmlernavjm",
RefIndex: 2,
RefKey: "K2",
},
&BiblioRef{
Key: "0000_3",
SourceReleaseIdent: "0000",
RefIndex: 3,
RefKey: "K3",
MatchStatus: StatusUnmatched.Short(),
MatchReason: ReasonUnknown.Short(),
SourceYear: "0",
},
},
},
{
matched: []*BiblioRef{
&BiblioRef{
SourceReleaseIdent: "pud5shsflfgrth77lmlernavjm",
RefIndex: 2,
RefKey: "K2",
},
},
refs: []*Ref{
&Ref{
ReleaseIdent: "0000",
Biblio: Biblio{
Title: "Title",
},
Index: 2,
Key: "K2",
},
},
result: []*BiblioRef{
&BiblioRef{
SourceReleaseIdent: "pud5shsflfgrth77lmlernavjm",
RefIndex: 2,
RefKey: "K2",
},
},
},
}
for _, c := range cases {
result := matchedRefsExtend(c.matched, c.refs)
if !reflect.DeepEqual(result, c.result) {
t.Fatalf("got %v, want %v (%v)", result, c.result, pretty.Diff(result, c.result))
}
}
}
|