aboutsummaryrefslogtreecommitdiff
path: root/spec/quick/build.q
blob: d0d6a890ea615f74c88b350d03b02bf52f4cc19d (plain)
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
SUITE: luarocks build

================================================================================
TEST: fails when given invalid argument
RUN: luarocks build aoesuthaoeusahtoeustnaou --only-server=localhost
EXIT: 1
STDERR:
--------------------------------------------------------------------------------
Could not find a result named aoesuthaoeusahtoeustnaou
--------------------------------------------------------------------------------



================================================================================
TEST: with no arguments behaves as luarocks make

FILE: c_module-1.0-1.rockspec
--------------------------------------------------------------------------------
package = "c_module"
version = "1.0-1"
source = {
   url = "http://example.com/c_module"
}
build = {
   type = "builtin",
   modules = {
      c_module = { "c_module.c" }
   }
}
--------------------------------------------------------------------------------
FILE: c_module.c
--------------------------------------------------------------------------------
#include <lua.h>
#include <lauxlib.h>

int luaopen_c_module(lua_State* L) {
  lua_newtable(L);
  lua_pushinteger(L, 1);
  lua_setfield(L, -2, "c_module");
  return 1;
}
--------------------------------------------------------------------------------
RUN: luarocks build
EXISTS: c_module.%{lib_extension}



================================================================================
TEST: defaults to builtin type

FILE: a_rock-1.0-1.rockspec
--------------------------------------------------------------------------------
rockspec_format = "3.0"
package = "a_rock"
version = "1.0-1"
source = {
   url = "file://%{url(%{fixtures_dir})}/a_rock.lua"
}
description = {
   summary = "An example rockspec",
}
dependencies = {
   "lua >= 5.1"
}
build = {
   modules = {
      build = "a_rock.lua"
   },
}
--------------------------------------------------------------------------------
RUN: luarocks build a_rock-1.0-1.rockspec
RUN: luarocks show a_rock
STDOUT:
--------------------------------------------------------------------------------
a_rock 1.0
--------------------------------------------------------------------------------


================================================================================
TEST: fails if no permissions to access the specified tree #unix

RUN: luarocks build --tree=/usr ./a_rock-1.0-1.rockspec
EXIT: 2
STDERR:
--------------------------------------------------------------------------------
You may want to run as a privileged user,
or use --local to install into your local tree
or run 'luarocks config local_by_default true' to make --local the default.

(You may need to configure your Lua package paths
to use the local tree, see 'luarocks path --help')
--------------------------------------------------------------------------------

We show the OS permission denied error, so we don't show the --force-lock
message.

NOT_STDERR:
--------------------------------------------------------------------------------
try --force-lock
--------------------------------------------------------------------------------

NOT_EXISTS: %{testing_sys_rocks}/a_rock/1.0-1/a_rock-1.0-1.rockspec



================================================================================
TEST: fails if tree is locked, --force-lock overrides #unix

FILE: a_rock-1.0-1.rockspec
--------------------------------------------------------------------------------
rockspec_format = "3.0"
package = "a_rock"
version = "1.0-1"
source = {
   url = "file://%{url(%{fixtures_dir})}/a_rock.lua"
}
description = {
   summary = "An example rockspec",
}
dependencies = {
   "lua >= 5.1"
}
build = {
   modules = {
      build = "a_rock.lua"
   },
}
--------------------------------------------------------------------------------

FILE: %{testing_tree}/lockfile.lfs
--------------------------------------------------------------------------------
dummy lock file for testing
--------------------------------------------------------------------------------

RUN: luarocks build --tree=%{testing_tree} ./a_rock-1.0-1.rockspec
EXIT: 4
STDERR:
--------------------------------------------------------------------------------
requires exclusive write access
try --force-lock
--------------------------------------------------------------------------------

RUN: luarocks build --tree=%{testing_tree} ./a_rock-1.0-1.rockspec --force-lock
EXIT: 0



