mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_internal, tests: Fix before/after combined with the 'reverse' flag
This commit is contained in:
parent
9dd7726419
commit
4b0463968a
2 changed files with 25 additions and 0 deletions
|
@ -560,6 +560,30 @@ describe("storagemanager", function ()
|
|||
|
||||
end);
|
||||
|
||||
-- This tests combines the reverse flag with 'before' and 'after' to
|
||||
-- ensure behaviour remains correct
|
||||
it("by id (before and after) in reverse #full_id_range", function ()
|
||||
assert.truthy(archive.caps and archive.caps.full_id_range, "full ID range support")
|
||||
local data, err = archive:find("user", {
|
||||
["after"] = test_data[1][1];
|
||||
["before"] = test_data[4][1];
|
||||
reverse = true;
|
||||
});
|
||||
assert.truthy(data, err);
|
||||
local count = 0;
|
||||
for id, item in data do
|
||||
count = count + 1;
|
||||
assert.truthy(id);
|
||||
assert.equal(test_data[4-count][1], id);
|
||||
assert(st.is_stanza(item));
|
||||
assert.equal("test", item.name);
|
||||
assert.equal("urn:example:foo", item.attr.xmlns);
|
||||
assert.equal(2, #item.tags);
|
||||
end
|
||||
assert.equal(2, count);
|
||||
end);
|
||||
|
||||
|
||||
|
||||
end);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue