Commit graph

18 commits

Author SHA1 Message Date
Kim Alvefur
8959868a28 util.stanza: Add method for extracting a single attribute value
Sometimes you only care about a single attribute, but the child tag
itself may be optional, leading to needing `tag and tag.attr.foo` or
`stanza:find("tag@foo")`.

The `:find()` method is fairly complex, so avoiding it for this kind of
simpler use case is a win.
2022-08-17 19:04:30 +02:00
Kim Alvefur
43351d2b54 Spelling: Fix various spelling mistakes (thanks timeless)
Words, sometimes I wonder how they even work

Maybe I missed something.
2022-03-07 00:13:56 +01:00
Kim Alvefur
1a0be02fe8 util.dataforms: Ensure larger integers are serialized as such
Assumes that most number fields are integers, as most numeric types
listed in XEP-0122 are, as are all such fields in Prosody as of this.

Otherwise %g produces something like 1.1259e+15
2021-10-28 13:00:24 +02:00
Kim Alvefur
9a080dc12e util.dataforms: Scope integer handling tests
So they're separate from the datetime tests, and any future validation
tests
2021-10-26 15:41:54 +02:00
Kim Alvefur
f956b07ca0 util.dataforms: Turn number values into timestamps for datetime fields
Makes it symmetric with parsing.
2021-10-26 15:17:49 +02:00
Kim Alvefur
fc677f515f util.dataforms: Coerce number values for boolean fields
Makes more sense than coercing to a string, which would always be
truthy.
2021-10-26 15:15:57 +02:00
Kim Alvefur
851127ecd7 util.dataforms: Add support for datetime field types via XEP-0122 2021-10-25 21:45:46 +02:00
Kim Alvefur
bc20052a9b util.dataforms: Add support for validating (integer) ranges 2019-11-21 18:56:43 +01:00
Kim Alvefur
8de93db692 util.dataforms: Add more XEP-0211 media element test coverage 2020-08-16 20:30:02 +02:00
Kim Alvefur
1c0e4300ab util.dataforms: Convert media element sizes to avoid error on Lua 5.3
The stanza API does not accept number values and threw an error due to
the height and width attributes of the media element (XEP-0221).

This part had no test coverage previously, explaining why it was not
discovered until now.
2020-08-16 12:55:55 +02:00
Kim Alvefur
6b533ad772 util.dataforms: Improve descriptions in tests 2019-12-16 02:02:47 +01:00
Kim Alvefur
9c1528bf2e util.dataforms: Add support for XEP-0122: Data Forms Validation
Initially only basic validation of xs:integer
2018-09-01 03:10:09 +02:00
Kim Alvefur
3da47d7dde util.dataforms: Allow field names to be different from the 'var' attribute
This should allow the usage of long prefixes and namespace-like names to
be contained to the XML representation of the form, so that the code can
use more convenient names.
2018-09-01 01:24:46 +02:00
Kim Alvefur
876b96659c util.dataforms: Allow passing the current values to be used in stead of omitted fields 2018-08-05 15:50:06 +02:00
Kim Alvefur
00a2891787 util.dataforms: Add failing test for #1177 2018-06-30 20:49:26 +02:00
Kim Alvefur
0913989a69 util.dataforms: Include a fixed field in test 2018-07-15 22:35:42 +02:00
Kim Alvefur
a7448e43e0 util.dataforms: Add a simple function for identifying form types
This is meant to allow identifying forms without parsing them
completely.
2018-06-02 19:57:46 +02:00
Kim Alvefur
2a7da89567 util.dataforms: Add initial tests
This covers basic form generation, that the fields have the correct
attributes, children and text content.
2018-06-02 19:47:09 +02:00