-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathdb_store_test.go
104 lines (87 loc) · 1.44 KB
/
db_store_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
package main
import (
"database/sql"
"testing"
)
var testDb *sql.DB
func TestQueryDb(t *testing.T) {
config := appConfig{
db: testDb,
}
err := updateDb(
config,
pkgRow{
OwnerId: 2,
Name: "pkg",
Version: "0.3",
ObjectStoreId: "pkg-0.3-pkg-0.3.tar.gz",
},
)
if err != nil {
t.Fatal(err)
}
results, err := queryDb(
config,
pkgQueryParams{
ownerId: 2,
version: "0.3",
},
)
if err != nil {
t.Fatal(err)
}
if len(results) != 1 {
t.Fatalf(
"Expected: 1 row, Got: %d", len(results),
)
}
pkg := results[0]
t.Logf("%#v", pkg)
if pkg.RepoURL.Valid {
t.Fatal("Empty Repo URL expected")
}
}
func TestQueryDbWithRepo(t *testing.T) {
config := appConfig{
db: testDb,
}
repoUrl := "https://github.com/practicalgo/code"
err := updateDb(
config,
pkgRow{
OwnerId: 2,
Name: "pkg",
Version: "0.4",
ObjectStoreId: "pkg-0.4-pkg-0.4.tar.gz",
RepoURL: sql.NullString{
String: repoUrl,
Valid: true,
},
},
)
if err != nil {
t.Fatal(err)
}
results, err := queryDb(
config,
pkgQueryParams{
ownerId: 2,
version: "0.4",
},
)
if err != nil {
t.Fatal(err)
}
if len(results) != 1 {
t.Fatalf(
"Expected: 1 row, Got: %d", len(results),
)
}
pkg := results[0]
if !pkg.RepoURL.Valid {
t.Fatal("Repo URL expected")
}
if pkg.RepoURL.String != repoUrl {
t.Fatalf("Expected: %v, Got: %v", repoUrl, pkg.RepoURL)
}
}