Codebase list lua-nginx-redis-connector / fresh-snapshots/main t / connector.t
fresh-snapshots/main

Tree @fresh-snapshots/main (Download .tar.gz)

connector.t @fresh-snapshots/mainraw · history · blame

  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
435
436
437
438
439
440
441
442
use Test::Nginx::Socket 'no_plan';
use Cwd qw(cwd);

my $pwd = cwd();

our $HttpConfig = qq{
lua_package_path "$pwd/lib/?.lua;;";
lua_socket_log_errors Off;

init_by_lua_block {
    require("luacov.runner").init()
}
};

$ENV{TEST_NGINX_RESOLVER} = '8.8.8.8';
$ENV{TEST_NGINX_REDIS_PORT} ||= 6380;
$ENV{TEST_NGINX_REDIS_PORT_AUTH} ||= 6393;
$ENV{TEST_NGINX_REDIS_SOCKET} ||= 'unix://tmp/redis/redis.sock';

no_long_string();
run_tests();

__DATA__

=== TEST 1: basic connect
--- http_config eval: $::HttpConfig
--- config
location /t {
    content_by_lua_block {
        local rc = require("resty.redis.connector").new({
            port = $TEST_NGINX_REDIS_PORT
        })

        local redis, err = assert(rc:connect(params),
            "connect should return positively")

        assert(redis:set("dog", "an animal"),
            "redis:set should return positively")

        redis:close()
    }
}
--- request
GET /t
--- no_error_log
[error]


=== TEST 2: try_hosts
--- http_config eval: $::HttpConfig
--- config
location /t {
    lua_socket_log_errors off;
    content_by_lua_block {
        local rc = require("resty.redis.connector").new({
            connect_timeout = 100,
        })

        local hosts = {
            { host = "127.0.0.1", port = 1 },
            { host = "127.0.0.1", port = 2 },
            { host = "127.0.0.1", port = $TEST_NGINX_REDIS_PORT },
        }

        local redis, err, previous_errors = rc:try_hosts(hosts)
        assert(redis and not err,
            "try_hosts should return a connection and no error")

        assert(string.len(previous_errors[1]) > 0,
            "previous_errors[1] should contain an error")
        assert(string.len(previous_errors[2]) > 0,
            "previous_errors[2] should contain an error")

        assert(redis:set("dog", "an animal"),
            "redis connection should be working")

        redis:close()

        local hosts = {
            { host = "127.0.0.1", port = 1 },
            { host = "127.0.0.1", port = 2 },
        }

        local redis, err, previous_errors = rc:try_hosts(hosts)
        assert(not redis and err == "no hosts available",
            "no available hosts should return an error")

        assert(string.len(previous_errors[1]) > 0,
            "previous_errors[1] should contain an error")
        assert(string.len(previous_errors[2]) > 0,
            "previous_errors[2] should contain an error")
    }
}
--- request
GET /t
--- no_error_log
[error]


=== TEST 3: connect_to_host
--- http_config eval: $::HttpConfig
--- config
location /t {
    content_by_lua_block {
        local rc = require("resty.redis.connector").new()

        local host = { host = "127.0.0.1", port = $TEST_NGINX_REDIS_PORT }

        local redis, err = rc:connect_to_host(host)
        assert(redis and not err,
            "connect_to_host should return positively")

        assert(redis:set("dog", "an animal"),
            "redis connection should be working")

        redis:close()
    }
}
--- request
GET /t
--- no_error_log
[error]


=== TEST 4: connect_to_host options ignore defaults
--- http_config eval: $::HttpConfig
--- config
location /t {
    content_by_lua_block {
        local rc = require("resty.redis.connector").new({
            port = $TEST_NGINX_REDIS_PORT,
            db = 2,
        })

        local redis, err = assert(rc:connect_to_host({
            host = "127.0.0.1",
            db = 1,
            port = $TEST_NGINX_REDIS_PORT
        }), "connect_to_host should return positively")

        assert(redis:set("dog", "an animal") == "OK",
            "set should return 'OK'")

        redis:select(2)
        assert(redis:get("dog") == ngx.null,
            "dog should not exist in db 2")

        redis:select(1)
        assert(redis:get("dog") == "an animal",
            "dog should be 'an animal' in db 1")

        redis:close()
    }
}
--- request
GET /t
--- no_error_log
[error]


