-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquery_test.go
83 lines (78 loc) · 1.4 KB
/
query_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
package main
import (
"reflect"
"testing"
)
func TestGetItem(t *testing.T) {
id := "99"
want := &Item{
Id: "99",
Title: "寻找峰值",
Question: struct {
QuestionId string
Title string
TitleSlug string
}{
"162",
"Find Peak Element",
"find-peak-element",
},
}
got := getItem(id)
if !reflect.DeepEqual(got, want) {
t.Errorf("with %s, got %+v, want %+v\n", id, want, got)
}
}
func TestGetQuestion(t *testing.T) {
titleSlug := "3sum"
want := &Question{
QuestionId: "15",
}
got := getQuestion(titleSlug)
if want.QuestionId != got.QuestionId {
t.Errorf("with %s, got %+v, want %+v\n", titleSlug, want, got)
}
}
func TestGetCard(t *testing.T) {
cardSlug := "top-interview-questions-medium"
want := &Card{
[]struct{
Id string
}{
{"29"},
{"31"},
{"32"},
{"49"},
{"50"},
{"51"},
{"52"},
{"53"},
{"54"},
},
}
got := getCard(cardSlug)
if !reflect.DeepEqual(got, want) {
t.Errorf("with %s, got %+v, want %+v\n", cardSlug, want, got)
}
}
func TestGetChapter(t *testing.T) {
chapterId := "29"
cardSlug := "top-interview-questions-medium"
want := &Chapter{
"array-and-strings",
[]struct{
Id string
} {
{"75"},
{"76"},
{"77"},
{"78"},
{"79"},
{"80"},
},
}
got := getChapter(chapterId, cardSlug)
if !reflect.DeepEqual(got, want) {
t.Errorf("with %s,%s, got %+v, want %+v\n", chapterId, cardSlug, want, got)
}
}