Fix storage tests so they run, but not by default

This commit is contained in:
Matthew Wild 2018-10-01 20:21:26 +01:00
parent 56e97dc5d6
commit a9963c54c9
2 changed files with 17 additions and 7 deletions

View file

@ -2,9 +2,12 @@ return {
_all = {
},
default = {
["exclude-tags"] = "mod_bosh";
},
["exclude-tags"] = "mod_bosh,storage";
};
bosh = {
tags = "mod_bosh";
}
};
storage = {
tags = "storage";
};
}

View file

@ -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