mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
storage tests: Test querys with both before and after IDs
Needed for extended MAM, supported by SQL storage already.
This commit is contained in:
parent
c6bd5ac677
commit
87044c466f
1 changed files with 21 additions and 0 deletions
|
@ -361,6 +361,27 @@ describe("storagemanager", function ()
|
|||
end
|
||||
assert.equal(3, count);
|
||||
end);
|
||||
|
||||
it("by id (before and after) #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];
|
||||
});
|
||||
assert.truthy(data, err);
|
||||
local count = 0;
|
||||
for id, item in data do
|
||||
count = count + 1;
|
||||
assert.truthy(id);
|
||||
assert.equal(test_data[1+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);
|
||||
|
||||
it("can selectively delete items", function ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue