-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.lua
289 lines (237 loc) · 5.43 KB
/
test.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
--[[
Tests for Callisto
Run with:
./csto test.lua
A test should use the smallest amount of functions possible,
and should not rely on facilities such as os.execute to complete
its task. Using functions in the same library is acceptable, but
Callisto facilities in different libraries should not be used.
Licensed to the public domain
]]--
local oldenv = _ENV
local function test(f)
local _ENV = oldenv
local function mesg(...)
io.stdout:write(..., '\n')
end
assert(type(f) == "function")
mesg(f())
end
-- Table containing tests for each library.
-- The cl library is excluded from here as it is almost
-- impossible to test without user interaction.
local tests = {
environ = {
getvar = function ()
local var = "HOME"
assert(environ[var])
return 'environ["' .. var .. '"] ~= nil'
end,
setvar = function ()
local var = "VAR"
local val = "hello"
environ[var] = val
assert(environ[var] == "hello")
return 'environ["' .. var .. '"] = "' .. val .. '"'
end,
pairs = function ()
local ev = {}
local var = "VAR"
environ[var] = "1"
for env in pairs(environ) do
ev[env] = environ[env]
end
assert(ev[var] == "1")
return "pairs(environ)"
end
},
extra = {
},
fs = {
copy = function ()
local src, dst = "testfile", "testfile.cp"
local contents = "hello, world!"
local f, err = io.open(src, 'w')
assert(f, err)
f:write(contents)
f:close()
assert(fs.copy(src, dst))
assert(io.input(dst):read('a') == contents)
assert(fs.remove(src))
assert(fs.remove(dst))
return 'fs.copy("' .. src .. '", "' .. dst .. '")'
end,
directory = function ()
local dir, subdir = "testdir", "testdir/sub"
assert(fs.mkdir(dir))
assert(fs.exists(dir) and fs.isdirectory(dir))
assert(fs.rmdir(dir))
assert(fs.mkdir(subdir, true))
assert(fs.exists(dir))
assert(fs.isdirectory(dir))
assert(fs.exists(subdir))
assert(fs.isdirectory(subdir))
assert(fs.rmdir(subdir))
assert(fs.rmdir(dir))
return ([[
fs.mkdir("%s")
fs.rmdir("%s")
fs.mkdir("%s", true)
fs.rmdir("%s"")
fs.rmdir("%s")]]):format(
dir,
dir,
subdir,
subdir,
dir
)
end,
move = function ()
local src, dst = "testfile", "testfile.new"
local contents = "hello, world!"
local f, err = io.open(src, 'w')
assert(f, err)
f:write(contents)
f:close()
assert(fs.move(src, dst))
assert(io.input(dst):read('a') == contents)
assert(fs.remove(dst))
return 'fs.move("' .. src .. '", "' .. dst .. '")'
end,
path = function ()
local bpath, base = "/etc/fstab", "fstab"
local dpath, dir = "/usr/local/bin", "/usr/local"
assert(fs.basename(bpath) == base)
assert(fs.dirname(dpath) == dir)
return 'fs.basename("' .. bpath .. [[")
fs.dirname("]] .. dpath .. '")'
end,
remove = function ()
local file = "testfile"
local f, err = io.open(file, 'w')
assert(f, err)
f:write("")
f:close()
assert(fs.remove(file))
return 'fs.remove("' .. file .. '")'
end,
workdir = function ()
local d = "/usr"
local wd = fs.workdir()
fs.workdir(d)
assert(fs.workdir() == d)
fs.workdir(wd)
assert(fs.workdir() == wd)
return 'fs.workdir("' .. d .. '")'
end
},
-- basic tests for lua-cjson; this is not
-- my library so I won't test it extensively
json = {
decode = function()
local o = [[
"hello": "world",
"n": 4,
"fpn": 2.4444449,
"a": [1, 2, 4, 8, 16]
]]
local j = [[
{
]] .. o .. [[,
"o": {
]] .. o .. [[
}
}
]]
local t = json.decode(j)
for _, t in ipairs {t, t.o} do
assert(t.hello == "world")
assert(t.n == 4)
assert(t.fpn == 2.4444449)
assert(t.a[1] == 1)
assert(t.a[2] == 2)
assert(t.a[3] == 4)
assert(t.a[4] == 8)
assert(t.a[5] == 16)
end
return "json.decode('" .. j:gsub("%s", "") .. "')"
end,
encode = function()
local o = {
hello = "world",
n = 4,
fpn = 2.4444449,
a = {1, 2, 4, 8, 16}
}
local j = json.encode(o)
local t = json.decode(j)
assert(t.hello == "world")
assert(t.n == 4)
assert(t.fpn == 2.4444449)
assert(t.a[1] == 1)
assert(t.a[2] == 2)
assert(t.a[3] == 4)
assert(t.a[4] == 8)
assert(t.a[5] == 16)
return "json.decode(json.encode({...}))"
end
},
os = {
hostname = function ()
assert(os.hostname())
return "os.hostname()"
end
},
process = {
pid = function ()
assert(math.type(process.pid()) == "integer")
return "process.pid()"
end,
pidof = function ()
local proc = "csto"
assert(math.type(process.pidof(proc)) == "integer")
return 'process.pidof("' .. proc .. '")'
end,
signum = function ()
local sig = "SIGKILL"
-- probably signal no.9
assert(math.type(process.signum(sig)) == "integer")
return 'process.signum("' .. sig .. '")'
end,
send = function ()
local hdl = io.popen("sleep 8")
local pid = process.pidof("sleep")
assert(process.send(pid, "SIGKILL"))
hdl:close()
return "process.send(" .. tostring(pid) .. ', "SIGKILL")'
end
}
}
-- Run all tests.
do
local env = tests
env.test = test
local _ENV = env
-- environ
test(environ.getvar)
test(environ.setvar)
test(environ.pairs)
-- fs
test(fs.copy)
test(fs.directory)
test(fs.move)
test(fs.path)
test(fs.remove)
test(fs.workdir)
-- json
test(json.decode)
test(json.encode)
-- os
test(os.hostname)
-- process
test(process.pid)
test(process.pidof)
test(process.signum)
test(process.send)
end
cl.mesg("all tests completed successfully")