-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindexer_test.go
99 lines (86 loc) · 2.82 KB
/
indexer_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
package packman_test
import (
"testing"
"github.com/jboursiquot/packman"
)
func TestIndexerIndexesPackageWithoutDeps(t *testing.T) {
idxr := packman.NewIndexer(nil)
p := packman.Package{Name: "somepackage"}
err := idxr.Index(&p)
if err != nil {
t.Errorf("Expected successful indexing of package: %v", err)
}
}
func TestIndexerIndexesPackageWithKnownDeps(t *testing.T) {
d1 := packman.Package{Name: "Dep1"}
d2 := packman.Package{Name: "Dep2"}
initialDict := make(map[string]*packman.Package, 0)
initialDict[d1.Name] = &d1
initialDict[d2.Name] = &d2
idxr := packman.NewIndexer(initialDict)
p := packman.Package{Name: "somepackage", Deps: []*packman.Package{&d1, &d2}}
err := idxr.Index(&p)
if err != nil {
t.Error(err)
}
}
func TestIndexerFailsToIndexPackageWithUnknownDeps(t *testing.T) {
idxr := packman.NewIndexer(nil)
d := packman.Package{Name: "dep"}
p := packman.Package{Name: "somepackage", Deps: []*packman.Package{&d}}
err := idxr.Index(&p)
if _, ok := err.(packman.UnknownDependentError); !ok {
t.Error("Expected packman.UnknownDependentError")
}
}
func TestIndexerRemovesPackageWithoutDeps(t *testing.T) {
p := packman.Package{Name: "somepackage"}
initialDict := make(map[string]*packman.Package, 0)
initialDict[p.Name] = &p
idxr := packman.NewIndexer(initialDict)
err := idxr.Remove(&p)
if err != nil {
t.Errorf("Expected successful removal of package: %v", err)
}
qp, err := idxr.Query(p.Name)
if qp != nil {
t.Errorf("Expected querried package to not be present: %#v", err)
}
if _, ok := err.(packman.PackageNotFoundError); !ok {
t.Error("Expected packman.PackageNotFoundError")
}
}
func TestIndexerFailsToRemovePackageWithDeps(t *testing.T) {
d1 := packman.Package{Name: "Dep1"}
d2 := packman.Package{Name: "Dep2"}
p := packman.Package{Name: "somepackage", Deps: []*packman.Package{&d1, &d2}}
initialDict := make(map[string]*packman.Package, 0)
initialDict[d1.Name] = &d1
initialDict[d1.Name] = &d1
initialDict[d2.Name] = &p
idxr := packman.NewIndexer(initialDict)
err := idxr.Remove(&d1)
if _, ok := err.(packman.PackageHasDependentsError); !ok {
t.Error("Expected packman.PackageHasDependentsError")
}
}
func TestIndexerFindsIndexedPackage(t *testing.T) {
p := packman.Package{Name: "somepackage"}
initialDict := make(map[string]*packman.Package, 1)
initialDict[p.Name] = &p
idxr := packman.NewIndexer(initialDict)
qp, err := idxr.Query(p.Name)
if err != nil {
t.Errorf("Expected successful querying for package: %v", err)
}
if p.Name != qp.Name {
t.Errorf("Expected querried package to be the same as stored package: %#v != %#v", p, qp)
}
}
func TestIndexerFailsToFindUnindexedPackage(t *testing.T) {
idxr := packman.NewIndexer(nil)
_, err := idxr.Query("somepackage")
if _, ok := err.(packman.PackageNotFoundError); !ok {
t.Error("Expected packman.PackageNotFoundError")
}
}