util.dataforms: Add support for datetime field types via XEP-0122

This commit is contained in:
Kim Alvefur 2021-10-25 21:45:46 +02:00
parent 7a272b1670
commit 851127ecd7
2 changed files with 22 additions and 0 deletions

View file

@ -446,6 +446,20 @@ describe("util.dataforms", function ()
assert.table(e);
assert.string(e.number);
end);
describe("datetime", function ()
local f = dataforms.new { { name = "when"; type = "text-single"; datatype = "xs:dateTime" } } -- luacheck: ignore 431
it("works", function ()
local x = f:form({ when = "2008-08-22T21:09:00Z" });
assert.equal("2008-08-22T21:09:00Z", x:find("field/value#"))
local d, e = f:data(x);
assert.is_nil(e);
assert.same({ when = 1219439340 }, d);
end);
end)
end);
describe("media element", function ()
it("produced media element correctly", function ()