-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathGearsTests.cs
202 lines (165 loc) · 6.66 KB
/
GearsTests.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
using Xunit;
using StackExchange.Redis;
namespace NRedisStack.Tests.Gears;
public class GearsTests : AbstractNRedisStackTest, IDisposable
{
private readonly string key = "BLOOM_TESTS";
public GearsTests(RedisFixture redisFixture) : base(redisFixture) { }
public void Dispose()
{
redisFixture.Redis.GetDatabase().KeyDelete(key);
}
[SkipIfRedisVersion(Comparison.LessThan, "7.1.242")]
public void TestTFunctionLoadDelete()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
Assert.True(db.TFunctionLoad(GenerateLibCode("lib")));
Assert.True(db.TFunctionDelete("lib"));
}
[SkipIfRedisVersion(Comparison.LessThan, "7.1.242")]
public async Task TestTFunctionLoadDeleteAsync()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
TryDeleteLib(db, "lib", "lib1", "lib2", "lib3");
Assert.True(await db.TFunctionLoadAsync(GenerateLibCode("lib")));
Assert.True(await db.TFunctionDeleteAsync("lib"));
}
[SkipIfRedisVersion(Comparison.LessThan, "7.1.242")]
public void TestTFunctionList()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
TryDeleteLib(db, "lib", "lib1", "lib2", "lib3");
Assert.True(db.TFunctionLoad(GenerateLibCode("lib1")));
Assert.True(db.TFunctionLoad(GenerateLibCode("lib2")));
Assert.True(db.TFunctionLoad(GenerateLibCode("lib3")));
// test error throwing:
Assert.Throws<ArgumentOutOfRangeException>(() => db.TFunctionList(verbose: 8));
var functions = db.TFunctionList(verbose: 1);
Assert.Equal(3, functions.Length);
HashSet<string> expectedNames = new HashSet<string> { "lib1", "lib2", "lib3" };
HashSet<string> actualNames = new HashSet<string>{
functions[0]["name"].ToString()!,
functions[1]["name"].ToString()!,
functions[2]["name"].ToString()!
};
Assert.Equal(expectedNames, actualNames);
Assert.True(db.TFunctionDelete("lib1"));
Assert.True(db.TFunctionDelete("lib2"));
Assert.True(db.TFunctionDelete("lib3"));
}
[SkipIfRedisVersion(Comparison.LessThan, "7.1.242")]
public async Task TestTFunctionListAsync()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
TryDeleteLib(db, "lib", "lib1", "lib2", "lib3");
Assert.True(await db.TFunctionLoadAsync(GenerateLibCode("lib1")));
Assert.True(await db.TFunctionLoadAsync(GenerateLibCode("lib2")));
Assert.True(await db.TFunctionLoadAsync(GenerateLibCode("lib3")));
var functions = await db.TFunctionListAsync(verbose: 1);
Assert.Equal(3, functions.Length);
HashSet<string> expectedNames = new HashSet<string> { "lib1", "lib2", "lib3" };
HashSet<string> actualNames = new HashSet<string>{
functions[0]["name"].ToString()!,
functions[1]["name"].ToString()!,
functions[2]["name"].ToString()!
};
Assert.Equal(expectedNames, actualNames);
Assert.True(await db.TFunctionDeleteAsync("lib1"));
Assert.True(await db.TFunctionDeleteAsync("lib2"));
Assert.True(await db.TFunctionDeleteAsync("lib3"));
}
[SkipIfRedisVersion(Comparison.LessThan, "7.1.242")]
public void TestTFCall()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
TryDeleteLib(db, "lib", "lib1", "lib2", "lib3");
Assert.True(db.TFunctionLoad(GenerateLibCode("lib")));
Assert.Equal("bar", db.TFCall("lib", "foo", async: false).ToString());
Assert.Equal("bar", db.TFCall("lib", "foo", async: true).ToString());
Assert.True(db.TFunctionDelete("lib"));
}
[SkipIfRedisVersion(Comparison.LessThan, "7.1.242")]
public async Task TestTFCallAsync()
{
IDatabase db = redisFixture.Redis.GetDatabase();
db.Execute("FLUSHALL");
TryDeleteLib(db, "lib", "lib1", "lib2", "lib3");
Assert.True(await db.TFunctionLoadAsync(GenerateLibCode("lib")));
Assert.Equal("bar", (await db.TFCallAsync("lib", "foo", async: false)).ToString());
Assert.Equal("bar", (await db.TFCallAsync("lib", "foo", async: true)).ToString());
Assert.True(await db.TFunctionDeleteAsync("lib"));
}
[SkipIfRedisVersion(Comparison.LessThan, "7.1.242")]
public void TestGearsCommandBuilder()
{
// TFunctionLoad:
var buildCommand = GearsCommandBuilder
.TFunctionLoad(GenerateLibCode("lib"),
true, "config");
var expected = new List<object>
{
"LOAD",
"REPLACE",
"CONFIG",
"config",
GenerateLibCode("lib")
};
Assert.Equal("TFUNCTION", buildCommand.Command);
Assert.Equal(expected, buildCommand.Args);
// TFunctionDelete:
buildCommand = GearsCommandBuilder.TFunctionDelete("lib");
expected = new List<object>
{
"DELETE",
"lib"
};
Assert.Equal("TFUNCTION", buildCommand.Command);
Assert.Equal(expected, buildCommand.Args);
// TFunctionList:
buildCommand = GearsCommandBuilder.TFunctionList(true, 2, "lib");
expected = new List<object>
{
"LIST",
"WITHCODE",
"vv",
"LIBRARY",
"lib",
};
Assert.Equal("TFUNCTION", buildCommand.Command);
Assert.Equal(expected, buildCommand.Args);
// TFCall:
var buildSync = GearsCommandBuilder.TFCall("libName", "funcName", new string[] { "key1", "key2" }, new string[] { "arg1", "arg2" }, false);
var buildAsync = GearsCommandBuilder.TFCall("libName", "funcName", new string[] { "key1", "key2" }, new string[] { "arg1", "arg2" }, true);
expected = new List<object>
{
"libName.funcName",
2,
"key1",
"key2",
"arg1",
"arg2"
};
Assert.Equal("TFCALL", buildSync.Command);
Assert.Equal(expected, buildSync.Args);
Assert.Equal("TFCALLASYNC", buildAsync.Command);
Assert.Equal(expected, buildAsync.Args);
}
private static void TryDeleteLib(IDatabase db, params string[] libNames)
{
try
{
foreach(var libName in libNames)
db.TFunctionDelete(libName);
}
catch (RedisServerException) { }
}
private static string GenerateLibCode(string libName)
{
return $"#!js api_version=1.0 name={libName}\n redis.registerFunction('foo', ()=>{{return 'bar'}})";
}
}