=== TEST 5: Test set_keepalive method
--- http_config eval: $::HttpConfig
--- config
location /t {
    lua_socket_log_errors Off;
    content_by_lua_block {
        local rc = require("resty.redis.connector").new({
            port = $TEST_NGINX_REDIS_PORT,
        })

        local redis = assert(rc:connect(),
            "rc:connect should return positively")
        local ok, err = rc:set_keepalive(redis)
        assert(not err, "set_keepalive error should be nil")

        local ok, err = redis:set("foo", "bar")
        assert(not ok, "ok should be nil")
        assert(string.find(err, "closed"), "error should contain 'closed'")

        local redis = assert(rc:connect(), "connect should return positively")
        assert(redis:subscribe("channel"), "subscribe should return positively")

        local ok, err = rc:set_keepalive(redis)
        assert(not ok, "ok should be nil")
        assert(string.find(err, "subscribed state"),
            "error should contain 'subscribed state'")

    }
}
--- request
GET /t
--- no_error_log
[error]


=== TEST 6: password
--- http_config eval: $::HttpConfig
--- config
location /t {
    lua_socket_log_errors Off;
    content_by_lua_block {
        local rc = require("resty.redis.connector").new({
            port = $TEST_NGINX_REDIS_PORT,
            password = "foo",
        })

        local redis, err = rc:connect()
        assert(not redis and string.find(err, "ERR") and string.find(err, "AUTH"),
            "connect should fail with password error")

    }
}
--- request
GET /t
--- no_error_log
[error]

=== TEST 7: username and password
--- http_config eval: $::HttpConfig
--- config
location /t {
    lua_socket_log_errors Off;
    content_by_lua_block {
        local rc = require("resty.redis.connector").new({
            port = $TEST_NGINX_REDIS_PORT,
            username = "x",
            password = "foo",
        })

        local redis, err = rc:connect()
        assert(not redis and string.find(err, "WRONGPASS"),
            "connect should fail with invalid username-password error")
    }
}
--- request
GET /t
--- no_error_log
[error]


=== TEST 8: Bad unix domain socket path should fail
--- http_config eval: $::HttpConfig
--- config
location /t {
    lua_socket_log_errors Off;
    content_by_lua_block {
        local redis,  err = require("resty.redis.connector").new({
            path = "unix://GARBAGE_PATH_AKFDKAJSFKJSAFLKJSADFLKJSANCKAJSNCKJSANCLKAJS",
        }):connect()

        assert(not redis and err == "no such file or directory",
            "bad domain socket should fail")
    }
}
--- request
GET /t
--- no_error_log
[error]


=== TEST 8.1: Good unix domain socket path should succeed
--- http_config eval: $::HttpConfig
--- config
location /t {
    lua_socket_log_errors Off;
    content_by_lua_block {
        local redis, err = require("resty.redis.connector").new({
            path = "$TEST_NGINX_REDIS_SOCKET",
        }):connect()

        assert (redis and not err,
            "connection should be valid")

        redis:close()
    }
}
--- request
GET /t
--- no_error_log
[error]


