File: proxyunits.lua

package info (click to toggle)
memcached 1.6.39-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,320 kB
  • sloc: ansic: 62,281; perl: 12,500; sh: 4,569; makefile: 468; python: 402; xml: 59
file content (465 lines) | stat: -rw-r--r-- 16,043 bytes parent folder | download | duplicates (2)
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
function mcp_config_pools(oldss)
    local srv = mcp.backend
    mcp.backend_read_timeout(0.5)
    mcp.backend_connect_timeout(5)
    mcp.backend_retry_timeout(5)

    -- Single backend for zones to ease testing.
    -- For purposes of this config the proxy is always "zone 1" (z1)
    local b1 = srv('b1', '127.0.0.1', 11411)
    local b2 = srv('b2', '127.0.0.1', 11412)
    local b3 = srv('b3', '127.0.0.1', 11413)

    local b1z = {b1}
    local b2z = {b2}
    local b3z = {b3}

    local dead = srv('dead', '127.9.9.9', 11011);

    local no_label = srv('', '127.0.0.1', 11414)

    -- convert the backends to pools.
    local zones = {
        z1 = mcp.pool(b1z),
        z2 = mcp.pool(b2z),
        z3 = mcp.pool(b3z),
        dead = mcp.pool({dead}),
        no_label = mcp.pool({no_label})
    }

    return zones
end

-- WORKER CODE:
function new_basic(zones, func)
    local fgen = mcp.funcgen_new()
    local o = { t = {}, c = 0 }

    o.t.z1 = fgen:new_handle(zones.z1)
    o.t.z2 = fgen:new_handle(zones.z2)
    o.t.z3 = fgen:new_handle(zones.z3)
    o.t.dead = fgen:new_handle(zones.dead)
    o.t.no_label = fgen:new_handle(zones.no_label)

    fgen:ready({ f = func, a = o})
    return fgen
end

