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
|
local test_env = require("spec.util.test_env")
local testing_paths = test_env.testing_paths
test_env.unload_luarocks()
test_env.setup_specs()
local dir = require("luarocks.dir")
describe("luarocks.dir #unit", function()
local runner
setup(function()
runner = require("luacov.runner")
runner.init(testing_paths.testrun_dir .. "/luacov.config")
runner.tick = true
end)
teardown(function()
runner.shutdown()
end)
describe("dir.is_basic_protocol", function()
it("checks whether the arguments represent a valid protocol and returns the result of the check", function()
assert.truthy(dir.is_basic_protocol("http"))
assert.truthy(dir.is_basic_protocol("https"))
assert.truthy(dir.is_basic_protocol("ftp"))
assert.truthy(dir.is_basic_protocol("file"))
assert.falsy(dir.is_basic_protocol("git"))
assert.falsy(dir.is_basic_protocol("git+https"))
assert.falsy(dir.is_basic_protocol("invalid"))
end)
end)
describe("dir.deduce_base_dir", function()
it("deduces the base dir from archives", function()
assert.are.same("v0.3", dir.deduce_base_dir("https://example.com/hishamhm/lua-compat-5.2/archive/v0.3.zip"))
assert.are.same("lua-compat-5.2", dir.deduce_base_dir("https://example.com/hishamhm/lua-compat-5.2.zip"))
assert.are.same("lua-compat-5.2", dir.deduce_base_dir("https://example.com/hishamhm/lua-compat-5.2.tar.gz"))
assert.are.same("lua-compat-5.2", dir.deduce_base_dir("https://example.com/hishamhm/lua-compat-5.2.tar.bz2"))
end)
it("returns the basename when not given an archive", function()
assert.are.same("parser.moon", dir.deduce_base_dir("git://example.com/Cirru/parser.moon"))
assert.are.same("v0.3", dir.deduce_base_dir("https://example.com/hishamhm/lua-compat-5.2/archive/v0.3"))
end)
end)
describe("dir.normalize", function()
it("converts backslashes and removes trailing slashes", function()
assert.are.same("/foo/ovo", dir.normalize("\\foo\\ovo\\"))
assert.are.same("c:/some/dir", dir.normalize("c:\\..\\some\\foo\\..\\dir"))
assert.are.same("http://example.com/foo/ovo", dir.normalize("http://example.com/foo\\ovo\\"))
end)
it("strips unneeded /../ and /./", function()
assert.are.same("/some/dir/file.txt", dir.normalize("/../../../some/./foo/bar/.././../dir/bla/../file.txt"))
assert.are.same("/some/dir/file.txt", dir.normalize("/../../../some/./foo/bar/.././../dir/bla/../file.txt"))
end)
it("respects relative paths", function()
assert.are.same("boo", dir.normalize("./boo"))
assert.are.same("/boo", dir.normalize("/./boo"))
assert.are.same("../../../../boo", dir.normalize("../../../hello/world/../../../boo"))
end)
end)
end)
|