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
|
local test_env = require("spec.util.test_env")
local lfs = require("lfs")
local run = test_env.run
local testing_paths = test_env.testing_paths
test_env.unload_luarocks()
local extra_rocks = {
"/luasec-0.6-1.rockspec",
"/luassert-1.7.0-1.src.rock",
"/luasocket-3.0rc1-2.src.rock",
"/luasocket-3.0rc1-2.rockspec",
"/say-1.2-1.src.rock",
"/say-1.0-1.src.rock"
}
describe("LuaRocks pack #integration", function()
before_each(function()
test_env.setup_specs(extra_rocks)
end)
it("with no flags/arguments", function()
assert.is_false(run.luarocks_bool("pack"))
end)
it("basic", function()
assert(run.luarocks_bool("pack luacov"))
assert(test_env.remove_files(lfs.currentdir(), "luacov%-"))
end)
it("invalid rockspec", function()
assert.is_false(run.luarocks_bool("pack " .. testing_paths.fixtures_dir .. "/invalid_validate-args-1.5.4-1.rockspec"))
end)
it("not installed rock", function()
assert.is_false(run.luarocks_bool("pack cjson"))
end)
it("not installed rock from non existing manifest", function()
assert.is_false(run.luarocks_bool("pack /non/exist/temp.manif"))
end)
it("detects latest version version of rock", function()
assert(run.luarocks_bool("install say 1.2"))
assert(run.luarocks_bool("install luassert"))
assert(run.luarocks_bool("install say 1.0"))
assert(run.luarocks_bool("pack say"))
assert.is_truthy(lfs.attributes("say-1.2-1.all.rock"))
assert(test_env.remove_files(lfs.currentdir(), "say%-"))
end)
pending("#gpg --sign", function()
assert(run.luarocks_bool("install say 1.2"))
assert(run.luarocks_bool("install luassert"))
assert(run.luarocks_bool("install say 1.0"))
os.delete("say-1.2-1.all.rock")
os.delete("say-1.2-1.all.rock.asc")
assert(run.luarocks_bool("pack say --sign"))
assert.is_truthy(lfs.attributes("say-1.2-1.all.rock"))
assert.is_truthy(lfs.attributes("say-1.2-1.all.rock.asc"))
assert(test_env.remove_files(lfs.currentdir(), "say%-"))
end)
describe("#mock", function()
setup(function()
test_env.mock_server_init()
end)
teardown(function()
test_env.mock_server_done()
end)
it("can pack a rockspec into a .src.rock", function()
finally(function()
os.remove("a_rock-1.0-1.src.rock")
end)
assert(run.luarocks_bool("download --rockspec --server=" .. testing_paths.fixtures_dir .. "/a_repo a_rock 1.0-1"))
assert(run.luarocks_bool("pack a_rock-1.0-1.rockspec"))
assert.is_truthy(lfs.attributes("a_rock-1.0-1.src.rock"))
end)
describe("namespaced dependencies", function()
it("can pack rockspec with namespaced dependencies", function()
finally(function()
os.remove("has_namespaced_dep-1.0-1.src.rock")
end)
assert(run.luarocks_bool("pack " .. testing_paths.fixtures_dir .. "/a_repo/has_namespaced_dep-1.0-1.rockspec"))
assert.is_truthy(lfs.attributes("has_namespaced_dep-1.0-1.src.rock"))
end)
end)
end)
describe("#namespaces", function()
it("packs a namespaced rock", function()
finally(function()
os.remove("a_rock-2.0-1.all.rock")
end)
assert(run.luarocks_bool("build a_user/a_rock --server=" .. testing_paths.fixtures_dir .. "/a_repo" ))
assert(run.luarocks_bool("build a_rock --keep --server=" .. testing_paths.fixtures_dir .. "/a_repo" ))
assert(run.luarocks_bool("pack a_user/a_rock" ))
assert(lfs.attributes("a_rock-2.0-1.all.rock"))
end)
end)
end)
|