Commit graph

605 commits

Author SHA1 Message Date
Kim Alvefur
893de236f6 util.stanza: Increase test coverage to cover validation errors 2021-12-31 14:00:28 +01:00
Kim Alvefur
6710420289 util_datamapper: Fix typo in unit tests 2021-12-29 18:03:26 +01:00
Kim Alvefur
5168bd5c5f util.datamapper: Add support for $ref pointers
Allows reuse of repetitive definitions in schemas.
2021-12-29 17:57:09 +01:00
Kim Alvefur
7056bc0674 mod_tombstones: Add a very basic test case 2021-12-23 15:17:18 +01:00
Jonas Schäfer
663028421f mod_roster: pass correct username to roster-item-removed
The other invocations use it that way, and the only listener in trunk
which uses it (in mod_presence) expects it that way.

Passing the username of the JID from the removed entry causes incorrect
unavailable presence stanzas to be sent, allegedly kicking people off
MUCs.

Fixes #1121.
2021-12-22 13:06:32 +01:00
Kim Alvefur
081647ea1f util.smqueue: Simplify compat table, fix dependent modules (thanks Martin)
There was an off-by-one in the modulo calculation. Switching to a plain
old array-table makes the apparent size of the queue wrong, but since
some of the queue may not be available this is likely for the best.
2021-12-16 12:16:45 +01:00
Kim Alvefur
93a9ed2620 util.smqueue: Abstract queue with acknowledgements and overflow
Meant to be used in mod_smacks for XEP-0198

Meant to have a larger virtual size than actual number of items stored,
on the theory that in most cases, the excess will be acked before needed
for a resumption event.
2021-12-14 19:58:53 +01:00
Kim Alvefur
58c9115351 util.format: Ensure metatable __tostring results are also sanitized 2021-12-13 16:34:55 +01:00
Kim Alvefur
d482ece962 util.format: Fix some formats expecting positive numbers in Lua 5.2
Amazing how string.format behaves differently under each Lua version
2021-12-11 20:54:37 +01:00
Kim Alvefur
3d0844a4f5 util.format: ALL THE TESTS!!!
The more tests I made, the more Lua 5.1 quirks I discovered.

Tests generated using a tool plus some touch-up.
2021-12-11 20:38:54 +01:00
Kim Alvefur
0ddd204a27 util.format: Also handle the %p format added in Lua 5.4 2021-12-11 13:39:58 +01:00
Kim Alvefur
1eca4e8870 util.format: Ensure sanitation of strings passed to wrong format
Ie. log("debug", "%d", "\1\2\3") should not result in garbage.

Also optimizing for the common case of ASCII string passed to %s and
early returns everywhere.

Returning nil from a gsub callback keeps the original substring.
2021-12-11 13:30:34 +01:00
Kim Alvefur
d4c1451794 util.format: Escape invalid UTF-8 by passing trough serialization
Should prevent invalid UTF-8 from making it into the logs, which can
cause trouble with terminals or log viewers or other tools, such as when
grep determines that log files are binary.
2021-12-10 22:48:45 +01:00
Kim Alvefur
449311b2d1 MUC: Remove <{muc}x> tags in some errors
Including the payload of the stanza that caused the error is optional
and we're generally not doing it anywhere else.
2021-12-08 21:55:25 +01:00
Kim Alvefur
d621e0626c MUC: Remove remaining deprecated numeric error codes
The numeric error codes seems to have been removed from the examples in
XEP-0045 version 1.24, and were deprecated even by RFC 3920 in 2004,
only allowed for backwards compatibility.
2021-12-08 21:02:14 +01:00
Matthew Wild
06da62a6fe util.async tests: Explicitly import match from luassert (luacheck) 2021-11-29 14:22:08 +00:00
Matthew Wild
d46c43fbeb util.async: Add next-tick configuration
Running woken runners in the next iteration of the event loop prevents
unexpected recursion, unexpected tracebacks, and is generally more
predictable.

The pattern is borrowed from util.promise, where we're now doing the same.
2021-11-29 14:14:30 +00:00
Matthew Wild
cfef2c6ef6 util.async: Add sleep() method with configurable scheduling backend
No scheduler set by default, so it will error (we plan to initialize it in
util.startup).

We wanted to avoid a hard dependency on util.timer (which in turn depends on
network backends, etc.), and we didn't add timer.sleep() because we didn't
want to add a hard dependency on util.async for things that don't need it.
2021-11-29 14:11:24 +00:00
Kim Alvefur
cc84e83895 util.promise: Fix test
Could not reproduce locally but it complained in CI that
> spec/util_promise_spec.lua:676: Cannot spy on type 'nil', only on functions or callable elements
2021-11-26 22:38:07 +01:00
Kim Alvefur
a35dd91a12 util.promise: Support delayed promise execution 2019-01-05 07:08:24 +01:00
Kim Alvefur
d1144a7ede util.human.io: Fix cutting of UTF-8 into pieces
Down the rabbit hole we go...
2021-11-12 14:21:15 +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
5016e66640 mod_pubsub,mod_pep: Advertise maximum number of items via XEP-0122
Clients would generally be using the "max" symbol instead of discovering
this, but this also gets us validation and earlier rejection of out of
bounds values.
2021-10-20 17:32:34 +02:00
Kim Alvefur
8b769c373d mod_pubsub: Prevent max_items from being set to zero
Disable persistence instead if no items should be persisted.

