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
|
local test_env = require("test/test_environment")
test_env.unload_luarocks()
local fetch = require("luarocks.fetch")
local vers = require("luarocks.vers")
describe("Luarocks fetch test #whitebox #w_fetch", function()
it("Fetch url to base dir", function()
assert.are.same("v0.3", fetch.url_to_base_dir("https://github.com/hishamhm/lua-compat-5.2/archive/v0.3.zip"))
assert.are.same("lua-compat-5.2", fetch.url_to_base_dir("https://github.com/hishamhm/lua-compat-5.2.zip"))
assert.are.same("lua-compat-5.2", fetch.url_to_base_dir("https://github.com/hishamhm/lua-compat-5.2.tar.gz"))
assert.are.same("lua-compat-5.2", fetch.url_to_base_dir("https://github.com/hishamhm/lua-compat-5.2.tar.bz2"))
assert.are.same("parser.moon", fetch.url_to_base_dir("git://github.com/Cirru/parser.moon"))
assert.are.same("v0.3", fetch.url_to_base_dir("https://github.com/hishamhm/lua-compat-5.2/archive/v0.3"))
end)
describe("fetch_sources", function()
it("from Git", function()
local rockspec = {
format_is_at_least = vers.format_is_at_least,
name = "testrock",
version = "dev-1",
source = {
protocol = "git",
url = "git://github.com/luarocks/testrock",
},
variables = {
GIT = "git",
},
}
local pathname, tmpdir = fetch.fetch_sources(rockspec, false)
assert.are.same("testrock", pathname)
assert.match("luarocks_testrock%-dev%-1%-", tmpdir)
assert.match("^%d%d%d%d%d%d%d%d.%d%d%d%d%d%d.%x+$", rockspec.source.identifier)
end)
end)
end)
|