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
|
local test_env = require("spec.util.test_env")
local lfs = require("lfs")
local run = test_env.run
local testing_paths = test_env.testing_paths
local env_variables = test_env.env_variables
test_env.unload_luarocks()
local extra_rocks = {
"/luasocket-3.0rc1-2.src.rock",
"/luasocket-3.0rc1-2.rockspec",
"/lpeg-0.12-1.src.rock",
"/lxsh-0.8.6-2.src.rock",
"/lxsh-0.8.6-2.rockspec"
}
describe("LuaRocks make tests #integration", function()
before_each(function()
test_env.setup_specs(extra_rocks)
end)
it("LuaRocks make 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("make"))
end)
it("LuaRocks make with rockspec", function()
finally(function()
-- delete downloaded and unpacked files
lfs.chdir(testing_paths.testrun_dir)
test_env.remove_dir("luasocket-3.0rc1-2")
os.remove("luasocket-3.0rc1-2.src.rock")
end)
-- make luasocket
assert.is_true(run.luarocks_bool("download --source luasocket 3.0rc1-2"))
assert.is_true(run.luarocks_bool("unpack luasocket-3.0rc1-2.src.rock"))
lfs.chdir("luasocket-3.0rc1-2/luasocket-3.0-rc1/")
assert.is_true(run.luarocks_bool("make luasocket-3.0rc1-2.rockspec"))
-- test it
assert.is_true(run.luarocks_bool("show luasocket"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_rocks .. "/luasocket/3.0rc1-2/luasocket-3.0rc1-2.rockspec"))
end)
describe("LuaRocks making rockspecs (using lxsh)", function()
--download lxsh and unpack it
before_each(function()
assert.is_true(run.luarocks_bool("download --source lxsh 0.8.6-2"))
assert.is_true(run.luarocks_bool("unpack lxsh-0.8.6-2.src.rock"))
assert.is_true(lfs.chdir("lxsh-0.8.6-2/lxsh-0.8.6-1/"))
end)
-- delete downloaded and unpacked files
after_each(function()
assert(lfs.chdir(testing_paths.testrun_dir))
test_env.remove_dir("lxsh-0.8.6-2")
assert.is_true(os.remove("lxsh-0.8.6-2.src.rock"))
end)
it("LuaRocks make default rockspec", function()
assert.is_true(run.luarocks_bool("new_version lxsh-0.8.6-2.rockspec"))
assert.is_true(run.luarocks_bool("make"))
assert.is_true(run.luarocks_bool("show lxsh"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_rocks .. "/lxsh/0.8.6-3/lxsh-0.8.6-3.rockspec"))
end)
it("LuaRocks make unnamed rockspec", function()
finally(function()
os.remove("rockspec")
end)
test_env.copy("lxsh-0.8.6-2.rockspec", "rockspec")
assert.is_true(run.luarocks_bool("make"))
assert.is_true(run.luarocks_bool("show lxsh"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_rocks .. "/lxsh/0.8.6-2/lxsh-0.8.6-2.rockspec"))
end)
it("LuaRocks make ambiguous rockspec", function()
assert.is.truthy(os.rename("lxsh-0.8.6-2.rockspec", "lxsh2-0.8.6-2.rockspec"))
local output = run.luarocks("make")
assert.is.truthy(output:match("Error: Inconsistency between rockspec filename"))
assert.is_false(run.luarocks_bool("show lxsh"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_rocks .. "/lxsh/0.8.6-2/lxsh-0.8.6-2.rockspec"))
end)
it("LuaRocks make ambiguous unnamed rockspec", function()
assert.is.truthy(os.rename("lxsh-0.8.6-2.rockspec", "1_rockspec"))
test_env.copy("1_rockspec", "2_rockspec")
local output = run.luarocks("make")
assert.is.truthy(output:match("Error: Please specify which rockspec file to use"))
assert.is_false(run.luarocks_bool("show lxsh"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_rocks .. "/lxsh/0.8.6-2/lxsh-0.8.6-2.rockspec"))
end)
it("LuaRocks make pack binary rock", function()
assert.is_true(run.luarocks_bool("make --deps-mode=none --pack-binary-rock"))
assert.is.truthy(lfs.attributes("lxsh-0.8.6-2.all.rock"))
end)
end)
describe("#ddt LuaRocks make upgrading rockspecs with double deploy types", function()
local deploy_lib_dir = testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION
local deploy_lua_dir = testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION
local so = test_env.lib_extension
before_each(function()
test_env.copy_dir(testing_paths.fixtures_dir .. "/double_deploy_type", "ddt")
end)
after_each(function()
test_env.remove_dir("ddt")
os.remove("ddt."..test_env.lib_extension)
end)
it("when upgrading", function()
assert.is_true(run.luarocks_bool("make ddt/double_deploy_type-0.1.0-1.rockspec"))
assert.is.truthy(lfs.attributes(deploy_lib_dir.."/ddt."..so))
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt.lua"))
assert.same("ddt1", loadfile(deploy_lua_dir.."/ddt.lua")())
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt_file"))
assert.is.falsy(lfs.attributes(deploy_lib_dir.."/ddt."..so.."~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt.lua~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt_file~"))
assert.is_true(run.luarocks_bool("make ddt/double_deploy_type-0.2.0-1.rockspec"))
assert.is.truthy(lfs.attributes(deploy_lib_dir.."/ddt."..so))
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt.lua"))
assert.same("ddt2", loadfile(deploy_lua_dir.."/ddt.lua")())
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt_file"))
assert.is.falsy(lfs.attributes(deploy_lib_dir.."/ddt."..so.."~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt.lua~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt_file~"))
end)
it("modules with same name from lua/ and lib/ when upgrading with --keep", function()
assert.is_true(run.luarocks_bool("make ddt/double_deploy_type-0.1.0-1.rockspec"))
assert.is.truthy(lfs.attributes(deploy_lib_dir.."/ddt."..so))
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt.lua"))
assert.same("ddt1", loadfile(deploy_lua_dir.."/ddt.lua")())
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt_file"))
assert.is.falsy(lfs.attributes(deploy_lib_dir.."/ddt."..so.."~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt.lua~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt_file~"))
assert.is_true(run.luarocks_bool("make ddt/double_deploy_type-0.2.0-1.rockspec --keep"))
assert.is.truthy(lfs.attributes(deploy_lib_dir.."/ddt."..so))
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt.lua"))
assert.same("ddt2", loadfile(deploy_lua_dir.."/ddt.lua")())
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt_file"))
assert.is.falsy(lfs.attributes(deploy_lib_dir.."/ddt."..so.."~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt.lua~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt_file~"))
assert.is.truthy(lfs.attributes(deploy_lib_dir.."/double_deploy_type_0_1_0_1-ddt."..so))
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/double_deploy_type_0_1_0_1-ddt.lua"))
assert.same("ddt1", loadfile(deploy_lua_dir.."/double_deploy_type_0_1_0_1-ddt.lua")())
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/double_deploy_type_0_1_0_1-ddt_file"))
end)
it("modules with same name from lua/ and lib/ when downgrading", function()
assert.is_true(run.luarocks_bool("make ddt/double_deploy_type-0.2.0-1.rockspec"))
assert.is.truthy(lfs.attributes(deploy_lib_dir.."/ddt."..so))
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt.lua"))
assert.same("ddt2", loadfile(deploy_lua_dir.."/ddt.lua")())
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt_file"))
assert.is.falsy(lfs.attributes(deploy_lib_dir.."/ddt."..so.."~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt.lua~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt_file~"))
assert.is_true(run.luarocks_bool("make ddt/double_deploy_type-0.1.0-1.rockspec"))
assert.is.truthy(lfs.attributes(deploy_lib_dir.."/ddt."..so))
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt.lua"))
assert.same("ddt1", loadfile(deploy_lua_dir.."/ddt.lua")())
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt_file"))
assert.is.falsy(lfs.attributes(deploy_lib_dir.."/ddt."..so.."~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt.lua~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt_file~"))
end)
it("modules with same name from lua/ and lib/ when downgrading with --keep", function()
assert.is_true(run.luarocks_bool("make ddt/double_deploy_type-0.2.0-1.rockspec"))
assert.is.truthy(lfs.attributes(deploy_lib_dir.."/ddt."..so))
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt.lua"))
assert.same("ddt2", loadfile(deploy_lua_dir.."/ddt.lua")())
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt_file"))
assert.is.falsy(lfs.attributes(deploy_lib_dir.."/ddt."..so.."~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt.lua~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt_file~"))
assert.is_true(run.luarocks_bool("make ddt/double_deploy_type-0.1.0-1.rockspec --keep"))
assert.is.truthy(lfs.attributes(deploy_lib_dir.."/ddt."..so))
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt.lua"))
assert.same("ddt2", loadfile(deploy_lua_dir.."/ddt.lua")())
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/ddt_file"))
assert.is.falsy(lfs.attributes(deploy_lib_dir.."/ddt."..so.."~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt.lua~"))
assert.is.falsy(lfs.attributes(deploy_lua_dir.."/ddt_file~"))
assert.is.truthy(lfs.attributes(deploy_lib_dir.."/double_deploy_type_0_1_0_1-ddt."..so))
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/double_deploy_type_0_1_0_1-ddt.lua"))
assert.same("ddt1", loadfile(deploy_lua_dir.."/double_deploy_type_0_1_0_1-ddt.lua")())
assert.is.truthy(lfs.attributes(deploy_lua_dir.."/double_deploy_type_0_1_0_1-ddt_file"))
end)
end)
describe("LuaRocks make upgrading rockspecs with mixed deploy types", function()
before_each(function()
test_env.copy_dir(testing_paths.fixtures_dir .. "/mixed_deploy_type", "mdt")
end)
after_each(function()
test_env.remove_dir("mdt")
os.remove("mdt."..test_env.lib_extension)
end)
it("modules with same name from lua/ and lib/ when upgrading", function()
assert.is_true(run.luarocks_bool("make mdt/mixed_deploy_type-0.1.0-1.rockspec"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mdt.lua"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mdt_file"))
assert.is_true(run.luarocks_bool("make mdt/mixed_deploy_type-0.2.0-1.rockspec"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mdt."..test_env.lib_extension))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mdt_file"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mdt.lua"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mdt_file"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mixed_deploy_type_0_1_0_1-mdt.lua"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mixed_deploy_type_0_1_0_1-mdt_file"))
end)
it("modules with same name from lua/ and lib/ when upgrading with --keep", function()
assert.is_true(run.luarocks_bool("make mdt/mixed_deploy_type-0.1.0-1.rockspec"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mdt.lua"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mdt_file"))
assert.is_true(run.luarocks_bool("make mdt/mixed_deploy_type-0.2.0-1.rockspec --keep"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mdt."..test_env.lib_extension))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mdt_file"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mdt.lua"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mdt_file"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mixed_deploy_type_0_1_0_1-mdt.lua"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mixed_deploy_type_0_1_0_1-mdt_file"))
end)
it("modules with same name from lua/ and lib/ when downgrading", function()
assert.is_true(run.luarocks_bool("make mdt/mixed_deploy_type-0.2.0-1.rockspec"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mdt."..test_env.lib_extension))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mdt_file"))
assert.is_true(run.luarocks_bool("make mdt/mixed_deploy_type-0.1.0-1.rockspec"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mdt."..test_env.lib_extension))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mdt_file"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mixed_deploy_type_0_1_0_1-mdt."..test_env.lib_extension))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mixed_deploy_type_0_1_0_1-mdt_file"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mdt.lua"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mdt_file"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mixed_deploy_type_0_1_0_1-mdt.lua"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mixed_deploy_type_0_1_0_1-mdt_file"))
end)
it("modules with same name from lua/ and lib/ when downgrading with --keep", function()
assert.is_true(run.luarocks_bool("make mdt/mixed_deploy_type-0.2.0-1.rockspec"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mdt."..test_env.lib_extension))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mdt_file"))
assert.is_true(run.luarocks_bool("make mdt/mixed_deploy_type-0.1.0-1.rockspec --keep"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mdt."..test_env.lib_extension))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION.."/mdt_file"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mdt.lua"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mdt_file"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mixed_deploy_type_0_1_0_1-mdt.lua"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/share/lua/"..env_variables.LUA_VERSION.."/mixed_deploy_type_0_1_0_1-mdt_file"))
end)
end)
end)
|