XEP-0060 is not entirely clear on what either of those option really
mean.
2021-10-20 17:31:24 +02:00
Kim Alvefur
4b05d0f240 mod_pubsub,mod_pep: Implement 'send_last_published_item' option #1436
Default left as 'never' in mod_pubsub to preserve the previous behavior.
Unclear if this is desirable, but can always be changed later.

In mod_pep this allows turning off the automatic resending of most
recent item.
2021-10-19 18:11:50 +02:00
Kim Alvefur
21784ddc11 util.argparse: Add test for #1691 2021-10-12 14:54:04 +02:00
Kim Alvefur
0c99443297 util.argparse: Tests 2021-10-12 14:48:21 +02:00
Matthew Wild
edb6956ad5 util.array: Add :slice() method + tests
Behaviour follows the same logic as string.sub (so yes, 1-indexed).
2021-09-12 10:50:20 +01:00
Matthew Wild
eba0bacfda util.stanza: Add :get_child_with_attr() + tests 2021-09-12 10:31:02 +01:00
Kim Alvefur
22060f15cc mod_pubsub: Add support for limiting result size #1608 2021-09-05 16:43:41 +02:00
Kim Alvefur
1546e59310 util.pubsub: Add support for limiting number of items to retrieve
Hopefully this will eventually be upgraded to RSM, which is why the
argument is called 'resultspec' and is a table.
2021-09-05 16:21:10 +02:00
Kim Alvefur
d915f98800 mod_external_services: Validate required attributes on credentials requests 2021-08-29 23:26:19 +02:00
Kim Alvefur
f679f0b26e core.storagemanager: Respect archive ids issued by storage drivers in tests
Storage drivers may issue their own IDs tho none of the included ones do
this atm, but the 3rd party module mod_storage_xmlarchive has its
special format.
2021-08-15 12:28:58 +02:00
Kim Alvefur
c506269ff5 Fix various spelling errors (thanks codespell)
Also special thanks to timeless, for wordlessly reminding me to check
for typos.
2021-07-27 00:13:18 +02:00
Kim Alvefur
dfed446a5a util.pubsub: Signal that 'persistent-items' is unsupported when disabled
XEP-0060 says that this the way to indicate that 'persistent-items' is
unsupported, but doesn't explicitly say if it being disabled in the node
configuration also counts as unsupported.
2021-07-22 19:53:21 +02:00
Kim Alvefur
ffeeffd35c util.pubsub: Fix behavior of persist_items disabled
When set to 'false' there is no need for a persistence interface at all,
since items are not persisted after being broadcast.

Had started wondering if maybe the behavior was wrong, after reading
parts of XEP-0060 that pointed in that direction.

Some discussion of this can be found in logs of
xmpp:xsf@muc.xmpp.org?join from around 2021-07-20

Thanks to Ralph for confirming.
2021-07-22 21:01:11 +02:00
Kim Alvefur
8116134258 mod_pubsub: Explicitly enable persistence by default to preserve behavior
Since nodes were always persistent according to the XEP-0060 definition.
Whether data is stored in memory or on disk was not what this setting
was meant for.
2021-07-21 23:35:08 +02:00
Kim Alvefur
e1a84801f6 scansion tests: Enable 'expose_publisher' since we test for it 2021-07-25 13:52:52 +02:00
Kim Alvefur
23dbdae2aa mod_pubsub: Fix inclusion of publisher (fixes #1399) 2019-05-01 22:33:22 +02:00
Kim Alvefur
a399b1caed Merge 0.11->trunk 2021-07-23 17:13:06 +02:00
Kim Alvefur
00735e4759 MUC: Fix logic for access to affiliation lists
Fixes https://prosody.im/security/advisory_20210722/

Backs out 4d7b925652d9
2021-07-22 17:18:39 +02:00
Kim Alvefur
d258cd5054 scansion tests: Allow specifying network settings via environment variable
Allows testing e.g. opportunistic writes or other settings easily in CI
or otherwise without editing the config file.

make integration-test PROSODY_NETWORK_SETTINGS='{"opportunistic_writes":true}'
2021-07-11 10:09:10 +02:00
Kim Alvefur
09d8f12548 scansion tests: Allow specifying network backend via environment variable
To make it easier to test select and event without having to edit the
config file, e.g. in CI.

make integration-test PROSODY_NETWORK_BACKEND=event
2021-07-11 10:09:07 +02:00
Kim Alvefur
6e037dc045 util.format: Change formatting of nil values to avoid looking like XML 2021-06-29 16:18:31 +02:00
Kim Alvefur
3f1d93bb4e util.format: Escape ASCII control characters in output
This should offer some protection against doing evil things to
terminals. Doesn't protect against pure broken UTF-8 garbage however.

See #734
2021-06-15 23:24:23 +02:00
Matthew Wild
e21e4b2b24 util.dbuffer: Fix bugs, remove multi-char support (more complex than first thought)
Character sequences could be split across chunk boundaries. Would require a bunch
of code to make that work reliably.

Only apply front_consumed on first chunk, and adjust buffer_pos accordingly.
2021-06-29 14:25:57 +01:00