================================================================================
TEST: fails if no permissions to access the parent #unix

RUN: luarocks build --tree=/usr/invalid ./a_rock-1.0-1.rockspec
EXIT: 2
STDERR:
--------------------------------------------------------------------------------
Error: /usr/invalid/lib/luarocks/rocks-%{lua_version} does not exist
and your user does not have write permissions in /usr

You may want to run as a privileged user,
or use --local to install into your local tree
or run 'luarocks config local_by_default true' to make --local the default.

(You may need to configure your Lua package paths
to use the local tree, see 'luarocks path --help')
--------------------------------------------------------------------------------

We show the OS permission denied error, so we don't show the --force-lock
message.

NOT_STDERR:
--------------------------------------------------------------------------------
try --force-lock
--------------------------------------------------------------------------------

NOT_EXISTS: %{testing_sys_rocks}/a_rock/1.0-1/a_rock-1.0-1.rockspec



================================================================================
TEST: luarocks build: do not rebuild when already installed

FILE: a_rock-1.0-1.rockspec
--------------------------------------------------------------------------------
rockspec_format = "3.0"
package = "a_rock"
version = "1.0-1"
source = {
   url = "file://%{url(%{fixtures_dir})}/a_rock.lua"
}
description = {
   summary = "An example rockspec",
}
dependencies = {
   "lua >= 5.1"
}
build = {
   modules = {
      build = "a_rock.lua"
   },
}
--------------------------------------------------------------------------------
RUN: luarocks build a_rock-1.0-1.rockspec

RUN: luarocks show a_rock
STDOUT:
--------------------------------------------------------------------------------
a_rock 1.0
--------------------------------------------------------------------------------

RUN: luarocks build a_rock-1.0-1.rockspec
STDOUT:
--------------------------------------------------------------------------------
a_rock 1.0-1 is already installed
Use --force to reinstall
--------------------------------------------------------------------------------


RUN: luarocks build a_rock-1.0-1.rockspec --force
NOT_STDOUT:
--------------------------------------------------------------------------------
a_rock 1.0-1 is already installed
Use --force to reinstall
--------------------------------------------------------------------------------



================================================================================
TEST: supports --pin #pinning

FILE: test-1.0-1.rockspec
--------------------------------------------------------------------------------
package = "test"
version = "1.0-1"
source = {
   url = "file://%{url(%{tmpdir})}/test.lua"
}
dependencies = {
   "a_rock >= 0.8"
}
build = {
   type = "builtin",
   modules = {
      test = "test.lua"
   }
}
--------------------------------------------------------------------------------

FILE: test.lua
--------------------------------------------------------------------------------
return {}
--------------------------------------------------------------------------------

RUN: luarocks build --only-server=%{fixtures_dir}/a_repo test-1.0-1.rockspec --pin --tree=lua_modules

EXISTS: ./lua_modules/lib/luarocks/rocks-%{lua_version}/test/1.0-1/test-1.0-1.rockspec
EXISTS: ./lua_modules/lib/luarocks/rocks-%{lua_version}/a_rock/2.0-1/a_rock-2.0-1.rockspec

EXISTS: ./lua_modules/lib/luarocks/rocks-%{lua_version}/test/1.0-1/luarocks.lock

FILE_CONTENTS: ./lua_modules/lib/luarocks/rocks-%{lua_version}/test/1.0-1/luarocks.lock
--------------------------------------------------------------------------------
return {
   dependencies = {
      a_rock = "2.0-1",
      lua = "%{lua_version}-1"
   }
}
--------------------------------------------------------------------------------



================================================================================
TEST: supports --pin --only-deps #pinning

FILE: test-1.0-1.rockspec
--------------------------------------------------------------------------------
package = "test"
version = "1.0-1"
source = {
   url = "file://%{url(%{tmpdir})}/test.lua"
}
dependencies = {
   "a_rock >= 0.8"
}
build = {
   type = "builtin",
   modules = {
      test = "test.lua"
   }
}
--------------------------------------------------------------------------------

