-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbhlinker_test.go
110 lines (100 loc) · 2.49 KB
/
bhlinker_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
package bhlinker
import (
"io/ioutil"
"log"
"path/filepath"
"sync"
"testing"
entity "github.com/gdower/bhlinker/ent"
"github.com/gnames/gnfmt"
)
func loadInputMock() (map[string]entity.Input, error) {
enc := gnfmt.GNjson{}
var res map[string]entity.Input
path := filepath.Join("testdata", "input-mock.json")
data, err := ioutil.ReadFile(path)
if err != nil {
return res, err
}
err = enc.Decode(data, &res)
if err != nil {
return res, err
}
return res, nil
}
func loadOutputMock() (map[string]entity.Output, error) {
enc := gnfmt.GNjson{}
var res map[string]entity.Output
path := filepath.Join("testdata", "output-mock.json")
data, err := ioutil.ReadFile(path)
if err != nil {
return res, err
}
err = enc.Decode(data, &res)
if err != nil {
return res, err
}
return res, nil
}
func data() (BHLinker, map[string]entity.Input, map[string]entity.Output) {
inputs, err := loadInputMock()
if err != nil {
log.Fatalf("cannot load mock inputs: %s", err)
}
outputs, err := loadOutputMock()
if err != nil {
log.Fatalf("cannot load mock outputs: %s", err)
}
mr := MockReferencer{}
linker := NewBHLinker(mr, 4)
return linker, inputs, outputs
}
func TestGetLink(t *testing.T) {
l, inputs, outputs := data()
for k, v := range inputs {
out, err := l.GetLink(v)
if err != nil {
t.Errorf("cannot get link for '%s': %s", k, err)
}
if out.Score.Overall != outputs[k].Score.Overall {
t.Errorf("scores do not match for %s: %0.2f vs %0.2f",
k, out.Score.Overall, outputs[k].Score.Overall)
}
if out.BHLref.URL != outputs[k].BHLref.URL {
t.Errorf("BHL links do not match for %s: %s vs %s",
k, out.BHLref.URL, outputs[k].BHLref.URL)
}
}
}
func TestGetLinks(t *testing.T) {
l, inputs, outputs := data()
chIn := make(chan entity.Input)
chOut := make(chan entity.Output)
var wg sync.WaitGroup
wg.Add(1)
go func() {
for _, v := range inputs {
chIn <- v
}
close(chIn)
}()
go func() {
defer wg.Done()
for output := range chOut {
name := output.InputName.Canonical
if output.Error != nil {
t.Errorf("cannot get link for '%s': %s", name, output.Error)
}
if output.Score.Overall != outputs[name].Score.Overall {
t.Errorf("scores do not match for %s: %0.2f vs %0.2f",
name, output.Score.Overall, outputs[name].Score.Overall)
}
if output.BHLref.URL != outputs[name].BHLref.URL {
t.Errorf("BHL links do not match for %s: %s vs %s",
name, output.BHLref.URL, outputs[name].BHLref.URL)
}
}
}()
l.GetLinks(chIn, chOut)
wg.Wait()
}