File size: 4,360 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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | local test_env = require("spec.util.test_env")
local testing_paths = test_env.testing_paths
local cfg = require("luarocks.core.cfg")
local deps = require("luarocks.deps")
local fs = require("luarocks.fs")
describe("LuaRocks deps #unit", function()
local runner
lazy_setup(function()
cfg.init()
fs.init()
deps.check_lua_incdir(cfg.variables)
deps.check_lua_libdir(cfg.variables)
runner = require("luacov.runner")
runner.init(testing_paths.testrun_dir .. "/luacov.config")
end)
lazy_teardown(function()
runner.save_stats()
end)
describe("deps", function()
describe("deps.autodetect_external_dependencies", function()
it("returns false if the given build table has no external dependencies", function()
local build_table = {
type = "builtin"
}
assert.falsy(deps.autodetect_external_dependencies(build_table))
end)
it("returns a table of the external dependencies found in the given build table", function()
local build_table = {
type = "builtin",
modules = {
module1 = {
libraries = { "foo1", "foo2" },
},
module2 = {
libraries = "foo3"
},
}
}
local extdeps = deps.autodetect_external_dependencies(build_table)
assert.same(extdeps["FOO1"], { library = "foo1" })
assert.same(extdeps["FOO2"], { library = "foo2" })
assert.same(extdeps["FOO3"], { library = "foo3" })
end)
it("adds proper include and library dirs to the given build table", function()
local build_table
build_table = {
type = "builtin",
modules = {
module1 = {
libraries = "foo"
}
}
}
deps.autodetect_external_dependencies(build_table)
assert.same(build_table, {
type = "builtin",
modules = {
module1 = {
libraries = "foo",
incdirs = { "$(FOO_INCDIR)" },
libdirs = { "$(FOO_LIBDIR)" }
}
}
})
build_table = {
type = "builtin",
modules = {
module1 = {
libraries = "foo",
incdirs = { "INCDIRS" }
}
}
}
deps.autodetect_external_dependencies(build_table)
assert.same(build_table, {
type = "builtin",
modules = {
module1 = {
libraries = "foo",
incdirs = { "INCDIRS" },
libdirs = { "$(FOO_LIBDIR)" }
}
}
})
build_table = {
type = "builtin",
modules = {
module1 = {
libraries = "foo",
libdirs = { "LIBDIRS" }
}
}
}
deps.autodetect_external_dependencies(build_table)
assert.same(build_table, {
type = "builtin",
modules = {
module1 = {
libraries = "foo",
incdirs = { "$(FOO_INCDIR)" },
libdirs = { "LIBDIRS" }
}
}
})
build_table = {
type = "builtin",
modules = {
module1 = {
libraries = "foo",
incdirs = { "INCDIRS" },
libdirs = { "LIBDIRS" }
}
}
}
deps.autodetect_external_dependencies(build_table)
assert.same(build_table, {
type = "builtin",
modules = {
module1 = {
libraries = "foo",
incdirs = { "INCDIRS" },
libdirs = { "LIBDIRS" }
}
}
})
end)
end)
end)
end)
|