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
|
local test_env = require("spec.util.test_env")
local lfs = require("lfs")
local get_tmp_path = test_env.get_tmp_path
local run = test_env.run
local testing_paths = test_env.testing_paths
local write_file = test_env.write_file
test_env.unload_luarocks()
local extra_rocks = {
"/busted-2.0.0-1.rockspec",
"/lua_cliargs-3.0-1.src.rock",
"/luafilesystem-1.7.0-2.src.rock",
"/luasystem-0.2.1-0.src.rock",
"/dkjson-2.5-2.src.rock",
"/say-1.3-1.rockspec",
"/luassert-1.8.0-0.rockspec",
"/lua-term-0.7-1.rockspec",
"/penlight-1.5.4-1.rockspec",
"/mediator_lua-1.1.2-0.rockspec",
}
describe("luarocks test #integration", function()
before_each(function()
test_env.setup_specs(extra_rocks)
end)
it("fails with no flags/arguments", function()
finally(function()
lfs.chdir(testing_paths.testrun_dir)
test_env.remove_dir("empty")
end)
assert(lfs.mkdir("empty"))
assert(lfs.chdir("empty"))
assert.is_false(run.luarocks_bool("test"))
end)
describe("busted backend", function()
lazy_setup(function()
-- Try to cache rocks from the host system to speed up test
for _, r in ipairs(extra_rocks) do
local n, v = r:match("^/(.*)%-([^%-]+)%-%d+%.[^%-]+$")
os.execute("luarocks pack " .. n .. " " .. v)
end
if test_env.TEST_TARGET_OS == "windows" then
os.execute("move *.rock " .. testing_paths.testing_server)
else
os.execute("mv *.rock " .. testing_paths.testing_server)
end
test_env.run.luarocks_admin_nocov("make_manifest " .. testing_paths.testing_server)
end)
it("with rockspec, installing busted", function()
finally(function()
-- delete downloaded and unpacked files
lfs.chdir(testing_paths.testrun_dir)
test_env.remove_dir("busted_project-0.1-1")
os.remove("busted_project-0.1-1.src.rock")
end)
-- make luassert
assert.is_true(run.luarocks_bool("download --server="..testing_paths.fixtures_repo_dir.." busted_project 0.1-1"))
assert.is_true(run.luarocks_bool("unpack busted_project-0.1-1.src.rock"))
lfs.chdir("busted_project-0.1-1/busted_project")
assert.is_true(run.luarocks_bool("make"))
local output = run.luarocks("test")
print(output)
-- Assert that busted ran, whether successfully or not
assert.match("%d+ success.* / %d+ failure.* / %d+ error.* / %d+ pending", output)
end)
it("prepare", function()
finally(function()
-- delete downloaded and unpacked files
lfs.chdir(testing_paths.testrun_dir)
test_env.remove_dir("busted_project-0.1-1")
os.remove("busted_project-0.1-1.src.rock")
end)
-- make luassert
assert.is_true(run.luarocks_bool("download --server="..testing_paths.fixtures_repo_dir.." busted_project 0.1-1"))
assert.is_true(run.luarocks_bool("unpack busted_project-0.1-1.src.rock"))
lfs.chdir("busted_project-0.1-1/busted_project")
assert.is_true(run.luarocks_bool("make"))
run.luarocks_bool("remove busted")
local prepareOutput = run.luarocks_bool("test --prepare")
assert.is_true(run.luarocks_bool("show busted"))
-- Assert that "test --prepare" run successfully
assert.is_true(prepareOutput)
local output = run.luarocks("test")
assert.not_match(tostring(prepareOutput), output)
end)
end)
end)
test_env.unload_luarocks()
local fs = require("luarocks.fs")
local cfg = require("luarocks.core.cfg")
local path = require("luarocks.path")
local test = require("luarocks.test")
local test_busted = require("luarocks.test.busted")
local test_command = require("luarocks.test.command")
describe("LuaRocks test #unit", function()
local runner
lazy_setup(function()
cfg.init()
fs.init()
runner = require("luacov.runner")
runner.init(testing_paths.testrun_dir .. "/luacov.config")
runner.tick = true
end)
lazy_teardown(function()
runner.shutdown()
end)
local tmpdir
local olddir
local create_tmp_dir = function()
tmpdir = get_tmp_path()
olddir = lfs.currentdir()
lfs.mkdir(tmpdir)
lfs.chdir(tmpdir)
fs.change_dir(tmpdir)
end
local destroy_tmp_dir = function()
if olddir then
lfs.chdir(olddir)
if tmpdir then
lfs.rmdir(tmpdir)
end
end
end
describe("test.command", function()
describe("command.detect_type", function()
before_each(function()
create_tmp_dir()
end)
after_each(function()
destroy_tmp_dir()
end)
it("returns true if test.lua exists", function()
write_file("test.lua", "", finally)
assert.truthy(test_command.detect_type())
end)
it("returns false if test.lua doesn't exist", function()
assert.falsy(test_command.detect_type())
end)
end)
describe("command.run_tests", function()
before_each(function()
create_tmp_dir()
end)
after_each(function()
destroy_tmp_dir()
end)
it("returns the result of the executed tests", function()
write_file("test.lua", "assert(1==1)", finally)
assert.truthy(test_command.run_tests(nil, {}))
write_file("test.lua", "assert(1==2)", finally)
assert.falsy(test_command.run_tests(nil, {}))
end)
it("returns the result of the executed tests with custom arguments and test command", function()
write_file("test.lua", "assert(1==1)", finally)
local test = {
script = "test.lua",
flags = {
arg1 = "1",
arg2 = "2"
},
command = fs.Q(testing_paths.lua)
}
assert.truthy(test_command.run_tests(test, {}))
end)
it("returns false and does nothing if the test script doesn't exist", function()
assert.falsy(test_command.run_tests(nil, {}))
end)
end)
end)
describe("test.busted", function()
describe("busted.detect_type", function()
before_each(function()
create_tmp_dir()
end)
after_each(function()
destroy_tmp_dir()
end)
it("returns true if .busted exists", function()
write_file(".busted", "", finally)
assert.truthy(test_busted.detect_type())
end)
it("returns false if .busted doesn't exist", function()
assert.falsy(test_busted.detect_type())
end)
end)
describe("busted.run_tests", function()
before_each(function()
path.use_tree(testing_paths.testing_sys_tree)
create_tmp_dir()
end)
after_each(function()
destroy_tmp_dir()
end)
pending("returns the result of the executed tests", function()
-- FIXME: busted issue
write_file("test_spec.lua", "assert(1==1)", finally)
assert.truthy(test_busted.run_tests(nil, {}))
write_file("test_spec.lua", "assert(1==2)", finally)
assert.falsy(test_busted.run_tests())
end)
end)
end)
describe("test", function()
describe("test.run_test_suite", function()
before_each(function()
create_tmp_dir()
end)
after_each(function()
destroy_tmp_dir()
end)
it("returns false if the given rockspec cannot be loaded", function()
assert.falsy(test.run_test_suite("invalid", nil, {}))
end)
it("returns false if no test type was detected", function()
assert.falsy(test.run_test_suite({ package = "test" }, nil, {}))
end)
it("returns the result of executing the tests specified in the given rockspec", function()
write_file("test.lua", "assert(1==1)", finally)
assert.truthy(test.run_test_suite({ test_dependencies = {} }, nil, {}))
write_file("test.lua", "assert(1==2)", finally)
assert.falsy(test.run_test_suite({ test_dependencies = {} }, nil, {}))
end)
end)
end)
end)
|