File size: 5,127 Bytes
d7c5875 | 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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | local test_env = require("spec.util.test_env")
local lfs = require("lfs")
local run = test_env.run
local testing_paths = test_env.testing_paths
local env_variables = test_env.env_variables
local V = test_env.V
local P = test_env.P
local extra_rocks = {
"/abelhas-1.1-1.src.rock",
"/copas-${COPAS}.src.rock",
"/coxpcall-1.16.0-1.src.rock",
"/coxpcall-1.16.0-1.rockspec",
"/luafilesystem-${LUAFILESYSTEM}.src.rock",
"/luafilesystem-${LUAFILESYSTEM_OLD}.src.rock",
}
describe("luarocks remove #integration", function()
before_each(function()
test_env.setup_specs(extra_rocks)
end)
describe("basic tests", function()
it("with no flags/arguments", function()
assert.is_false(run.luarocks_bool("remove"))
end)
it("invalid rock", function()
assert.is_false(run.luarocks_bool("remove invalid.rock"))
end)
it("missing rock", function()
assert.is_false(run.luarocks_bool("remove missing_rock"))
end)
it("invalid argument", function()
assert.is_false(run.luarocks_bool("remove luacov --deps-mode"))
end)
it("built abelhas", function()
assert.is_true(run.luarocks_bool("build abelhas 1.1"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_rocks .. "/abelhas"))
assert.is_true(run.luarocks_bool("remove abelhas 1.1"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_rocks .. "/abelhas"))
end)
it("built abelhas with uppercase name", function()
assert.is_true(run.luarocks_bool("build abelhas 1.1"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_rocks .. "/abelhas"))
assert.is_true(run.luarocks_bool("remove Abelhas 1.1"))
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_rocks .. "/abelhas"))
end)
end)
describe("more complex tests", function()
before_each(function()
assert.is.truthy(test_env.need_rock("coxpcall"))
end)
it("fail, break dependencies", function()
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_rocks .. "/coxpcall"))
assert.is_true(run.luarocks_bool("build copas"))
assert.is_false(run.luarocks_bool("remove coxpcall"))
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_rocks .. "/coxpcall"))
end)
it("force", function()
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_rocks .. "/coxpcall"))
assert.is_true(run.luarocks_bool("build copas"))
local output = run.luarocks("remove --force coxpcall")
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_rocks .. "/coxpcall"))
assert.is.truthy(output:find("Checking stability of dependencies"))
end)
it("force fast", function()
assert.is.truthy(lfs.attributes(testing_paths.testing_sys_rocks .. "/coxpcall"))
assert.is_true(run.luarocks_bool("build copas"))
local output = run.luarocks("remove --force-fast coxpcall")
assert.is.falsy(lfs.attributes(testing_paths.testing_sys_rocks .. "/coxpcall"))
assert.is.falsy(output:find("Checking stability of dependencies"))
end)
it("restores old versions", function()
local libdir = P(testing_paths.testing_sys_tree .. "/lib/lua/"..env_variables.LUA_VERSION)
assert.is_true(run.luarocks_bool("install luafilesystem ${LUAFILESYSTEM_OLD_V}"))
assert.is.truthy(lfs.attributes(libdir.."/lfs."..test_env.lib_extension))
if test_env.TEST_TARGET_OS ~= "windows" then
local fd = io.open(libdir.."/lfs."..test_env.lib_extension, "r")
assert(fd:read("*a"):match(V"LuaFileSystem ${LUAFILESYSTEM_OLD_V}", 1, true))
fd:close()
end
local suffix = (V"${LUAFILESYSTEM_OLD}"):gsub("[%.%-]", "_")
assert.is_true(run.luarocks_bool("install luafilesystem ${LUAFILESYSTEM_V} --keep"))
assert.is.truthy(lfs.attributes(libdir.."/lfs."..test_env.lib_extension))
assert.is.truthy(lfs.attributes(libdir.."/luafilesystem_"..suffix.."-lfs."..test_env.lib_extension))
if test_env.TEST_TARGET_OS ~= "windows" then
local fd = io.open(libdir.."/lfs."..test_env.lib_extension, "r")
assert(fd:read("*a"):match(V"LuaFileSystem ${LUAFILESYSTEM_V}", 1, true))
fd:close()
end
assert.is_true(run.luarocks_bool("remove luafilesystem ${LUAFILESYSTEM_V}"))
assert.is.truthy(lfs.attributes(libdir.."/lfs."..test_env.lib_extension))
if test_env.TEST_TARGET_OS ~= "windows" then
local fd = io.open(libdir.."/lfs."..test_env.lib_extension, "r")
assert(fd:read("*a"):match(V"LuaFileSystem ${LUAFILESYSTEM_OLD_V}", 1, true))
fd:close()
end
end)
end)
it("#admin remove #ssh", function()
assert.is_true(run.luarocks_admin_bool("--server=testing remove coxpcall-1.16.0-1.src.rock"))
end)
it("#admin remove missing", function()
assert.is_false(run.luarocks_admin_bool("--server=testing remove"))
end)
end)
|