=== TEST 9: parse_dsn
--- http_config eval: $::HttpConfig
--- config
location /t {
    lua_socket_log_errors Off;
    content_by_lua_block {
        local rc = require("resty.redis.connector")

        local user_params = {
            url = "redis://foo@127.0.0.1:$TEST_NGINX_REDIS_PORT/4"
        }

        local params, err = rc.parse_dsn(user_params)
        assert(params and not err,
            "url should parse without error: " .. tostring(err))

        assert(params.host == "127.0.0.1", "host should be localhost")
        assert(tonumber(params.port) == $TEST_NGINX_REDIS_PORT,
            "port should be $TEST_NGINX_REDIS_PORT")
        assert(tonumber(params.db) == 4, "db should be 4")
        assert(params.password == "foo", "password should be foo")


        local user_params = {
            url = "sentinel://foo:bar@foomaster:s/2"
        }

        local params, err = rc.parse_dsn(user_params)
        assert(params and not err,
            "url should parse without error: " .. tostring(err))

        assert(params.master_name == "foomaster", "master_name should be foomaster")
        assert(params.role == "slave", "role should be slave")
        assert(tonumber(params.db) == 2, "db should be 2")
        assert(params.username == "foo", "username should be foo")
        assert(params.password == "bar", "password should be bar")


        local params = {
            url = "sentinels:/wrongformat",
        }

        local ok, err = rc.parse_dsn(params)
        assert(not ok and err == "could not parse DSN: nil",
            "url should fail to parse")
    }
}
--- request
GET /t
--- no_error_log
[error]


=== TEST 10: params override dsn components
--- http_config eval: $::HttpConfig
--- config
location /t {
    lua_socket_log_errors Off;
    content_by_lua_block {
        local rc = require("resty.redis.connector")

        local user_params = {
            url = "redis://foo@127.0.0.1:$TEST_NGINX_REDIS_PORT/4",
            db = 2,
            password = "bar",
            host = "example.com",
        }

        local params, err = rc.parse_dsn(user_params)
        assert(params and not err,
            "url should parse without error: " .. tostring(err))

        assert(tonumber(params.db) == 2, "db should be 2")
        assert(params.password == "bar", "password should be bar")
        assert(params.host == "example.com", "host should be example.com")

        assert(tonumber(params.port) == $TEST_NGINX_REDIS_PORT, "port should still be $TEST_NGINX_REDIS_PORT")

    }
}
--- request
GET /t
--- no_error_log
[error]


=== TEST 11: Integration test for parse_dsn
--- http_config eval: $::HttpConfig
--- config
location /t {
    lua_socket_log_errors Off;
    content_by_lua_block {
        local user_params = {
            url = "redis://foo.example:$TEST_NGINX_REDIS_PORT/4",
            db = 2,
            host = "127.0.0.1",
        }

        local rc, err = require("resty.redis.connector").new(user_params)
        assert(rc and not err, "new should return positively")

        local redis, err = rc:connect()
        assert(redis and not err, "connect should return positively")
        assert(redis:set("cat", "dog") and redis:get("cat") == "dog")

        local redis, err = rc:connect({
            url = "redis://foo.example:$TEST_NGINX_REDIS_PORT/4",
            db = 2,
            host = "127.0.0.1",
        })
        assert(redis and not err, "connect should return positively")
        assert(redis:set("cat", "dog") and redis:get("cat") == "dog")


        local rc2, err = require("resty.redis.connector").new()
        local redis, err = rc2:connect({
            url = "redis://foo.example:$TEST_NGINX_REDIS_PORT/4",
            db = 2,
            host = "127.0.0.1",
        })
        assert(redis and not err, "connect should return positively")
        assert(redis:set("cat", "dog") and redis:get("cat") == "dog")

        local redis, err = rc2:connect({
            url = "redis://redisuser:redisuserpass@127.0.0.1:$TEST_NGINX_REDIS_PORT_AUTH/"
        })
        assert(redis and not err, "connect should return positively")
        local username = assert(redis:acl("whoami"))
        assert(username == "redisuser", "should connect as 'redisuser' but got " .. tostring(username))
    }
}
--- request
GET /t
--- no_error_log
[error]


=== TEST 12: DSN without DB
--- http_config eval: $::HttpConfig
--- config
location /t {
    lua_socket_log_errors Off;
    content_by_lua_block {
        local user_params = {
            url = "redis://foo.example:$TEST_NGINX_REDIS_PORT",
            host = "127.0.0.1",
        }

        local rc, err = require("resty.redis.connector").new(user_params)
        assert(rc and not err, "new should return positively")

        local redis, err = rc:connect()
        assert(redis and not err, "connect should return positively")
        assert(redis:set("cat", "dog") and redis:get("cat") == "dog")
    }
}
--- request
GET /t
--- no_error_log
[error]