-
Notifications
You must be signed in to change notification settings - Fork 0
/
02-hooks_spec.lua
858 lines (765 loc) · 25.8 KB
/
02-hooks_spec.lua
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
local helpers = require "spec.helpers"
local cjson = require "cjson"
local cache = require "kong.tools.database_cache"
local pl_utils = require "pl.utils"
local pl_path = require "pl.path"
local pl_file = require "pl.file"
local pl_stringx = require "pl.stringx"
-- cache entry inserted as a sentinel whenever a db lookup returns nothing
local DB_MISS_SENTINEL = { null = true }
describe("Core Hooks", function()
describe("Global", function()
describe("Plugin entity invalidation on API", function()
local client, api_client, db_miss_api
local plugin
before_each(function()
assert(helpers.dao.apis:insert {
name = "hooks1",
hosts = { "hooks1.com" },
upstream_url = "http://mockbin.com"
})
plugin = assert(helpers.dao.plugins:insert {
name = "rate-limiting",
config = { minute = 10 }
})
assert(helpers.dao.apis:insert {
name = "hooks2",
hosts = { "hooks2.com" },
upstream_url = "http://mockbin.com"
})
assert(helpers.dao.apis:insert {
name = "db-miss",
hosts = { "db-miss.org" },
upstream_url = "http://mockbin.com"
})
db_miss_api = assert(helpers.dao.apis:insert {
name = "db-miss-you-too",
hosts = { "db-miss-you-too.org" },
upstream_url = "http://mockbin.com"
})
assert(helpers.dao.plugins:insert {
name = "correlation-id",
api_id = db_miss_api.id
})
helpers.start_kong()
client = helpers.proxy_client()
api_client = helpers.admin_client()
end)
after_each(function()
if client and api_client then
client:close()
api_client:close()
end
helpers.stop_kong()
end)
it("inserts sentinel values for db-miss", function()
-- test case specific for https://github.com/Mashape/kong/pull/1841
-- make a request, to populate cache with sentinel values
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "db-miss.org"
}
})
assert.response(res).has.status(200)
-- check sentinel value for global plugin; pluginname, nil, nil
local cache_path = "/cache/"..cache.plugin_key("correlation-id", nil, nil)
local res = assert(api_client:send {
method = "GET",
path = cache_path
})
assert.response(res).has.status(200)
assert.same(DB_MISS_SENTINEL, assert.response(res).has.jsonbody())
end)
it("should invalidate a global plugin when adding", function()
-- on a db-miss a sentinel value is inserted in the cache to prevent
-- too many db lookups. This sentinel value should be invalidated when
-- adding a plugin.
-- Making a request to populate the cache
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks2.com"
}
})
assert.response(res).has.status(200)
-- Make sure the cache is not populated
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("basic-auth", nil, nil)
})
local entry = cjson.decode(assert.res_status(200, res))
assert.same(DB_MISS_SENTINEL, entry) -- db-miss sentinel value
-- Add plugin
local res = assert(api_client:send {
method = "POST",
path = "/plugins/",
headers = {
["Content-Type"] = "application/json"
},
body = cjson.encode({
name = "basic-auth"
})
})
assert.response(res).has.status(201)
-- Wait for cache to be invalidated
helpers.wait_until(function()
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("basic-auth", nil, nil)
})
res:read_body()
return res.status == 404
end, 3)
-- Making a request: replacing the db-miss sentinel value in cache
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks2.com"
}
})
assert.response(res).has.status(401) -- in effect plugin, so failure
-- Make sure the cache is populated
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("basic-auth", nil, nil)
})
local entry = cjson.decode(assert.res_status(200, res))
assert.is_true(entry.enabled)
assert.is.same("basic-auth", entry.name)
end)
it("should invalidate a global plugin when deleting", function()
-- Making a request to populate the cache
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks1.com"
}
})
assert.res_status(200, res)
assert.is_string(res.headers["X-RateLimit-Limit-minute"])
-- Make sure the cache is populated
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("rate-limiting", nil, nil)
})
assert.res_status(200, res)
-- Delete plugin
local res = assert(api_client:send {
method = "DELETE",
path = "/plugins/"..plugin.id
})
assert.res_status(204, res)
-- Wait for cache to be invalidated
helpers.wait_until(function()
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("rate-limiting", nil, nil)
})
res:read_body()
return res.status == 404
end, 3)
-- Consuming the API again without any authorization
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks1.com"
}
})
assert.res_status(200, res)
assert.is_nil(res.headers["X-RateLimit-Limit-minute"])
end)
end)
describe("Global Plugin entity invalidation on Consumer", function()
local client, api_client
local plugin, consumer
setup(function()
helpers.dao:truncate_tables()
end)
before_each(function()
assert(helpers.dao.apis:insert {
name = "hook1",
hosts = { "hooks1.com" },
upstream_url = "http://mockbin.com"
})
assert(helpers.dao.plugins:insert {
name = "key-auth",
config = {}
})
consumer = assert(helpers.dao.consumers:insert {
username = "test"
})
assert(helpers.dao.keyauth_credentials:insert {
key = "kong",
consumer_id = consumer.id
})
plugin = assert(helpers.dao.plugins:insert {
name = "rate-limiting",
consumer_id = consumer.id,
config = { minute = 10 }
})
helpers.start_kong()
client = helpers.proxy_client()
api_client = helpers.admin_client()
end)
after_each(function()
if client and api_client then
client:close()
api_client:close()
end
helpers.stop_kong()
end)
it("should invalidate a global plugin when deleting", function()
-- Making a request to populate the cache
local res = assert(client:send {
method = "GET",
path = "/status/200?apikey=kong",
headers = {
["Host"] = "hooks1.com"
}
})
assert.res_status(200, res)
assert.is_string(res.headers["X-RateLimit-Limit-minute"])
-- Make sure the cache is populated
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("rate-limiting", nil, consumer.id)
})
assert.res_status(200, res)
-- Delete plugin
local res = assert(api_client:send {
method = "DELETE",
path = "/plugins/"..plugin.id
})
assert.res_status(204, res)
-- Wait for cache to be invalidated
helpers.wait_until(function()
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("rate-limiting", nil, consumer.id)
})
res:read_body()
return res.status == 404
end, 3)
-- Consuming the API again without any authorization
local res = assert(client:send {
method = "GET",
path = "/status/200?apikey=kong",
headers = {
["Host"] = "hooks1.com"
}
})
assert.res_status(200, res)
assert.is_nil(res.headers["X-RateLimit-Limit-minute"])
-- Delete consumer
local res = assert(api_client:send {
method = "DELETE",
path = "/consumers/"..consumer.id
})
assert.res_status(204, res)
local res = assert(client:send {
method = "GET",
path = "/status/200?apikey=kong",
headers = {
["Host"] = "hooks1.com"
}
})
assert.res_status(200, res)
assert.is_nil(res.headers["X-RateLimit-Limit-minute"])
local res = assert(api_client:send {
method = "GET",
path = "/plugins/"..plugin.id,
})
assert.res_status(404, res)
end)
end)
end)
describe("Other", function()
local client, api_client
local consumer, api2, basic_auth2, api3, rate_limiting_consumer
before_each(function()
consumer = assert(helpers.dao.consumers:insert {
username = "consumer1"
})
assert(helpers.dao.basicauth_credentials:insert {
username = "user123",
password = "pass123",
consumer_id = consumer.id
})
assert(helpers.dao.apis:insert {
name = "hook1",
hosts = { "hooks1.com" },
upstream_url = "http://mockbin.com"
})
api2 = assert(helpers.dao.apis:insert {
name = "hook2",
hosts = { "hooks-consumer.com" },
upstream_url = "http://mockbin.com"
})
basic_auth2 = assert(helpers.dao.plugins:insert {
name = "basic-auth",
api_id = api2.id,
config = {}
})
api3 = assert(helpers.dao.apis:insert {
name = "hook3",
hosts = { "hooks-plugins.com" },
upstream_url = "http://mockbin.com"
})
assert(helpers.dao.plugins:insert {
name = "basic-auth",
api_id = api3.id,
config = {}
})
assert(helpers.dao.plugins:insert {
name = "rate-limiting",
api_id = api3.id,
config = {
minute = 10
}
})
rate_limiting_consumer = assert(helpers.dao.plugins:insert {
name = "rate-limiting",
api_id = api3.id,
consumer_id = consumer.id,
config = {
minute = 3
}
})
helpers.start_kong()
client = helpers.proxy_client()
api_client = helpers.admin_client()
end)
after_each(function()
if client and api_client then
client:close()
api_client:close()
end
helpers.stop_kong()
end)
describe("Plugin entity invalidation", function()
it("should invalidate a plugin when deleting", function()
-- Making a request to populate the cache
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-consumer.com",
["Authorization"] = "Basic dXNlcjEyMzpwYXNzMTIz"
}
})
assert.res_status(200, res)
-- Make sure the cache is populated
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("basic-auth", api2.id, nil)
})
assert.res_status(200, res)
-- Delete plugin
local res = assert(api_client:send {
method = "DELETE",
path = "/apis/"..api2.id.."/plugins/"..basic_auth2.id
})
assert.res_status(204, res)
-- Wait for cache to be invalidated
helpers.wait_until(function()
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("basic-auth", api2.id, nil)
})
res:read_body()
return res.status == 404
end, 3)
-- Consuming the API again without any authorization
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-consumer.com"
}
})
assert.res_status(200, res)
end)
it("should invalidate a plugin when updating", function()
-- Consuming the API without any authorization
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-consumer.com"
}
})
assert.res_status(401, res)
-- Making a request to populate the cache
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-consumer.com",
["Authorization"] = "Basic dXNlcjEyMzpwYXNzMTIz"
}
})
assert.res_status(200, res)
-- Make sure the cache is populated
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("basic-auth", api2.id, nil)
})
assert.res_status(200, res)
-- Update plugin
local res = assert(api_client:send {
method = "PATCH",
path = "/apis/"..api2.id.."/plugins/"..basic_auth2.id,
headers = {
["Content-Type"] = "application/json"
},
body = cjson.encode({
enabled = false
})
})
assert.res_status(200, res)
-- Wait for cache to be invalidated
helpers.wait_until(function()
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("basic-auth", api2.id, nil)
})
res:read_body()
return res.status == 404
end, 3)
-- Consuming the API again without any authorization
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-consumer.com"
}
})
assert.res_status(200, res)
end)
it("should invalidate a consumer-specific plugin when deleting", function()
-- Making a request to populate the cache
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-plugins.com",
["Authorization"] = "Basic dXNlcjEyMzpwYXNzMTIz"
}
})
assert.res_status(200, res)
assert.equal(3, tonumber(res.headers["x-ratelimit-limit-minute"]))
-- Make sure the cache is populated
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("rate-limiting", api3.id, consumer.id)
})
assert.res_status(200, res)
-- Delete plugin
local res = assert(api_client:send {
method = "DELETE",
path = "/apis/"..api3.id.."/plugins/"..rate_limiting_consumer.id
})
assert.res_status(204, res)
-- Wait for cache to be invalidated
helpers.wait_until(function()
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("rate-limiting", api3.id, consumer.id)
})
res:read_body()
return res.status == 404
end, 3)
-- Consuming the API again
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-plugins.com",
["Authorization"] = "Basic dXNlcjEyMzpwYXNzMTIz"
}
})
assert.res_status(200, res)
assert.equal(10, tonumber(res.headers["x-ratelimit-limit-minute"]))
end)
it("should invalidate a consumer-specific plugin when updating", function()
-- Making a request to populate the cache
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-plugins.com",
["Authorization"] = "Basic dXNlcjEyMzpwYXNzMTIz"
}
})
assert.res_status(200, res)
assert.equal(3, tonumber(res.headers["x-ratelimit-limit-minute"]))
-- Make sure the cache is populated
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("rate-limiting", api3.id, consumer.id)
})
assert.res_status(200, res)
-- Update plugin
local res = assert(api_client:send {
method = "PATCH",
path = "/apis/"..api3.id.."/plugins/"..rate_limiting_consumer.id,
headers = {
["Content-Type"] = "application/json"
},
body = cjson.encode({
enabled = false
})
})
assert.res_status(200, res)
-- Wait for cache to be invalidated
helpers.wait_until(function()
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.plugin_key("rate-limiting", api3.id, consumer.id)
})
res:read_body()
return res.status == 404
end, 3)
-- Consuming the API again
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-plugins.com",
["Authorization"] = "Basic dXNlcjEyMzpwYXNzMTIz"
}
})
assert.res_status(200, res)
assert.equal(10, tonumber(res.headers["x-ratelimit-limit-minute"]))
end)
end)
describe("Consumer entity invalidation", function()
it("should invalidate a consumer when deleting", function()
-- Making a request to populate the cache
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-consumer.com",
["Authorization"] = "Basic dXNlcjEyMzpwYXNzMTIz"
}
})
assert.res_status(200, res)
-- Make sure the cache is populated
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.consumer_key(consumer.id)
})
assert.res_status(200, res)
-- Delete consumer
local res = assert(api_client:send {
method = "DELETE",
path = "/consumers/"..consumer.id
})
assert.res_status(204, res)
-- Wait for consumer be invalidated
helpers.wait_until(function()
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.consumer_key(consumer.id)
})
res:read_body()
return res.status == 404
end, 3)
-- Wait for Basic Auth credential to be invalidated
helpers.wait_until(function()
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.basicauth_credential_key("user123")
})
res:read_body()
return res.status == 404
end, 3)
-- Consuming the API again
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-consumer.com",
["Authorization"] = "Basic dXNlcjEyMzpwYXNzMTIz"
}
})
assert.res_status(403, res)
end)
it("should invalidate a consumer when updating", function()
-- Making a request to populate the cache
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-consumer.com",
["Authorization"] = "Basic dXNlcjEyMzpwYXNzMTIz"
}
})
assert.res_status(200, res)
-- Make sure the cache is populated
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.consumer_key(consumer.id)
})
assert.res_status(200, res)
-- Update consumer
local res = assert(api_client:send {
method = "PATCH",
path = "/consumers/"..consumer.id,
headers = {
["Content-Type"] = "application/json"
},
body = cjson.encode({
username = "updated_consumer"
})
})
assert.res_status(200, res)
-- Wait for consumer be invalidated
helpers.wait_until(function()
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.consumer_key(consumer.id)
})
res:read_body()
return res.status == 404
end, 3)
-- Consuming the API again
local res = assert(client:send {
method = "GET",
path = "/status/200",
headers = {
["Host"] = "hooks-consumer.com",
["Authorization"] = "Basic dXNlcjEyMzpwYXNzMTIz"
}
})
assert.res_status(200, res)
-- Making sure the cache is updated
local res = assert(api_client:send {
method = "GET",
path = "/cache/"..cache.consumer_key(consumer.id)
})
local body = assert.res_status(200, res)
assert.equal("updated_consumer", cjson.decode(body).username)
end)
end)
describe("Serf events", function()
local PID_FILE = "/tmp/serf_test.pid"
local LOG_FILE = "/tmp/serf_test.log"
local function kill(pid_file, args)
local cmd = string.format([[kill %s `cat %s` >/dev/null 2>&1]], args or "-0", pid_file)
return os.execute(cmd)
end
local function is_running(pid_path)
if not pl_path.exists(pid_path) then return nil end
local code = kill(pid_path, "-0")
return code == 0
end
local function start_serf()
local args = {
["-node"] = "test_node",
["-bind"] = "127.0.0.1:10000",
["-profile"] = "lan",
["-rpc-addr"] = "127.0.0.1:10001"
}
setmetatable(args, require "kong.tools.printable")
local cmd = string.format("nohup %s agent %s > %s 2>&1 & echo $! > %s",
helpers.test_conf.serf_path,
tostring(args),
LOG_FILE, PID_FILE)
-- start Serf agent
local ok = pl_utils.execute(cmd)
if not ok then return error("Cannot start Serf") end
-- ensure started (just an improved version of previous Serf service)
local start_timeout = 5
local tstart = ngx.time()
local texp, started = tstart + start_timeout
repeat
ngx.sleep(0.2)
started = is_running(PID_FILE)
until started or ngx.time() >= texp
if not started then
-- time to get latest error log from serf.log
local logs = pl_file.read(LOG_FILE)
local tlogs = pl_stringx.split(logs, "\n")
local err = string.gsub(tlogs[#tlogs-1], "==> ", "")
err = pl_stringx.strip(err)
error("could not start Serf:\n "..err)
end
if not ok then error("Error starting serf") end
end
local function stop_serf()
os.execute(string.format("kill `cat %s` >/dev/null 2>&1", PID_FILE))
end
it("should synchronize nodes on members events", function()
start_serf()
-- Tell Kong to join the new Serf
local res = assert(api_client:send {
method = "POST",
path = "/cluster/",
headers = {
["Content-Type"] = "application/json"
},
body = cjson.encode({address = "127.0.0.1:10000"})
})
assert.res_status(200, res)
-- Wait until the node joins
helpers.wait_until(function()
local res = assert(api_client:send {
method = "GET",
path = "/cluster/"
})
local body = cjson.decode(assert.res_status(200, res))
if #body.data == 2 then
local found
for _, v in ipairs(body.data) do
if v.address == "127.0.0.1:10000" then
found = true
assert.equal("test_node", v.name)
assert.equal("alive", v.status)
else
assert.is_string(v.name)
assert.equal("alive", v.status)
end
end
return found
end
end, 5)
-- Killing serf
stop_serf()
-- Wait until the node appears as failed
helpers.wait_until(function()
local res = assert(api_client:send {
method = "GET",
path = "/cluster/"
})
local body = cjson.decode(assert.res_status(200, res))
local found
if #body.data == 2 then
for _, v in ipairs(body.data) do
if v.address == "127.0.0.1:10000" then
if v.name == "test_node" and v.status == "failed" then
found = true
end
else
assert.is_string(v.name)
assert.equal("alive", v.status)
end
end
end
ngx.sleep(1)
return found
end, 60)
finally(function()
stop_serf()
end)
end)
end)
end)
end)