forked from smyte/ratelimit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RateLimitHandlerTest.cpp
434 lines (374 loc) · 18.4 KB
/
RateLimitHandlerTest.cpp
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "codec/RedisMessage.h"
#include "folly/String.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "ratelimit/RateLimitCompactionFilter.h"
#include "ratelimit/RateLimitHandler.h"
#include "rocksdb/db.h"
#include "stesting/TestWithRocksDb.h"
#include "wangle/channel/Handler.h"
namespace ratelimit {
class RateLimitHandlerTest : public stesting::TestWithRocksDb {
protected:
RateLimitHandlerTest() : stesting::TestWithRocksDb({}, { {"default", RateLimitHandler::optimizeColumnFamily}}) {}
// Ratelimit does not support async command handling, so use default key
codec::RedisMessage getRedisMessage(codec::RedisValue&& val) {
return codec::RedisMessage(std::move(val));
}
};
class MockRateLimitHandler : public RateLimitHandler {
public:
explicit MockRateLimitHandler(std::shared_ptr<pipeline::DatabaseManager> databaseManager)
: RateLimitHandler(databaseManager) {}
MOCK_METHOD2(write, folly::Future<folly::Unit>(Context*, codec::RedisMessage));
// Ratelimit does not support async command handling, so use default key
bool handleCommand(const std::string& cmdNameLower, const std::vector<std::string>& cmd, Context* ctx) {
return RateLimitHandler::handleCommand(0L, cmdNameLower, cmd, ctx);
}
};
TEST_F(RateLimitHandlerTest, EncodeDecodeRateLimitKey) {
std::string keyName = "abc";
RateLimitHandler::KeyParams inputKeyParams{ 100, 5, 20 };
std::string key;
RateLimitHandler::encodeRateLimitKey(keyName, inputKeyParams, &key);
EXPECT_EQ(keyName, key.substr(0, 3));
EXPECT_EQ(keyName.size() + 3 * sizeof(RateLimitHandler::RedisIntType), key.size());
RateLimitHandler::KeyParams outputKeyParams;
ASSERT_TRUE(RateLimitHandler::decodeRateLimitKey(key, &outputKeyParams));
EXPECT_EQ(inputKeyParams.maxAmount, outputKeyParams.maxAmount);
EXPECT_EQ(inputKeyParams.refillAmount, outputKeyParams.refillAmount);
EXPECT_EQ(inputKeyParams.refillTimeMs, outputKeyParams.refillTimeMs);
}
TEST_F(RateLimitHandlerTest, EncodeDecodeRateLimitValue) {
RateLimitHandler::ValueParams inputValueParams{ 100, 10000, nowMs() };
std::string value;
RateLimitHandler::encodeRateLimitValue(inputValueParams, &value);
EXPECT_EQ(3 * sizeof(RateLimitHandler::RedisIntType), value.size());
RateLimitHandler::ValueParams outputValueParams;
ASSERT_FALSE(RateLimitHandler::decodeRateLimitValue(std::string("1"), &outputValueParams, nullptr));
ASSERT_TRUE(RateLimitHandler::decodeRateLimitValue(value, &outputValueParams, nullptr));
EXPECT_EQ(inputValueParams.amount, outputValueParams.amount);
EXPECT_EQ(inputValueParams.lastRefilledAtMs, outputValueParams.lastRefilledAtMs);
EXPECT_EQ(inputValueParams.lastReducedAtMs, outputValueParams.lastReducedAtMs);
}
TEST_F(RateLimitHandlerTest, EncodeDecodeRateLimitValueWithSession) {
std::string value;
RateLimitHandler::ValueParams inputValueParams{ 100, 10000, nowMs() };
RateLimitHandler::SessionParams inputSessionParams{ 15 };
RateLimitHandler::encodeRateLimitValue(inputValueParams, &value);
RateLimitHandler::encodeRateLimitValue(inputSessionParams, &value);
EXPECT_EQ(4 * sizeof(RateLimitHandler::RedisIntType), value.size());
RateLimitHandler::ValueParams outputValueParams;
ASSERT_TRUE(RateLimitHandler::decodeRateLimitValue(value, &outputValueParams, nullptr));
EXPECT_EQ(inputValueParams.amount, outputValueParams.amount);
EXPECT_EQ(inputValueParams.lastRefilledAtMs, outputValueParams.lastRefilledAtMs);
EXPECT_EQ(inputValueParams.lastReducedAtMs, outputValueParams.lastReducedAtMs);
RateLimitHandler::SessionParams outputSessionParams;
ASSERT_TRUE(RateLimitHandler::decodeRateLimitValue(value, &outputValueParams, &outputSessionParams));
EXPECT_EQ(inputSessionParams.sessionStartedAtMs, outputSessionParams.sessionStartedAtMs);
}
TEST_F(RateLimitHandlerTest, RateLimitCompactionFilterTrue) {
RateLimitCompactionFilter filter;
std::string newValue;
bool valueChanged;
std::string keyName = "abc";
// refill to max after 20 minutes
RateLimitHandler::KeyParams keyParams{ 100, 5, 60000 };
std::string key;
RateLimitHandler::encodeRateLimitKey(keyName, keyParams, &key);
RateLimitHandler::ValueParams valueParams{ 100, 10000, nowMs() - 1800 * 1000 }; // accessed 30 minutes ago
std::string value;
RateLimitHandler::encodeRateLimitValue(valueParams, &value);
EXPECT_TRUE(filter.Filter(0, key, value, &newValue, &valueChanged));
EXPECT_FALSE(valueChanged);
}
TEST_F(RateLimitHandlerTest, RateLimitCompactionFilterFalse) {
RateLimitCompactionFilter filter;
std::string newValue;
bool valueChanged;
std::string keyName = "abc";
// refill to max after 20 minutes
RateLimitHandler::KeyParams keyParams{ 100, 5, 60000 };
std::string key;
RateLimitHandler::encodeRateLimitKey(keyName, keyParams, &key);
RateLimitHandler::ValueParams valueParams{ 100, 10000, nowMs() - 600 * 1000 }; // accessed 10 minutes ago
std::string value;
RateLimitHandler::encodeRateLimitValue(valueParams, &value);
EXPECT_FALSE(filter.Filter(0, key, value, &newValue, &valueChanged));
EXPECT_FALSE(valueChanged);
}
TEST_F(RateLimitHandlerTest, AdjustAmount) {
RateLimitHandler::RedisIntType newRefilledAtMs;
RateLimitHandler::RedisIntType lastRefilledAtMs = 2000;
// No refill
RateLimitHandler::RedisIntType clientTimeMs1 = 53000;
RateLimitHandler::RateLimitArgs args1{ 1000, 60000, 100, 1, clientTimeMs1 };
EXPECT_EQ(100, RateLimitHandler::adjustAmount(100, lastRefilledAtMs, args1, &newRefilledAtMs));
EXPECT_EQ(2000, newRefilledAtMs);
// Partial refill
RateLimitHandler::RedisIntType clientTimeMs2 = 123000;
RateLimitHandler::RateLimitArgs args2{ 1000, 60000, 100, 1, clientTimeMs2 };
EXPECT_EQ(300, RateLimitHandler::adjustAmount(100, lastRefilledAtMs, args2, &newRefilledAtMs));
EXPECT_EQ(122000, newRefilledAtMs);
// Full refill
RateLimitHandler::RedisIntType clientTimeMs3 = 1312000;
RateLimitHandler::RateLimitArgs args3{ 1000, 60000, 100, 1, clientTimeMs3 };
EXPECT_EQ(args3.maxAmount, RateLimitHandler::adjustAmount(100, lastRefilledAtMs, args3, &newRefilledAtMs));
// full refill adjusts refilled at
EXPECT_EQ(1262000, newRefilledAtMs);
}
TEST_F(RateLimitHandlerTest, ParseRateLimitArgsWithOutErrors) {
std::vector<std::string> cmd1;
folly::split(" ", "rl.get abc 10 60", cmd1);
RateLimitHandler::RateLimitArgs args1 = {};
bool strict1 = false;
EXPECT_EQ(RateLimitHandler::simpleStringOk(),
RateLimitHandler::parseRateLimitArgs(cmd1, false, false, &args1, &strict1));
EXPECT_EQ(10, args1.maxAmount);
EXPECT_EQ(60000, args1.refillTimeMs);
EXPECT_FALSE(strict1);
// default values
EXPECT_EQ(args1.maxAmount, args1.refillAmount);
EXPECT_EQ(0, args1.tokenAmount);
EXPECT_LE(args1.clientTimeMs, RateLimitHandler::nowMs());
EXPECT_GE(args1.clientTimeMs, RateLimitHandler::nowMs() - 10 * 1000);
std::vector<std::string> cmd2;
folly::split(" ", "rl.pget abc 10 500", cmd2);
RateLimitHandler::RateLimitArgs args2 = {};
bool strict2 = false;
EXPECT_EQ(RateLimitHandler::simpleStringOk(),
RateLimitHandler::parseRateLimitArgs(cmd2, true, false, &args2, &strict2));
EXPECT_EQ(10, args2.maxAmount);
EXPECT_EQ(500, args2.refillTimeMs);
EXPECT_FALSE(strict2);
// default values
EXPECT_EQ(args2.maxAmount, args2.refillAmount);
EXPECT_EQ(0, args2.tokenAmount);
EXPECT_LE(args2.clientTimeMs, RateLimitHandler::nowMs());
EXPECT_GE(args2.clientTimeMs, RateLimitHandler::nowMs() - 10 * 1000);
std::vector<std::string> cmd3;
folly::split(" ", "rl.reduce abc 10 500 REFILL 5 take 2 at 1005", cmd3);
RateLimitHandler::RateLimitArgs args3 = {};
bool strict3 = false;
EXPECT_EQ(RateLimitHandler::simpleStringOk(),
RateLimitHandler::parseRateLimitArgs(cmd3, false, true, &args3, &strict3));
EXPECT_EQ(10, args3.maxAmount);
EXPECT_EQ(500000, args3.refillTimeMs);
EXPECT_EQ(5, args3.refillAmount);
EXPECT_EQ(2, args3.tokenAmount);
EXPECT_EQ(1005000, args3.clientTimeMs);
EXPECT_FALSE(strict3);
std::vector<std::string> cmd4;
folly::split(" ", "rl.preduce abc 20 500 at 1005 take 2", cmd4);
RateLimitHandler::RateLimitArgs args4 = {};
bool strict4 = false;
EXPECT_EQ(RateLimitHandler::simpleStringOk(),
RateLimitHandler::parseRateLimitArgs(cmd4, true, true, &args4, &strict4));
EXPECT_EQ(20, args4.maxAmount);
EXPECT_EQ(500, args4.refillTimeMs);
EXPECT_EQ(2, args4.tokenAmount);
EXPECT_EQ(1005, args4.clientTimeMs);
EXPECT_FALSE(strict4);
// default value
EXPECT_EQ(args4.maxAmount, args4.refillAmount);
std::vector<std::string> cmd5;
folly::split(" ", "rl.get abc 10 700 REFILL 3 at 2005", cmd5);
RateLimitHandler::RateLimitArgs args5 = {};
bool strict5 = false;
EXPECT_EQ(RateLimitHandler::simpleStringOk(),
RateLimitHandler::parseRateLimitArgs(cmd5, false, false, &args5, &strict5));
EXPECT_EQ(10, args5.maxAmount);
EXPECT_EQ(700000, args5.refillTimeMs);
EXPECT_EQ(2005000, args5.clientTimeMs);
EXPECT_EQ(3, args5.refillAmount);
EXPECT_FALSE(strict5);
// default value
EXPECT_EQ(0, args5.tokenAmount);
std::vector<std::string> cmd6;
folly::split(" ", "rl.pget abc 20 700 at 3005", cmd6);
RateLimitHandler::RateLimitArgs args6 = {};
bool strict6 = false;
EXPECT_EQ(RateLimitHandler::simpleStringOk(),
RateLimitHandler::parseRateLimitArgs(cmd6, true, false, &args6, &strict6));
EXPECT_EQ(20, args6.maxAmount);
EXPECT_EQ(700, args6.refillTimeMs);
EXPECT_EQ(3005, args6.clientTimeMs);
EXPECT_FALSE(strict6);
// default value
EXPECT_EQ(args6.maxAmount, args6.refillAmount);
EXPECT_EQ(0, args6.tokenAmount);
std::vector<std::string> cmd7;
folly::split(" ", "rl.reduce abc 20 700 STRICT at 3005 REFILL 4", cmd7);
RateLimitHandler::RateLimitArgs args7 = {};
bool strict7 = false;
EXPECT_EQ(RateLimitHandler::simpleStringOk(),
RateLimitHandler::parseRateLimitArgs(cmd7, true, true, &args7, &strict7));
EXPECT_EQ(20, args7.maxAmount);
EXPECT_EQ(700, args7.refillTimeMs);
EXPECT_EQ(3005, args7.clientTimeMs);
EXPECT_EQ(4, args7.refillAmount);
EXPECT_TRUE(strict7);
// default value
EXPECT_EQ(1, args7.tokenAmount);
std::vector<std::string> cmd8;
folly::split(" ", "rl.preduce abc 20 700000 at 3005000 REFILL 4 TAKE 3 STRICT", cmd8);
RateLimitHandler::RateLimitArgs args8 = {};
bool strict8 = false;
EXPECT_EQ(RateLimitHandler::simpleStringOk(),
RateLimitHandler::parseRateLimitArgs(cmd8, true, true, &args8, &strict8));
EXPECT_EQ(20, args8.maxAmount);
EXPECT_EQ(700000, args8.refillTimeMs);
EXPECT_EQ(3005000, args8.clientTimeMs);
EXPECT_EQ(4, args8.refillAmount);
EXPECT_EQ(3, args8.tokenAmount);
EXPECT_TRUE(strict8);
}
TEST_F(RateLimitHandlerTest, ParseRateLimitArgsWithErrors) {
std::vector<std::string> cmd;
folly::split(" ", "rl.get abc 10 abc", cmd);
RateLimitHandler::RateLimitArgs args = {};
bool strict = false;
EXPECT_EQ(RateLimitHandler::errorInvalidInteger(),
RateLimitHandler::parseRateLimitArgs(cmd, false, false, &args, &strict));
cmd.clear();
folly::split(" ", "rl.pget abc 0 60", cmd);
EXPECT_EQ(RateLimitHandler::errorInvalidInteger(),
RateLimitHandler::parseRateLimitArgs(cmd, true, false, &args, &strict));
cmd.clear();
folly::split(" ", "rl.reduce abc 10 60 refill strict 1", cmd);
EXPECT_EQ(RateLimitHandler::errorInvalidInteger(),
RateLimitHandler::parseRateLimitArgs(cmd, false, true, &args, &strict));
cmd.clear();
folly::split(" ", "rl.pget abc 0 60 take 2", cmd);
EXPECT_EQ(RateLimitHandler::errorSyntaxError(),
RateLimitHandler::parseRateLimitArgs(cmd, true, false, &args, &strict));
cmd.clear();
folly::split(" ", "rl.reduce abc 10 60 refill", cmd);
EXPECT_EQ(RateLimitHandler::errorSyntaxError(),
RateLimitHandler::parseRateLimitArgs(cmd, false, true, &args, &strict));
cmd.clear();
folly::split(" ", "rl.preduce abc 10 60 refill 1 strict abc", cmd);
EXPECT_EQ(RateLimitHandler::errorSyntaxError(),
RateLimitHandler::parseRateLimitArgs(cmd, true, true, &args, &strict));
}
TEST_F(RateLimitHandlerTest, GetReduceCommands) {
MockRateLimitHandler handler(databaseManager());
std::vector<std::string> cmd;
// have 10 left initially, and reduce 1 by default
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(10)))).Times(1);
folly::split(" ", "rl.reduce a 10 5 refill 3 at 2", cmd);
EXPECT_TRUE(handler.handleCommand("rl.reduce", cmd, nullptr));
// reduce 1 by default
cmd.clear();
folly::split(" ", "rl.preduce a 10 5000 at 2000 refill 3", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(9)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.preduce", cmd, nullptr));
// 8 left after two reduces
cmd.clear();
folly::split(" ", "rl.get a 10 5 at 2 refill 3", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(8)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.get", cmd, nullptr));
// `p` version has the same result
cmd.clear();
folly::split(" ", "rl.pget a 10 5000 refill 3 at 2000", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(8)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.pget", cmd, nullptr));
// reduce by an explicit amount
cmd.clear();
folly::split(" ", "rl.reduce a 10 5 at 2 refill 3 take 5", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(8)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.reduce", cmd, nullptr));
// 3 left after reduce by 5, reduce by an explicit amount
cmd.clear();
folly::split(" ", "rl.preduce a 10 5000 refill 3 take 5 at 2000", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(3)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.preduce", cmd, nullptr));
// not enough left after the second reduce 5
cmd.clear();
folly::split(" ", "rl.get a 10 5 at 2 refill 3", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(0)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.get", cmd, nullptr));
// refill with 3
cmd.clear();
folly::split(" ", "rl.get a 10 5 at 8 refill 3", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(3)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.get", cmd, nullptr));
// reduce 2 after refill
cmd.clear();
folly::split(" ", "rl.reduce a 10 5 at 8 take 2 refill 3", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(3)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.reduce", cmd, nullptr));
// 1 left after reduce and take them all
cmd.clear();
folly::split(" ", "rl.preduce a 10 5000 at 8000 refill 3", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(1)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.preduce", cmd, nullptr));
// nothing left
cmd.clear();
folly::split(" ", "rl.preduce a 10 5000 at 9000 refill 3", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(0)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.preduce", cmd, nullptr));
// get refilled again
cmd.clear();
folly::split(" ", "rl.get a 10 5 at 13 refill 3", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(3)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.get", cmd, nullptr));
// drain the bucket in strict mode
cmd.clear();
folly::split(" ", "rl.reduce a 10 5 at 14 refill 3 take 4 strict", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(3)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.reduce", cmd, nullptr));
// no token left before next refill
cmd.clear();
folly::split(" ", "rl.reduce a 10 5 at 16 refill 3 take 4 strict", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(0)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.reduce", cmd, nullptr));
// still no token left after next refill time in strict mode
cmd.clear();
folly::split(" ", "rl.reduce a 10 5 at 18 refill 3 take 1 strict", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(0)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.reduce", cmd, nullptr));
// refill again once waited the full refill time
cmd.clear();
folly::split(" ", "rl.reduce a 10 5 at 23 refill 3 take 2 strict", cmd);
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(3)))).Times(1);
EXPECT_TRUE(handler.handleCommand("rl.reduce", cmd, nullptr));
}
TEST_F(RateLimitHandlerTest, SessionizeCommands) {
MockRateLimitHandler handler(databaseManager());
std::vector<std::string> cmd;
// Start of a new session with 1 token left at time 0
std::vector<codec::RedisValue> result1 = {codec::RedisValue(1), codec::RedisValue(0)};
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(std::move(result1))))).Times(1);
folly::split(" ", "rl.sessionize a 1 3600 at 0 STRICT", cmd);
EXPECT_TRUE(handler.handleCommand("rl.sessionize", cmd, nullptr));
cmd.clear();
// continuation with the same session with token left
std::vector<codec::RedisValue> result2 = {codec::RedisValue(0), codec::RedisValue(0)};
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(std::move(result2))))).Times(1);
folly::split(" ", "rl.sessionize a 1 3600 at 1 STRICT", cmd);
EXPECT_TRUE(handler.handleCommand("rl.sessionize", cmd, nullptr));
cmd.clear();
// continuation with the same session with token left
std::vector<codec::RedisValue> result3 = {codec::RedisValue(0), codec::RedisValue(0)};
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(std::move(result3))))).Times(1);
folly::split(" ", "rl.sessionize a 1 3600 at 1000 STRICT", cmd);
EXPECT_TRUE(handler.handleCommand("rl.sessionize", cmd, nullptr));
cmd.clear();
// sessionization operates in strict mode so no refill even after 3600 seconds
std::vector<codec::RedisValue> result4 = {codec::RedisValue(0), codec::RedisValue(0)};
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(std::move(result4))))).Times(1);
folly::split(" ", "rl.sessionize a 1 3600 at 3605 STRICT", cmd);
EXPECT_TRUE(handler.handleCommand("rl.sessionize", cmd, nullptr));
cmd.clear();
// start of a new session with a one token left and a new timestamp
std::vector<codec::RedisValue> result5 = {codec::RedisValue(1), codec::RedisValue(7205000)};
EXPECT_CALL(handler, write(nullptr, getRedisMessage(codec::RedisValue(std::move(result5))))).Times(1);
folly::split(" ", "rl.sessionize a 1 3600 at 7205 STRICT", cmd);
EXPECT_TRUE(handler.handleCommand("rl.sessionize", cmd, nullptr));
}
} // namespace ratelimit