forked from yunge/sphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sphinxql_test.go
195 lines (160 loc) · 4.8 KB
/
sphinxql_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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
package sphinx
import (
"fmt"
"testing"
)
var (
rtIndex = "rt"
amount = 5
)
// Same as rt index
type rtData struct {
Id int
Title string
Content string
Group_id int
}
// Truncate the rt index first.
func TestTruncate(t *testing.T) {
fmt.Println("Running Truncate() test ...")
if err := NewClient().SetSqlServer(host, 0).TruncateRT(rtIndex); err != nil {
t.Fatalf("TestTruncate > %v\n", err)
}
}
func TestInsert(t *testing.T) {
fmt.Println("Running Insert() test...")
for i := 1; i <= amount; i++ {
rtd := rtData{i, "test title", "test content", i * 100}
if err := NewClient().SetIndex(rtIndex).Insert(&rtd); err != nil {
t.Fatalf("TestInsert > %v\n", err)
}
}
res, err := NewClient().Query("test", rtIndex, "test rt insert")
if err != nil {
t.Fatalf("TestInsert > %v\n", err)
}
if len(res.Matches) != amount {
t.Fatalf("TestInsert > Matches: %v\n", res.Matches)
}
}
func TestReplace(t *testing.T) {
fmt.Println("Running Replace() test...")
testId := 1
data := rtData{
Id: testId,
Title: "replaced' title",
Content: "replaced content",
Group_id: 1000,
}
sqlc := NewClient().SetIndex(rtIndex).SetColumns("Id", "Title", "Group_id")
if err := sqlc.Replace(&data); err != nil {
t.Fatalf("TestReplace > %v\n", err)
}
res, err := NewClient().Query("replaced", rtIndex, "test rt replace")
if err != nil {
t.Fatalf("TestReplace > %v\n", err)
}
// Replace
if len(res.Matches) != 1 || int(res.Matches[0].DocId) != testId {
t.Fatalf("TestReplace > Matches: %v\n", res.Matches)
}
}
func TestUpdate(t *testing.T) {
fmt.Println("Running Update() test...")
testId := 2
testGroupId := 2000
data := rtData{
Id: testId,
Group_id: testGroupId,
}
// Update DocId(2)
rowsAffected, err := NewClient().SetIndex(rtIndex).SetColumns("Group_id").Update(&data)
if err != nil {
t.Fatalf("TestUpdate > %v\n", err)
}
if rowsAffected != 1 {
t.Fatalf("TestUpdate > rowsAffected: %d\n", rowsAffected)
}
sc := NewClient().SetFilter("Group_id", []uint64{uint64(testGroupId)}, false)
res, err := sc.Query("", rtIndex, "test rt update")
if err != nil {
t.Fatalf("TestUpdate > %v\n", err)
}
if len(res.Matches) != 1 || int(res.Matches[0].DocId) != testId {
t.Fatalf("TestUpdate > Matches: %v\n", res.Matches)
}
}
func TestDelete(t *testing.T) {
fmt.Println("Running Delete() test...")
// Delete the last one.
rowsAffected, err := NewClient().SetIndex(rtIndex).Delete(amount)
if err != nil {
t.Fatalf("TestDelete > %v\n", err)
}
if rowsAffected != 1 {
t.Fatalf("TestDelete > rowsAffected: %d\n", rowsAffected)
}
res, err := NewClient().Query("", rtIndex, "test rt delete")
if err != nil {
t.Fatalf("TestDelete > %v\n", err)
}
if len(res.Matches) != amount-1 {
t.Fatalf("TestDelete > Matches: %v\n", res.Matches)
}
// Test batch delete
// Delete 3,4
rowsAffected, err = NewClient().SetIndex(rtIndex).Delete([]int{amount - 1, amount - 2})
if err != nil {
t.Fatalf("TestDelete > %v\n", err)
}
if rowsAffected != 2 {
t.Fatalf("TestDelete > rowsAffected: %d\n", rowsAffected)
}
res, err = NewClient().Query("", rtIndex, "test rt delete")
if err != nil {
t.Fatalf("TestDelete > %v\n", err)
}
if len(res.Matches) != amount-3 {
t.Fatalf("TestDelete > Matches: %v\n", res.Matches)
}
}
/*
mysql> select * from rt;
+------+----------+
| id | group_id |
+------+----------+
| 1 | 1000 |
| 2 | 2000 |
+------+----------+
2 rows in set (0.00 sec)
*/
// Note: The test would distroy "index1", you need reindex "index1" manually!
func TestRTCommand(t *testing.T) {
fmt.Println("Running RT commands test ...")
// ATTACH currently supports empty target RT indexes only, so truncate it first.
if err := NewClient().TruncateRT(rtIndex); err != nil {
t.Fatalf("Test TruncateRT > %v\n", err)
}
if err := NewClient().AttachToRT(index, rtIndex); err != nil {
t.Fatalf("Test AttachToRT > %v\n", err)
}
if err := NewClient().FlushRT(rtIndex); err != nil {
t.Fatalf("Test FlushRT > %v\n", err)
}
if err := NewClient().Optimize(rtIndex); err != nil {
t.Fatalf("Test Optimize > %v\n", err)
}
}
/*
mysql> select * from rt;
+------+----------+----------+-----------+------------+----------+-----------+
| id | cate_ids | group_id | group_id2 | date_added | latitude | longitude |
+------+----------+----------+-----------+------------+----------+-----------+
| 1 | 1 | 3 | 15 | 1326178239 | 0.521377 | 2.121630 |
| 2 | 1,2 | 4 | 16 | 1326178239 | 0.521206 | 2.121232 |
| 3 | 1,2,3 | 2 | 7 | 1326178239 | 0.521377 | 2.121630 |
| 4 | 1,2,3,4 | 2 | 8 | 1326178239 | 0.523264 | 2.125200 |
| 5 | | 0 | 0 | 0 | 0.546671 | 2.127820 |
+------+----------+----------+-----------+------------+----------+-----------+
5 rows in set (0.01 sec)
*/