FILE: test.lua
--------------------------------------------------------------------------------
return {}
--------------------------------------------------------------------------------

RUN: luarocks build --only-server=%{fixtures_dir}/a_repo test-1.0-1.rockspec --pin --only-deps --tree=lua_modules

NOT_EXISTS: ./lua_modules/lib/luarocks/rocks-%{lua_version}/test/1.0-1/test-1.0-1.rockspec
EXISTS: ./lua_modules/lib/luarocks/rocks-%{lua_version}/a_rock/2.0-1/a_rock-2.0-1.rockspec

EXISTS: ./luarocks.lock

FILE_CONTENTS: ./luarocks.lock
--------------------------------------------------------------------------------
return {
   dependencies = {
      a_rock = "2.0-1",
      lua = "%{lua_version}-1"
   }
}
--------------------------------------------------------------------------------



================================================================================
TEST: installs bin entries correctly

FILE: test-1.0-1.rockspec
--------------------------------------------------------------------------------
package = "test"
version = "1.0-1"
source = {
   url = "file://%{url(%{fixtures_dir})}/an_upstream_tarball-0.1.tar.gz",
   dir = "an_upstream_tarball-0.1",
}
build = {
   type = "builtin",
   modules = {
      my_module = "src/my_module.lua"
   },
   install = {
      bin = {
         "src/my_module.lua"
      }
   }
}
--------------------------------------------------------------------------------

RUN: luarocks build test-1.0-1.rockspec --tree=lua_modules

RM: %{fixtures_dir}/bin/something.lua

EXISTS: ./lua_modules/lib/luarocks/rocks-%{lua_version}/test/1.0-1/test-1.0-1.rockspec

FILE_CONTENTS: ./lua_modules/lib/luarocks/rocks-%{lua_version}/test/1.0-1/rock_manifest
--------------------------------------------------------------------------------
rock_manifest = {
   bin = {
      ["my_module.lua"] = "25884dbf5be7114791018a48199d4c04"
   },
   lua = {
      ["my_module.lua"] = "25884dbf5be7114791018a48199d4c04"
   },
   ["test-1.0-1.rockspec"] =
}
--------------------------------------------------------------------------------

EXISTS: ./lua_modules/bin/my_module.lua%{wrapper_extension}



================================================================================
TEST: downgrades directories correctly

FILE: mytest-1.0-1.rockspec
--------------------------------------------------------------------------------
rockspec_format = "3.0"
package = "mytest"
version = "1.0-1"
source = {
   url = "file://%{url(%{fixtures_dir})}/an_upstream_tarball-0.1.tar.gz",
   dir = "an_upstream_tarball-0.1",
}
build = {
   modules = {
      ["parent.child.my_module"] = "src/my_module.lua"
   },
}
--------------------------------------------------------------------------------

FILE: mytest-2.0-1.rockspec
--------------------------------------------------------------------------------
rockspec_format = "3.0"
package = "mytest"
version = "2.0-1"
source = {
   url = "file://%{url(%{fixtures_dir})}/an_upstream_tarball-0.1.tar.gz",
   dir = "an_upstream_tarball-0.1",
}
build = {
   modules = {
      ["parent.child.my_module"] = "src/my_module.lua"
   },
}
--------------------------------------------------------------------------------

RUN: luarocks build ./mytest-2.0-1.rockspec
EXISTS: %{testing_sys_tree}/share/lua/%{lua_version}/parent/child/my_module.lua

RUN: luarocks build ./mytest-1.0-1.rockspec
EXISTS: %{testing_sys_tree}/share/lua/%{lua_version}/parent/child/my_module.lua

RUN: luarocks build ./mytest-2.0-1.rockspec
EXISTS: %{testing_sys_tree}/share/lua/%{lua_version}/parent/child/my_module.lua