Kim Alvefur
885fde62be
util.stanza: Handle Clark notation for attributes in :find()
2024-11-17 13:40:20 +01:00
Kim Alvefur
00584c4d61
util.stanza: Handle namespace prefixes for attributes in :find()
...
More correct handling of namespaces here.
This works with both prefixes from the parser and hacky .attr["foo:bar"]
2024-11-17 12:35:51 +01:00
Matthew Wild
b02ab508d5
util.stanza: Add add_error() to simplify adding error tags to existing stanzas
...
Some fiddling is required now in error_reply() to ensure the cursor is in the
same place as before this change (a lot of code apparently uses that feature).
2022-08-29 14:59:46 +01:00
Kim Alvefur
631d7b9003
util.stanza: Cover :find method in tests
...
This method is a bit complex so good to have some test coverage
2021-12-31 14:14:03 +01:00
Kim Alvefur
893de236f6
util.stanza: Increase test coverage to cover validation errors
2021-12-31 14:00:28 +01:00
Matthew Wild
eba0bacfda
util.stanza: Add :get_child_with_attr() + tests
2021-09-12 10:31:02 +01:00
Kim Alvefur
f69303f264
Merge 0.11->trunk
2020-11-11 16:09:55 +01:00
Kim Alvefur
8328e6681e
util.stanza: Reject ASCII control characters ( fixes #1606 )
2020-11-11 16:00:41 +01:00
Kim Alvefur
815ce25d10
util.stanza: Extract Application-Specific Condition from errors
...
API change
2020-09-26 18:12:18 +02:00
Kim Alvefur
a7c3fc20a0
spec.stanza spec: Split up util.error related tests
2020-09-26 19:00:17 +02:00
Kim Alvefur
1c53f533b0
util.stanza: Support Application-Specific Conditions in util.error
2020-09-26 18:09:10 +02:00
Kim Alvefur
8c0efc9e55
util.stanza: Get 'by' from context instead
...
Zash> <error by=?> should go where? extra.by? context? source?
Zash> In Prosody this would usually be module.host or a bare user/room JID
MattJ> Zash: context
MattJ> context.by, basically the opposite of context.actor
2020-09-26 18:07:33 +02:00
Kim Alvefur
3f9988468d
util.stanza: Support inclusion of <gone> URI from util.error object
2020-09-26 17:30:47 +02:00
Kim Alvefur
2f0b85ce29
util.stanza: Support getting 'by' from util.error object
2020-09-26 17:26:31 +02:00
Kim Alvefur
f0ac29acf0
util.stanza: Add method returning stanza with added indentation
...
Adds indentation and line breaks to stanzas, to make stanzas easier to
read for humans.
2020-04-12 17:03:05 +02:00
Kim Alvefur
4e34c40ece
util.stanza: Accept util.error object to error_reply
...
If we're moving towards util.error as the standard error container then
this makes sense.
This may allow for future extensibility without needing a lot of
optional arguments.
2019-12-14 22:47:41 +01:00
Kim Alvefur
be23b274f6
util.stanza: Support the 'by' attribute on errors
...
This is to be used when the entity generating the error is not the same
as the one the stanza was directed to, e.g. an intermediate server.
2019-11-25 20:59:36 +01:00
Kim Alvefur
54da2ab6f7
util.stanza: Check that argument to error_reply is NOT a stanza of type error
...
Replying to an error is Very Bad
2019-11-25 20:52:03 +01:00
Kim Alvefur
52b7181979
util.stanza: Check that argument to error_reply is a stanza
2019-11-25 20:52:01 +01:00
Kim Alvefur
11095184a5
util.stanza: Remove redundant check for attrs
...
A stanza can't not have attrs if created the correct way
2019-11-25 20:46:55 +01:00
Kim Alvefur
b340e5e462
util.stanza: Check that argument to reply is a stanza
2019-11-25 20:44:05 +01:00
Kim Alvefur
1bf2e5f5f4
util.stanza: Improve tests
2018-12-02 02:16:21 +01:00
Kim Alvefur
50f6335501
util.stanza: Validate input to clone() (with brief tests)
2018-11-17 15:26:11 +01:00
Matthew Wild
2219abbc3f
util.stanza tests: Remove unused variable #luacheck
2018-09-13 16:45:18 +01:00
Matthew Wild
27d8902b8e
util.stanza: Don't automatically generate ids for iq stanzas
...
Users of this API should provide their own id attribute that meets their
uniqueness requirements.
The current implementation leaks information (i.e. how many iq stanzas
have been sent by the server to other JIDs). Providing any strong
guarantees of randomness here would need to pull in additional
dependencies that we don't want in this simple library.
2018-09-13 16:35:48 +01:00
Matthew Wild
af5fac0a9c
util.stanza tests: Fix test name (copy/paste error?)
2018-09-13 15:37:42 +01:00
Matthew Wild
3b0271f560
util.stanza + tests: Bail out of loop if we are iterating too far, fixes #981
2018-08-19 21:56:33 +01:00
Matthew Wild
c17a785604
util.stanza tests: Add tests for maptags() method
2018-08-19 21:29:52 +01:00
Kim Alvefur
3322ba6449
util.stanza: Brief tests for :remove_children
2018-07-08 19:13:14 +02:00
Matthew Wild
7a83585658
util.stanza: tests: Add more invalid data types and update for :text(nil) and :text("")
2018-03-21 22:08:54 +00:00
Matthew Wild
65f4b853a0
util.stanza: Switch from asserts to if's, improve performance, errors and tests
2018-03-18 11:32:00 +00:00
Kim Alvefur
6c8d196c98
util.stanza: Test coverage of is_stanza()
2018-03-17 19:50:22 +01:00
Matthew Wild
6d7cd57d44
util.stanza: Add stricter validation for data passed to stanza builder API
2018-03-16 14:51:24 +00:00
Matthew Wild
b7fd84b6e5
util.stanza: Add tests ensuring support for unicode in tag/attr names
2018-03-16 14:50:28 +00:00
Matthew Wild
a65352b35f
util.stanza: Fix tests to call error_reply() correctly, and add tests to ensure it vaguely works
2018-03-16 14:24:53 +00:00
Waqas Hussain
67293fc09f
Port tests to the busted
test runner
2017-09-15 17:07:57 -04:00
Matthew Wild
e1b559853f
util.stanza: Fix :top_tag() handling of namespaced attributes
2019-03-25 14:37:43 +00:00
Kim Alvefur
20429527b1
util.stanza: Require a type attribute for iq stanzas
2018-12-28 20:49:01 +01:00