-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_util.lua
169 lines (134 loc) · 4.6 KB
/
test_util.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
--
-- Copyright 2010, Cloudkick, Inc.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
module(..., package.seeall);
local lanes = require 'lanes'
local util = require 'util'
local buffer = alien.buffer(1024)
local getcwd = alien.default.getcwd
local error_msg = alien.buffer()
getcwd:types('string', 'string', 'int')
buffer = getcwd(error_msg, 1024)
local cwd = tostring(buffer)
local local_plugins_path_default = cwd .. '/tests/'
local munin_plugins_path_default = cwd .. '/tests/'
local function get_conf_object(local_plugins_path, munin_plugins_path)
local local_plugins_path = local_plugins_path or local_plugins_path_default
local munin_plugins_path = munin_plugins_path or munin_plugins_path_default
local conf = {}
conf.local_plugins_path = local_plugins_path
conf.munin_plugins_path = munin_plugins_path
return conf
end
function get_check_module(check_name, local_plugins_path, munin_plugins_path)
local rv, check = pcall(require, check_name)
if rv then
check.conf = get_conf_object(local_plugins_path, munin_plugins_path)
end
return rv, check
end
local function _run_test_tcp_server(ip, port, timeout, mode, mappings)
local ip = ip or '*'
local timeout = timeout or .01
local mode = mode or 'line'
local mappings = mappings or {}
local func = lanes.gen({ cancelstep = true}, function()
local client, line, err, command, response
socket = require 'socket'
local server = assert(socket.bind(ip, port))
local parse_line = function(line, client)
line = util.trim(line)
if util.table.contains(mappings, line, 'key') then
response = mappings[line]
client:send(response)
return true
end
return false
end
while true do
local client = server:accept()
local buffer = ''
local match = false
client:settimeout(timeout)
line, err = client:receive('*l')
while line do
if mode == 'line' then
if not err then
if parse_line(line, client) then
-- Match found, close the connection
client:close()
end
else
client:close()
end
end
buffer = buffer .. line .. '\n'
line, err = client:receive('*l')
end
if mode == 'line' then
client:close()
elseif mode == 'http' then
local buffer_lower = buffer:lower()
for key,value in pairs(mappings) do
local match_pattern = value['match_pattern']:lower()
if string.find(buffer_lower, match_pattern) ~= nil then
match = true
local response = value['response']
local response_len = string.len(response)
local header = 'HTTP/1.1 ' .. value['status_line'] .. '\n' ..
'Content-type: ' .. value['content_type'] .. '\n' ..
'Content-Length: ' .. response_len .. '\n\n'
client:send(header .. response)
break
end
end
end
if not match then
client:send('HTTP/1.1 404 Not found\n\n')
end
client:close()
end
end)
local lane = func()
-- Wait until the lane is running
while lane.status ~= 'running' do
end
return lane
end
function run_test_http_server(ip, port, timeout, routes)
local content
for key,value in pairs(routes) do
if value['file'] ~= nil then
local path = cwd .. '/tests/' .. value['file']
local file = assert(io.open(path, 'r'))
content = file:read('*a')
file:close()
else
content = value['response']
end
routes[key] = { ['match_pattern'] = value['method']:upper() .. ' ' .. key,
['status_line'] = value['status_line'],
['content_type'] = value['content_type'],
['response'] = content }
end
return _run_test_tcp_server(ip, port, timeout, 'http', routes)
end
function run_test_tcp_server(ip, port, timeout, command_mappings)
return _run_test_tcp_server(ip, port, timeout, 'line', command_mappings)
end
function kill_test_server(lane, timeout)
local timeout = timeout or 0
lane:cancel(timeout, true)
end