summaryrefslogtreecommitdiff
path: root/spec/search_spec.lua
diff options
context:
space:
mode:
authorrobooo <robo.karasek@gmail.com>2016-07-07 21:58:19 +0200
committerHisham Muhammad <hisham@gobolinux.org>2016-07-07 16:58:19 -0300
commit5af7e0d7c2dcf65e41ae8523f3771e9528be32a7 (patch)
treebcd14624e0566a23da2e708675197d212cecf35d /spec/search_spec.lua
parentb5b285a678fe78b80d452cc9eb7565b8bf087b81 (diff)
downloadluarocks-5af7e0d7c2dcf65e41ae8523f3771e9528be32a7.tar.gz
luarocks-5af7e0d7c2dcf65e41ae8523f3771e9528be32a7.tar.bz2
luarocks-5af7e0d7c2dcf65e41ae8523f3771e9528be32a7.zip
New test-suite for LuaRocks (#581)
First version of new test-suite, using Busted framework based on Google Summer of Code project: https://summerofcode.withgoogle.com/projects/#5695811874717696 * Rewritten from Bash to Lua * Tests now check if they did what they were supposed to, beyond only checking success or failure of the `luarocks` command * Support for black-box (launching `luarocks` as an external command) and white-box (testing functions in modules directly) testing
Diffstat (limited to 'spec/search_spec.lua')
-rw-r--r--spec/search_spec.lua42
1 files changed, 42 insertions, 0 deletions
diff --git a/spec/search_spec.lua b/spec/search_spec.lua
new file mode 100644
index 00000000..a0258942
--- /dev/null
+++ b/spec/search_spec.lua
@@ -0,0 +1,42 @@
1local test_env = require("test/test_environment")
2local lfs = require("lfs")
3
4test_env.unload_luarocks()
5local search = require("luarocks.search")
6
7local extra_rocks = {
8"/lzlib-0.4.1.53-1.src.rock"
9}
10
11expose("LuaRocks search tests #blackbox #b_search", function()
12
13 before_each(function()
14 test_env.setup_specs(extra_rocks)
15 run = test_env.run
16 end)
17
18 it("LuaRocks search with no flags/arguments", function()
19 assert.is_false(run.luarocks_bool("search"))
20 end)
21
22 it("LuaRocks search zlib", function()
23 assert.is_true(run.luarocks_bool("search zlib"))
24 end)
25
26 it("LuaRocks search zlib 1.1", function()
27 assert.is_true(run.luarocks_bool("search zlib 1.1"))
28 end)
29
30 it("LuaRocks search missing rock", function()
31 assert.is_true(run.luarocks_bool("search missing_rock"))
32 end)
33
34 it("LuaRocks search with flag all", function()
35 assert.is_true(run.luarocks_bool("search --all"))
36 end)
37
38 it("LuaRocks search zlib", function()
39 local num = 123
40 assert.is_true(run.luarocks_bool("search " .. num))
41 end)
42end) \ No newline at end of file