-- Do specialized testing based on the key prefix.
function mcp_config_routes(zones)
    local map = {}

    map.b = new_basic(zones, function(rctx, a)
        return function(r)
            return rctx:enqueue_and_wait(r, a.t.z1)
        end
    end)

    map.errcheck = new_basic(zones, function(rctx, a)
        return function(r)
            local res = rctx:enqueue_and_wait(r, a.t.z1)
            -- expect an error
            if res:ok() then
                return "FAIL\r\n"
            end
            if res:code() == mcp.MCMC_CODE_ERROR then
                return "ERROR\r\n"
            elseif res:code() == mcp.MCMC_CODE_CLIENT_ERROR then
                return "CLIENT_ERROR\r\n"
            elseif res:code() == mcp.MCMC_CODE_SERVER_ERROR then
                return "SERVER_ERROR\r\n"
            end
            return "FAIL"
        end
    end)

    -- show that we fetched the key by generating our own response string.
    map.getkey = new_basic(zones, function(rctx, a)
        return function(r)
            return "VALUE |" .. r:key() .. " 0 2\r\nts\r\nEND\r\n"
        end
    end)

    map.rtrimkey = new_basic(zones, function(rctx, a)
        return function(r)
            r:rtrimkey(4)
            return rctx:enqueue_and_wait(r, a.t.z1)
        end
    end)

    map.ltrimkey = new_basic(zones, function(rctx, a)
        return function(r)
            r:ltrimkey(10)
            return rctx:enqueue_and_wait(r, a.t.z1)
        end
    end)

    map.nolabel = new_basic(zones, function(rctx, a)
        return function(r)
            return rctx:enqueue_and_wait(r, a.t.no_label)
        end
    end)

    map.ntokens = new_basic(zones, function(rctx, a)
        return function(r)
            return "VA 1 C123 v\r\n" .. r:ntokens() .. "\r\n"
        end
    end)

    map.hasflag = {
        [mcp.CMD_MG] = new_basic(zones, function(rctx, a)
            return function(r)
                if r:has_flag("c") then
                    return "HD C123\r\n"
                elseif r:has_flag("O") then
                    return "HD Oabc\r\n"
                end
                return "NF\r\n"
            end
        end),
        [mcp.CMD_GET] = new_basic(zones, function(rctx, a)
            return function(r)
                if r:has_flag("F") then
                    return "ERROR flag found\r\n"
                end
                return "END\r\n"
            end
        end)
    }

    -- Input flags: N10 k c R10
    -- Output flags: N100 k R100
    map.flagtoken = new_basic(zones, function(rctx, a)
        return function(r)
            -- flag_token on non-existing flags: no effect
            local Ttoken = r:flag_token("T", "T100")
            local Otoken = r:flag_token("O", nil)
            local vtoken = r:flag_token("v", "")
            if vtoken or Otoken or Ttoken then
                return "ERROR found non-existing flag.\r\n"
            end

            -- flag_token to replace: N10 -> N100
            local found, Ntoken = r:flag_token("N", "N100")
            if not found or Ntoken ~= "10" then
                return "ERROR unexpected N token.\r\n"
            end

            -- flag_token with nil 2nd arg: equvalent to fetch
            r:flag_token("k", nil)
            if not r:has_flag("k") then
                return "ERROR unexpected k token.\r\n"
            end

            -- flag_token with self 2nd arg: no effect
            r:flag_token("c", "c")
            if not r:has_flag("c") then
                return "ERROR unexpected c token 1.\r\n"
            end

            -- flag_token with "" 2nd arg: remove
            r:flag_token("c", "")
            if r:has_flag("c") then
                return "ERROR unexpected c token 2.\r\n"
            end

            -- repeated flag_token calls: new value is returned.
            local _, Rtoken = r:flag_token("R", "R100")
            if Rtoken ~= '10' then
                return "ERROR unexpected R token 1.\r\n"
            end
            _, Rtoken = r:flag_token("R", "R100")
            if Rtoken ~= '100' then
                return "ERROR unexpected R token 2.\r\n"
            end

            return "HD\r\n"
        end
    end)

    map.request = {
        [mcp.CMD_MS] = new_basic(zones, function(rctx, a)
            return function(r)
                local key = r:key()
                local newReq = mcp.request("ms /request/edit 2\r\n", "ab\r\n")
                return rctx:enqueue_and_wait(newReq, a.t.z1)
            end
        end),
        [mcp.CMD_MG] = new_basic(zones, function(rctx, a)
            return function(r)
                local key = r:key()
                if key == "/request/old" then
                    local newReq = mcp.request("mg /request/new c\r\n")
                    return rctx:enqueue_and_wait(newReq, a.t.z1)
                else
                    local res = rctx:enqueue_and_wait(r, a.t.z1)
                    local newReq = mcp.request("ms /request/a " .. res:vlen() .. "\r\n", res)
                    return rctx:enqueue_and_wait(newReq, a.t.z2)
                end
            end
        end)
    }

    map.response = {
        [mcp.CMD_GET] = new_basic(zones, function(rctx, a)
            return function(r)
                local res = rctx:enqueue_and_wait(r, a.t.z1)
                local key = r:key()
                if key == "/response/hit" then
                    local hit = res:hit()
                    if hit then
                        return res
                    end
                    return "ERROR hit is false\r\n"
                elseif key == "/response/not_hit" then
                    local hit = res:hit()
                    if not hit then
                        return "SERVER_ERROR\r\n"
                    end
                    return res
                end
                return "ERROR unhandled key\r\n"

            end
        end),
        [mcp.CMD_MG] = new_basic(zones, function(rctx, a)
            return function(r)
                local res = rctx:enqueue_and_wait(r, a.t.z1)
                local key = r:key()
                if key == "/response/elapsed" then
                    local elapsed = res:elapsed()
                    if elapsed > 100000 then
                        return res
                    end
                    return "ERROR elapsed is invalid.\r\n"
                elseif key == "/response/ok" then
                    local ok = res:ok()
                    if ok then
                        return res
                    end
                    return "ERROR ok is false\r\n"
                elseif key == "/response/not_ok" then
                    local ok = res:ok()
                    if not ok then
                        return "SERVER_ERROR\r\n"
                    end
                    return "HD\r\n"
                elseif key == "/response/hit" then
                    local hit = res:hit()
                    if hit then
                        return res
                    end
                    return "ERROR hit is false\r\n"
                elseif key == "/response/not_hit" then
                    local hit = res:hit()
                    if not hit then
                        return "SERVER_ERROR\r\n"
                    end
                    return "HD\r\n"
                elseif key == "/response/vlen" then
                    local vlen = res:vlen()
                    if vlen == 1 then
                        return res
                    end
                    return "ERROR vlen is not 1\r\n"
                elseif key == "/response/code_ok" then
                    local code = res:code()
                    if code == mcp.MCMC_CODE_OK then
                        return res
                    end
                    return "ERROR expect MCMC_CODE_OK, but got " .. code .. "\r\n"
                elseif key == "/response/code_miss" then
                    local code = res:code()
                    if code == mcp.MCMC_CODE_END then
                        return res
                    end
                    return "ERROR expect MCMC_CODE_END, but got " .. code .. "\r\n"
                elseif key == "/response/line" then
                    local line = res:line()
                    if line == "v c123" then
                        return res
                    end
                    return "ERROR unexpected line, got [" .. line .. "]\r\n"
                elseif key == "/response/blank" then
                    res:flag_blank("O")
                    return res
                end
                return "ERROR unhandled key\r\n"

            end
        end),
        [mcp.CMD_MS] = new_basic(zones, function(rctx, a)
            return function(r)
                local key = r:key()
                local res = rctx:enqueue_and_wait(r, a.t.z1)
                local code = res:code()

                if key == "/response/code_ok" then
                    if code == mcp.MCMC_CODE_OK then
                        return res
                    end
                    return "ERROR expect MCMC_CODE_OK, but got " .. code .. "\r\n"
                elseif key == "/response/line" then
                    local line = res:line()
                    if line == "O123 C123" then
                        return res
                    end
                    return "ERROR unexpected line, got [" .. line .. "]\r\n"
                end
                return "ERROR unhandled key\r\n"
            end
        end),
        [mcp.CMD_SET] = new_basic(zones, function(rctx, a)
            return function(r)
                local res = rctx:enqueue_and_wait(r, a.t.z1)
                local key = r:key()
                if key == "/response/code_stored" then
                    local code = res:code()
                    if code == mcp.MCMC_CODE_STORED then
                        return res
                    end
                    return "ERROR expect MCMC_CODE_STORED, but got " .. code .. "\r\n"
                elseif key == "/response/code_exists" then
                    local code = res:code()
                    if code == mcp.MCMC_CODE_EXISTS then
                        return res
                    end
                    return "ERROR expect MCMC_CODE_EXISTS, but got " .. code .. "\r\n"
                elseif key == "/response/code_not_stored" then
                    local code = res:code()
                    if code == mcp.MCMC_CODE_NOT_STORED then
                        return res
                    end
                    return "ERROR expect MCMC_CODE_NOT_STORED, but got " .. code .. "\r\n"
                elseif key == "/response/code_not_found" then
                    local code = res:code()
                    if code == mcp.MCMC_CODE_NOT_FOUND then
                        return res
                    end
                    return "ERROR expect MCMC_CODE_NOT_FOUND, but got " .. code .. "\r\n"
                end
                return "ERROR unhandled key\r\n"
            end
        end),
        [mcp.CMD_TOUCH] = new_basic(zones, function(rctx, a)
            return function(r)
                local res = rctx:enqueue_and_wait(r, a.t.z1)
                local key = r:key()
                local code = res:code()
                if code == mcp.MCMC_CODE_TOUCHED then
                    return res
                end
                return "ERROR expect MCMC_CODE_TOUCHED, but got " .. code .. "\r\n"
            end
        end),
        [mcp.CMD_DELETE] = new_basic(zones, function(rctx, a)
            return function(r)
                local res = rctx:enqueue_and_wait(r, a.t.z1)
                local key = r:key()
                local code = res:code()
                if code == mcp.MCMC_CODE_DELETED then
                    return res
                end
                return "ERROR expect MCMC_CODE_DELETED, but got " .. code .. "\r\n"
            end
        end),
    }

    map.token = new_basic(zones, function(rctx, a)
        return function(r)
            local key = r:key()
            if key == "/token/replacement" then
                r:token(4, "C456")
            elseif key == "/token/removal" then
                r:token(4, "")
            else
                local token = r:token(2)
                r:flag_token("P", "P" .. token)
            end
            return rctx:enqueue_and_wait(r, a.t.z1)
        end
    end)

    map.zonetest = new_basic(zones, function(rctx, a)
        return function(r)
            local key = r:key()
            if key == "/zonetest/a" then
                return rctx:enqueue_and_wait(r, a.t.z1)
            elseif key == "/zonetest/b" then
                return rctx:enqueue_and_wait(r, a.t.z2)
            elseif key == "/zonetest/c" then
                return rctx:enqueue_and_wait(r, a.t.z3)
            else
                return "END\r\n"
            end
        end
    end)

    map.logtest = new_basic(zones, function(rctx, a)
        return function(r)
            mcp.log("testing manual log messages")
            return "END\r\n"
        end
    end)

    map.logreqtest = new_basic(zones, function(rctx, a)
        return function(r)
            local res = rctx:enqueue_and_wait(r, a.t.z1)
            mcp.log_req(r, res, "logreqtest")
            return res
        end
    end)

    map.logreqstest = new_basic(zones, function(rctx, a)
        return function(r)
            local res = rctx:enqueue_and_wait(r, a.t.z1)
            mcp.log_reqsample(150, 0, true, r, res, "logsampletest")
            return res
        end
    end)

    map.sanity = new_basic(zones, function(rctx, a)
        local z = {a.t.z1, a.t.z2, a.t.z3}
        return function(r)
            rctx:enqueue(r, z)
            rctx:wait_cond(3)
            return rctx:result(a.t.z3)
        end
    end)

    map.dead = new_basic(zones, function(rctx, a)
        return function(r)
            return rctx:enqueue_and_wait(r, a.t.dead)
        end
    end)

    map.deadrespcode = new_basic(zones, function(rctx, a)
        return function(r)
            local res = rctx:enqueue_and_wait(r, a.t.dead)
            if res:code() == mcp.MCMC_CODE_SERVER_ERROR then
             return "ERROR code_correct\r\n"
            end
            return "ERROR code_incorrect: " .. res:code() .. "\r\n"
        end
    end)

    map.millis = new_basic(zones, function(rctx, a)
        return function(r)
            local time = mcp.time_real_millis()
            return "HD t" .. time .. "\r\n"
        end
    end)

    local def_fg = mcp.funcgen_new()
    def_fg:ready({
        f = function(rctx)
            return function(r)
                return "SERVER_ERROR no set route\r\n"
            end
        end
    })

    mcp.attach(mcp.CMD_ANY_STORAGE, mcp.router_new({
    map = map, mode = "anchor", start = "/", stop = "/", default = def_fg
    }))
end