aboutsummaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2021-03-19 17:13:34 -0300
committerHisham Muhammad <hisham@gobolinux.org>2021-03-22 10:33:10 -0300
commitfbd857e1a0b2aae5beb3875427612e41bf67b35e (patch)
tree977d5af9712330345cf1633660a95b9adc3caf0d /spec
parent058643a9342c68ce38b5dd55a02564a001f807e2 (diff)
downloadluarocks-fbd857e1a0b2aae5beb3875427612e41bf67b35e.tar.gz
luarocks-fbd857e1a0b2aae5beb3875427612e41bf67b35e.tar.bz2
luarocks-fbd857e1a0b2aae5beb3875427612e41bf67b35e.zip
pack: check that directory inside archive actually exists
Diffstat (limited to 'spec')
-rw-r--r--spec/fixtures/bad_pack-0.1-1.rockspec19
-rw-r--r--spec/pack_spec.lua6
2 files changed, 25 insertions, 0 deletions
diff --git a/spec/fixtures/bad_pack-0.1-1.rockspec b/spec/fixtures/bad_pack-0.1-1.rockspec
new file mode 100644
index 00000000..23934244
--- /dev/null
+++ b/spec/fixtures/bad_pack-0.1-1.rockspec
@@ -0,0 +1,19 @@
1rockspec_format = "3.0"
2package = "bad_pack"
3version = "0.1-1"
4source = {
5 url = "http://localhost:8080/file/busted_project-0.1.tar.gz",
6 dir = "invalid_dir",
7}
8description = {
9 summary = "A project that uses Busted tests",
10}
11build = {
12 type = "builtin",
13 modules = {
14 sum = "sum.lua",
15 }
16}
17test = {
18 type = "busted",
19}
diff --git a/spec/pack_spec.lua b/spec/pack_spec.lua
index 0790c801..55071839 100644
--- a/spec/pack_spec.lua
+++ b/spec/pack_spec.lua
@@ -80,6 +80,12 @@ describe("luarocks pack #integration", function()
80 assert.is_truthy(lfs.attributes("a_rock-1.0-1.src.rock")) 80 assert.is_truthy(lfs.attributes("a_rock-1.0-1.src.rock"))
81 end) 81 end)
82 82
83 it("fails packing a rockspec into a .src.rock dir if doesn't exist", function()
84 local output = run.luarocks("pack " .. testing_paths.fixtures_dir .. "/bad_pack-0.1-1.rockspec")
85 assert.match("Directory invalid_dir not found", output)
86 assert.is_falsy(lfs.attributes("bad_pack-0.1-1.src.rock"))
87 end)
88
83 describe("namespaced dependencies", function() 89 describe("namespaced dependencies", function()
84 it("can pack rockspec with namespaced dependencies", function() 90 it("can pack rockspec with namespaced dependencies", function()
85 finally(function() 91 finally(function()