-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreferencer_test.go
67 lines (60 loc) · 1.39 KB
/
referencer_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
package bhlinker
import (
"fmt"
"io/ioutil"
"log"
"path/filepath"
"testing"
"github.com/gnames/bhlnames/config"
bhln "github.com/gnames/bhlnames/domain/entity"
"github.com/gnames/gnfmt"
)
type MockReferencer struct{}
func (mr MockReferencer) Refs(name string, ops ...config.Option) (*bhln.NameRefs, error) {
mocks := loadOutputMocks()
if res, ok := mocks[name]; ok {
return res, nil
}
return nil, fmt.Errorf("Unknown name '%s'", name)
}
func loadNamesMock() []string {
mocks := loadOutputMocks()
res := make([]string, len(mocks))
count := 0
for k := range mocks {
res[count] = k
count++
}
return res
}
func loadOutputMocks() map[string]*bhln.NameRefs {
enc := gnfmt.GNjson{}
var res map[string]*bhln.NameRefs
path := filepath.Join("testdata", "referencer-mock.json")
data, err := ioutil.ReadFile(path)
if err != nil {
log.Fatal(err)
}
err = enc.Decode(data, &res)
if err != nil {
log.Fatal(err)
}
return res
}
func TestRefs(t *testing.T) {
mr := MockReferencer{}
data, _ := mr.Refs("something")
if data != nil {
t.Error("it should not find name 'somthing'")
}
data, err := mr.Refs("Licaria simulans")
if err != nil {
t.Error("Error for 'Licaria simulans' should be nil")
}
if data.NameString != "Licaria simulans" {
t.Errorf("Wrong name '%s'", data.NameString)
}
if data.ReferenceNumber != 5 {
t.Errorf("Wrong number of refs '%d'", len(data.References))
}
}