-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathSearchTests.cs
309 lines (253 loc) · 13.8 KB
/
SearchTests.cs
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
using Xunit;
using StackExchange.Redis;
using NRedisStack.RedisStackCommands;
using Moq;
using NRedisStack.Search.FT.CREATE;
using NRedisStack.Search;
using static NRedisStack.Search.Schema;
namespace NRedisStack.Tests.Search;
public class SearchTests : AbstractNRedisStackTest, IDisposable
{
Mock<IDatabase> _mock = new Mock<IDatabase>();
private readonly string key = "SEARCH_TESTS";
private readonly string index = "TEST_INDEX";
public SearchTests(RedisFixture redisFixture) : base(redisFixture) { }
public void Dispose()
{
redisFixture.Redis.GetDatabase().KeyDelete(key);
}
[Fact]
public void TestCreate()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
var ft = db.FT();
var schema = new Schema().AddTextField("first").AddTextField("last").AddNumericField("age");
var parameters = FTCreateParams.CreateParams().Filter("@age>16").Prefix("student:", "pupil:");
Assert.True(ft.Create(index, parameters, schema));
db.HashSet("profesor:5555", new HashEntry[] { new("first", "Albert"), new("last", "Blue"), new("age", "55") });
db.HashSet("student:1111", new HashEntry[] { new("first", "Joe"), new("last", "Dod"), new("age", "18") });
db.HashSet("pupil:2222", new HashEntry[] { new("first", "Jen"), new("last", "Rod"), new("age", "14") });
db.HashSet("student:3333", new HashEntry[] { new("first", "El"), new("last", "Mark"), new("age", "17") });
db.HashSet("pupil:4444", new HashEntry[] { new("first", "Pat"), new("last", "Shu"), new("age", "21") });
db.HashSet("student:5555", new HashEntry[] { new("first", "Joen"), new("last", "Ko"), new("age", "20") });
db.HashSet("teacher:6666", new HashEntry[] { new("first", "Pat"), new("last", "Rod"), new("age", "20") });
var noFilters = ft.Search(index, new Query());
Assert.Equal(4, noFilters.TotalResults);
var res1 = ft.Search(index, new Query("@first:Jo*"));
Assert.Equal(2, res1.TotalResults);
var res2 = ft.Search(index, new Query("@first:Pat"));
Assert.Equal(1, res2.TotalResults);
var res3 = ft.Search(index, new Query("@last:Rod"));
Assert.Equal(0, res3.TotalResults);
}
[Fact]
public async Task TestCreateAsync()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
var ft = db.FT();
var schema = new Schema().AddTextField("first").AddTextField("last").AddNumericField("age");
var parameters = FTCreateParams.CreateParams().Filter("@age>16").Prefix("student:", "pupil:");
Assert.True(await ft.CreateAsync(index, parameters, schema));
db.HashSet("profesor:5555", new HashEntry[] { new("first", "Albert"), new("last", "Blue"), new("age", "55") });
db.HashSet("student:1111", new HashEntry[] { new("first", "Joe"), new("last", "Dod"), new("age", "18") });
db.HashSet("pupil:2222", new HashEntry[] { new("first", "Jen"), new("last", "Rod"), new("age", "14") });
db.HashSet("student:3333", new HashEntry[] { new("first", "El"), new("last", "Mark"), new("age", "17") });
db.HashSet("pupil:4444", new HashEntry[] { new("first", "Pat"), new("last", "Shu"), new("age", "21") });
db.HashSet("student:5555", new HashEntry[] { new("first", "Joen"), new("last", "Ko"), new("age", "20") });
db.HashSet("teacher:6666", new HashEntry[] { new("first", "Pat"), new("last", "Rod"), new("age", "20") });
var noFilters = ft.Search(index, new Query());
Assert.Equal(4, noFilters.TotalResults);
var res1 = ft.Search(index, new Query("@first:Jo*"));
Assert.Equal(2, res1.TotalResults);
var res2 = ft.Search(index, new Query("@first:Pat"));
Assert.Equal(1, res2.TotalResults);
var res3 = ft.Search(index, new Query("@last:Rod"));
Assert.Equal(0, res3.TotalResults);
}
[Fact]
public void CreateNoParams()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
var ft = db.FT();
Schema sc = new Schema().AddTextField("first", 1.0).AddTextField("last", 1.0).AddNumericField("age");
Assert.True(ft.Create(index, FTCreateParams.CreateParams(), sc));
db.HashSet("student:1111", new HashEntry[] { new("first", "Joe"), new("last", "Dod"), new("age", 18) });
db.HashSet("student:3333", new HashEntry[] { new("first", "El"), new("last", "Mark"), new("age", 17) });
db.HashSet("pupil:4444", new HashEntry[] { new("first", "Pat"), new("last", "Shu"), new("age", 21) });
db.HashSet("student:5555", new HashEntry[] { new("first", "Joen"), new("last", "Ko"), new("age", 20) });
SearchResult noFilters = ft.Search(index, new Query());
Assert.Equal(4, noFilters.TotalResults);
SearchResult res1 = ft.Search(index, new Query("@first:Jo*"));
Assert.Equal(2, res1.TotalResults);
SearchResult res2 = ft.Search(index, new Query("@first:Pat"));
Assert.Equal(1, res2.TotalResults);
SearchResult res3 = ft.Search(index, new Query("@last:Rod"));
Assert.Equal(0, res3.TotalResults);
}
[Fact]
public async Task CreateNoParamsAsync()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
var ft = db.FT();
Schema sc = new Schema().AddTextField("first", 1.0).AddTextField("last", 1.0).AddNumericField("age");
Assert.True(await ft.CreateAsync(index, FTCreateParams.CreateParams(), sc));
db.HashSet("student:1111", new HashEntry[] { new("first", "Joe"), new("last", "Dod"), new("age", 18) });
db.HashSet("student:3333", new HashEntry[] { new("first", "El"), new("last", "Mark"), new("age", 17) });
db.HashSet("pupil:4444", new HashEntry[] { new("first", "Pat"), new("last", "Shu"), new("age", 21) });
db.HashSet("student:5555", new HashEntry[] { new("first", "Joen"), new("last", "Ko"), new("age", 20) });
SearchResult noFilters = ft.Search(index, new Query());
Assert.Equal(4, noFilters.TotalResults);
SearchResult res1 = ft.Search(index, new Query("@first:Jo*"));
Assert.Equal(2, res1.TotalResults);
SearchResult res2 = ft.Search(index, new Query("@first:Pat"));
Assert.Equal(1, res2.TotalResults);
SearchResult res3 = ft.Search(index, new Query("@last:Rod"));
Assert.Equal(0, res3.TotalResults);
}
[Fact]
public void CreateWithFieldNames()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
var ft = db.FT();
Schema sc = new Schema().AddField(new TextField(FieldName.Of("first").As("given")))
.AddField(new TextField(FieldName.Of("last")));
Assert.True(ft.Create(index, FTCreateParams.CreateParams().Prefix("student:", "pupil:"), sc));
db.HashSet("profesor:5555", new HashEntry[] { new("first", "Albert"), new("last", "Blue"), new("age", "55") });
db.HashSet("student:1111", new HashEntry[] { new("first", "Joe"), new("last", "Dod"), new("age", "18") });
db.HashSet("pupil:2222", new HashEntry[] { new("first", "Jen"), new("last", "Rod"), new("age", "14") });
db.HashSet("student:3333", new HashEntry[] { new("first", "El"), new("last", "Mark"), new("age", "17") });
db.HashSet("pupil:4444", new HashEntry[] { new("first", "Pat"), new("last", "Shu"), new("age", "21") });
db.HashSet("student:5555", new HashEntry[] { new("first", "Joen"), new("last", "Ko"), new("age", "20") });
db.HashSet("teacher:6666", new HashEntry[] { new("first", "Pat"), new("last", "Rod"), new("age", "20") });
SearchResult noFilters = ft.Search(index, new Query());
Assert.Equal(5, noFilters.TotalResults);
SearchResult asOriginal = ft.Search(index, new Query("@first:Jo*"));
Assert.Equal(0, asOriginal.TotalResults);
SearchResult asAttribute = ft.Search(index, new Query("@given:Jo*"));
Assert.Equal(2, asAttribute.TotalResults);
SearchResult nonAttribute = ft.Search(index, new Query("@last:Rod"));
Assert.Equal(1, nonAttribute.TotalResults);
}
[Fact]
public async Task CreateWithFieldNamesAsync()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
var ft = db.FT();
Schema sc = new Schema().AddField(new TextField(FieldName.Of("first").As("given")))
.AddField(new TextField(FieldName.Of("last")));
Assert.True(await ft.CreateAsync(index, FTCreateParams.CreateParams().Prefix("student:", "pupil:"), sc));
db.HashSet("profesor:5555", new HashEntry[] { new("first", "Albert"), new("last", "Blue"), new("age", "55") });
db.HashSet("student:1111", new HashEntry[] { new("first", "Joe"), new("last", "Dod"), new("age", "18") });
db.HashSet("pupil:2222", new HashEntry[] { new("first", "Jen"), new("last", "Rod"), new("age", "14") });
db.HashSet("student:3333", new HashEntry[] { new("first", "El"), new("last", "Mark"), new("age", "17") });
db.HashSet("pupil:4444", new HashEntry[] { new("first", "Pat"), new("last", "Shu"), new("age", "21") });
db.HashSet("student:5555", new HashEntry[] { new("first", "Joen"), new("last", "Ko"), new("age", "20") });
db.HashSet("teacher:6666", new HashEntry[] { new("first", "Pat"), new("last", "Rod"), new("age", "20") });
SearchResult noFilters = await ft.SearchAsync(index, new Query());
Assert.Equal(5, noFilters.TotalResults);
SearchResult asOriginal = await ft.SearchAsync(index, new Query("@first:Jo*"));
Assert.Equal(0, asOriginal.TotalResults);
SearchResult asAttribute = await ft.SearchAsync(index, new Query("@given:Jo*"));
Assert.Equal(2, asAttribute.TotalResults);
SearchResult nonAttribute = await ft.SearchAsync(index, new Query("@last:Rod"));
Assert.Equal(1, nonAttribute.TotalResults);
}
[Fact]
public void AlterAdd()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
var ft = db.FT();
Schema sc = new Schema().AddTextField("title", 1.0);
Assert.True(ft.Create(index, FTCreateParams.CreateParams(), sc));
var fields = new HashEntry("title", "hello world");
//fields.("title", "hello world");
for (int i = 0; i < 100; i++)
{
db.HashSet($"doc{i}", fields.Name, fields.Value);
}
SearchResult res = ft.Search(index, new Query("hello world"));
Assert.Equal(100, res.TotalResults);
Assert.True(ft.Alter(index, new Schema().AddTagField("tags").AddTextField("name", weight: 0.5)));
for (int i = 0; i < 100; i++)
{
var fields2 = new HashEntry[] { new("name", "name" + i),
new("tags", $"tagA,tagB,tag{i}") };
// assertTrue(client.updateDocument(string.format("doc%d", i), 1.0, fields2));
db.HashSet($"doc{i}", fields2);
}
SearchResult res2 = ft.Search(index, new Query("@tags:{tagA}"));
Assert.Equal(100, res2.TotalResults);
//TODO: complete this test
var info = ft.Info(index);
Assert.Equal(index, info.IndexName);
//var result = info["attributes"];
// Assert.Equal("identifier", (info.Attributes[]);
// Assert.Equal("attribute", ((RedisValue[])((RedisValue[])info["attributes"])[1])[2]);
}
[Fact]
public async Task AlterAddAsync()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
var ft = db.FT();
Schema sc = new Schema().AddTextField("title", 1.0);
Assert.True(ft.Create(index, FTCreateParams.CreateParams(), sc));
var fields = new HashEntry("title", "hello world");
//fields.("title", "hello world");
for (int i = 0; i < 100; i++)
{
db.HashSet($"doc{i}", fields.Name, fields.Value);
}
SearchResult res = ft.Search(index, new Query("hello world"));
Assert.Equal(100, res.TotalResults);
Assert.True(await ft.AlterAsync(index, new Schema().AddTagField("tags").AddTextField("name", weight: 0.5)));
for (int i = 0; i < 100; i++)
{
var fields2 = new HashEntry[] { new("name", "name" + i),
new("tags", $"tagA,tagB,tag{i}") };
// assertTrue(client.updateDocument(string.format("doc%d", i), 1.0, fields2));
db.HashSet($"doc{i}", fields2);
}
SearchResult res2 = ft.Search(index, new Query("@tags:{tagA}"));
Assert.Equal(100, res2.TotalResults);
//TODO: complete this test when I finish the command FT.INFO
// var info = ft.Info(index);
// Assert.Equal(index, info.get("index_name"));
// Assert.Equal("identifier", ((RedisValue[])((RedisValue[])info.get("attributes"))[1])[0]);
// Assert.Equal("attribute", ((RedisValue[])((RedisValue[])info.get("attributes"))[1])[2]);
}
[Fact]
public void TestModulePrefixs()
{
IDatabase db1 = redisFixture.Redis.GetDatabase();
IDatabase db2 = redisFixture.Redis.GetDatabase();
var ft1 = db1.FT();
var ft2 = db2.FT();
Assert.NotEqual(ft1.GetHashCode(), ft2.GetHashCode());
}
[Fact]
public void TestModulePrefixs1()
{
{
var conn = ConnectionMultiplexer.Connect("localhost");
IDatabase db = conn.GetDatabase();
var ft = db.FT();
// ...
conn.Dispose();
}
{
var conn = ConnectionMultiplexer.Connect("localhost");
IDatabase db = conn.GetDatabase();
var ft = db.FT();
// ...
conn.Dispose();
}
}
}