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
|
local test_env = require("test/test_environment")
local run = test_env.run
local testing_paths = test_env.testing_paths
test_env.unload_luarocks()
local extra_rocks = {
"/luarepl-0.4-1.src.rock",
"/c3-1.0-1.src.rock"
}
describe("LuaRocks doc tests #blackbox #b_doc", function()
before_each(function()
test_env.setup_specs(extra_rocks)
end)
describe("LuaRocks doc basic tests", function()
it("LuaRocks doc with no flags/arguments", function()
assert.is_false(run.luarocks_bool("doc"))
end)
it("LuaRocks doc with invalid argument", function()
assert.is_false(run.luarocks_bool("doc invalid"))
end)
it("LuaRocks doc with no homepage", function()
assert.is_true(run.luarocks_bool("install c3"))
assert.is_false(run.luarocks_bool("doc c3 --home"))
end)
it("LuaRocks doc with no home page and no doc folder", function()
assert.is_true(run.luarocks_bool("install c3"))
test_env.remove_dir(testing_paths.testing_sys_tree .. "/lib/luarocks/rocks/c3/1.0-1/doc")
assert.is_false(run.luarocks_bool("doc c3"))
end)
it("LuaRocks doc with no doc folder opening descript.homepage", function()
assert.is_true(run.luarocks_bool("install luarepl"))
test_env.remove_dir(testing_paths.testing_sys_tree .. "/lib/luarocks/rocks/luarepl/0.4-1/doc")
local output = run.luarocks("doc luarepl")
assert.is.truthy(output:find("Local documentation directory not found"))
end)
end)
describe("LuaRocks doc tests with flags", function()
it("LuaRocks doc of installed luarepl", function()
assert.is_true(run.luarocks_bool("install luarepl"))
assert.is_true(run.luarocks_bool("doc luarepl"))
end)
it("LuaRocks doc of luacov and access its home page", function()
assert.is_true(run.luarocks_bool("install luacov"))
assert.is_true(run.luarocks_bool("doc luacov --home"))
end)
it("LuaRocks doc of luacov and list doc folder", function()
assert.is_true(run.luarocks_bool("install luacov"))
local output = assert.is.truthy(run.luarocks("doc luacov --list"))
assert.is.truthy(output:find("/lib/luarocks/rocks/luacov/0.11.0--1/doc/"))
end)
it("LuaRocks doc of luacov local", function()
assert.is_true(run.luarocks_bool("install luacov"))
assert.is_true(run.luarocks_bool("doc luacov --local"))
end)
it("LuaRocks doc of luacov porcelain", function()
assert.is_true(run.luarocks_bool("install luacov"))
assert.is_true(run.luarocks_bool("doc luacov --porcelain"))
end)
end)
end)
|