diff options
Diffstat (limited to 'spec/download_spec.lua')
-rw-r--r-- | spec/download_spec.lua | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/spec/download_spec.lua b/spec/download_spec.lua new file mode 100644 index 00000000..9b5d9e2e --- /dev/null +++ b/spec/download_spec.lua | |||
@@ -0,0 +1,37 @@ | |||
1 | local test_env = require("test/test_environment") | ||
2 | local lfs = require("lfs") | ||
3 | |||
4 | test_env.unload_luarocks() | ||
5 | local download = require("luarocks.download") | ||
6 | |||
7 | local extra_rocks = { | ||
8 | "/validate-args-1.5.4-1.rockspec" | ||
9 | } | ||
10 | |||
11 | expose("LuaRocks download tests #blackbox #b_download", function() | ||
12 | |||
13 | before_each(function() | ||
14 | test_env.setup_specs(extra_rocks) | ||
15 | run = test_env.run | ||
16 | end) | ||
17 | |||
18 | it("LuaRocks download with no flags/arguments", function() | ||
19 | assert.is_false(run.luarocks_bool("download")) | ||
20 | end) | ||
21 | |||
22 | it("LuaRocks download invalid", function() | ||
23 | assert.is_false(run.luarocks_bool("download invalid")) | ||
24 | end) | ||
25 | |||
26 | it("LuaRocks download all with delete downloaded files", function() --TODO maybe download --all more rocks | ||
27 | assert.is_true(run.luarocks_bool("download --all validate-args")) | ||
28 | assert.is.truthy(lfs.attributes("validate-args-1.5.4-1.rockspec")) | ||
29 | test_env.remove_files(lfs.currentdir(), "validate--args--") | ||
30 | end) | ||
31 | |||
32 | it("LuaRocks download rockspec version", function() | ||
33 | assert.is_true(run.luarocks_bool("download --rockspec validate-args 1.5.4-1")) | ||
34 | assert.is.truthy(lfs.attributes("validate-args-1.5.4-1.rockspec")) | ||
35 | test_env.remove_files(lfs.currentdir(), "validate--args--") | ||
36 | end) | ||
37 | end) | ||