mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
Fix storage tests so they run, but not by default
This commit is contained in:
parent
aadbe03b3d
commit
e400842d43
2 changed files with 17 additions and 7 deletions
9
.busted
9
.busted
|
@ -2,9 +2,12 @@ return {
|
|||
_all = {
|
||||
},
|
||||
default = {
|
||||
["exclude-tags"] = "mod_bosh";
|
||||
},
|
||||
["exclude-tags"] = "mod_bosh,storage";
|
||||
};
|
||||
bosh = {
|
||||
tags = "mod_bosh";
|
||||
}
|
||||
};
|
||||
storage = {
|
||||
tags = "storage";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -20,15 +20,23 @@ local configs = {
|
|||
storage = "sql";
|
||||
sql = { driver = "SQLite3", database = "prosody-tests.sqlite" };
|
||||
};
|
||||
mysql = {
|
||||
storage = "sql";
|
||||
sql = { driver = "MySQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" };
|
||||
};
|
||||
postgres = {
|
||||
storage = "sql";
|
||||
sql = { driver = "PostgreSQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" };
|
||||
};
|
||||
};
|
||||
|
||||
local test_host = "storage-unit-tests.invalid";
|
||||
|
||||
describe("storagemanager", function ()
|
||||
for _, backend in ipairs({ "internal", "sqlite" }) do
|
||||
for backend, backend_config in pairs(configs) do
|
||||
local tagged_name = "#"..backend;
|
||||
if backend ~= configs[backend].storage then
|
||||
tagged_name = tagged_name.." #"..configs[backend].storage;
|
||||
if backend ~= backend_config.storage then
|
||||
tagged_name = tagged_name.." #"..backend_config.storage;
|
||||
end
|
||||
insulate(tagged_name.." #storage backend", function ()
|
||||
mock_prosody();
|
||||
|
@ -41,7 +49,6 @@ describe("storagemanager", function ()
|
|||
-- Simple check to ensure insulation is working correctly
|
||||
assert.is_nil(config.get(test_host, "storage"));
|
||||
|
||||
local backend_config = configs[backend];
|
||||
for k, v in pairs(backend_config) do
|
||||
config.set(test_host, k, v);
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue