mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
storage: Test reverse-ordered queries
This commit is contained in:
parent
72cecbe03c
commit
f307825a01
1 changed files with 22 additions and 0 deletions
|
@ -406,6 +406,28 @@ describe("storagemanager", function ()
|
||||||
end);
|
end);
|
||||||
|
|
||||||
|
|
||||||
|
it("can be queried in reverse", function ()
|
||||||
|
|
||||||
|
local data, err = archive:find("user", {
|
||||||
|
reverse = true;
|
||||||
|
limit = 3;
|
||||||
|
});
|
||||||
|
assert.truthy(data, err);
|
||||||
|
|
||||||
|
local i = #test_data;
|
||||||
|
for id, item in data do
|
||||||
|
assert.truthy(id);
|
||||||
|
assert.equal(test_data[i][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);
|
||||||
|
i = i - 1;
|
||||||
|
end
|
||||||
|
|
||||||
|
end);
|
||||||
|
|
||||||
|
|
||||||
end);
|
end);
|
||||||
|
|
||||||
it("can selectively delete items", function ()
|
it("can selectively delete items", function ()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue