Commit graph

605 commits

Author SHA1 Message Date
Matthew Wild
9115d2a366 util.dbuffer: Fix traceback when :collapse() is called on empty buffer 2020-08-20 15:22:19 +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
91d2ab9108 net.http.parser: Allow specifying sink for large request bodies
This enables uses such as saving uploaded files directly to a file on
disk or streaming parsing of payloads.

See #726
2020-08-01 18:41:23 +02:00
Kim Alvefur
1c0950bc36 mod_server_contact_info: Add status-addresses field
XEP-0157 version 1.1.0
2020-05-27 19:47:52 +02:00
Kim Alvefur
b15a51597b scansion/prosody.cfg: Fix typo 2020-07-09 02:17:49 +02:00
Kim Alvefur
14cdec45c5 util.indexedbheap: Add failing test case for #1572
This approximates what happens if you add a timer far in the future,
then reschedule it to right now.
2020-07-08 21:39:10 +02:00
Matthew Wild
67cf276ba2 util.dbuffer: If no bytes parameter passed to read, return remainder of frontmost chunk 2020-06-29 12:51:28 +01:00
Kim Alvefur
c2ba37df93 util.human.io: Add brief test of table generation 2020-06-28 14:58:32 +02:00
Matthew Wild
8cc0b83179 util.dbuffer: Don't use # operator in tests, Lua 5.1 doesn't support __len 2020-06-28 12:26:04 +01:00
Matthew Wild
fb8e10737d util.dbuffer: dynamic string buffer
Similar to util.ringbuffer (and shares almost identical API). Differences:

- size limit is optional and dynamic
- does not allocate a fixed buffer of max_size bytes
- focus on simply storing references to existing string objects where possible,
  avoiding unnecessary allocations
- references are still stored in a ring buffer to enable use as a fast FIFO

Optional second parameter to new() provides the number of ring buffer segments. On
Lua 5.2 on my laptop, a segment is ~19 bytes. If the ring buffer fills up, the next
write will compact all strings into a single item.
2020-06-26 16:41:31 +01:00
Kim Alvefur
d69cf3b007 net.websocket.frames: Add small test covering xor-masking
This is basically a recording of current behavior, to detect changes.
2020-10-14 19:02:48 +02:00
Matthew Wild
558a365575 util.ringbuffer: Fix accidentally committed test change (thanks buildbot) 2020-06-25 15:45:13 +01:00
Matthew Wild
f3add85e3c util.ringbuffer: Add some additional asserts to tests 2020-06-24 13:00:11 +01:00
Matthew Wild
b9a670dace util.ringbuffer: Ensure unsigned chars are always returned from :byte() 2020-06-24 12:34:20 +01:00
Matthew Wild
dd0274b8c7 util.ringbuffer: Add test for :discard() 2020-06-23 16:50:26 +01:00
Kim Alvefur
93400f60fb scansion tests: Enable mod_muc_mam during tests (expect breakage) 2020-06-21 19:09:47 +02:00
Kim Alvefur
44803031d0 MUC: Remove XEP-0091 Legacy Delayed Delivery from test
Long time Obsolete XEP.

The element is apparently not included when mod_muc_mam is enabled, and
deleting this seems like the sanity-preserving approach.
2020-06-21 19:06:37 +02:00
Matthew Wild
f2dbf36642 storage tests: Add tests for archive queries before/after specific ids
Also increased the size of the test data for easier debugging with more
complex tests.
2020-06-12 16:59:06 +01:00
Matthew Wild
9e0186b0ed util.promise: Add all_settled, which follows semantics of allSettled from ES2020 2020-06-08 14:01:02 +01:00
Kim Alvefur
4a0cb5a306 util.human.io: Fix right-alignment 2020-06-06 16:43:28 +02:00
Matthew Wild
14a436817d util.ringbuffer: Add :sub() and :byte() methods equivalent to the string methods 2020-06-04 15:19:20 +01:00
Kim Alvefur
4bab7af07d util.ringbuffer: Prevent creation of buffer with negative size
Previously this would have been (unsigned)-1 which is a large positive
integer.
2020-06-04 16:11:08 +02:00
Kim Alvefur
0bb1474ce6 util.ringbuffer: Prevent creation of zero-size buffer 2020-05-29 18:11:42 +02:00
Kim Alvefur
838f8ebd5b util.ringbuffer: Add some initial tests 2020-05-29 17:53:00 +02:00
Kim Alvefur
994f59501b util.human.units: A library for formatting numbers with SI units 2019-01-04 08:46:26 +01:00
Kim Alvefur
836be9b60d scansion: Add test for mod_server_contact_info / XEP-0157 2020-05-27 19:44:12 +02:00
Kim Alvefur
d916ce38f6 mod_storage_internal: Fix keeping old timestamp in archive map API
This led to a missing 'when' field on changed items, which would cause a
traceack.
2020-05-15 20:55:22 +02:00
Kim Alvefur
82714e54a8 mod_storage_internal: Implement key-value API 2020-05-11 21:56:19 +02:00
Kim Alvefur
0cf5e52384 spec/storage: Reset build context of test stanza make comparisons easier
While building a stanza there's a .last_add field keeping track of where
in the XML tree tags are being added.  This field does not survive a
roundtrip through preserialize / deserialize.  :reset() removes this,
which simplifes comparisons after such a roundtrip.
2020-05-11 21:41:02 +02:00
Kim Alvefur
6b456feb29 spec/scansion/blocking: Don't send stanzas after disconnecting
Probably casued by mod_scansion_record catching the unavailable presence
generated by Prosody on disconnect.

See #1549
2020-05-09 00:07:42 +02:00
Kim Alvefur
67372d19bd util.rsm: Test that Lua 5.3 floats are not encoded with decimal point
The 'max' 'count' and 'index' fields are integers and should be encoded
as such on the wire.

Care needs to be taken because tostring(1.0) in Lua 5.3+ returns to "1.0"
while in previous Lua versions it would return "1".
2020-04-23 18:17:54 +02:00
Kim Alvefur
da2a13287e util.rsm: Add tests
Based on examples from XEP-0059
2020-04-23 18:05:00 +02:00
Matthew Wild
114ff031fc MUC tests: Add missing 'affiliation' attribute 2020-04-23 15:17:42 +01:00
Matthew Wild
51b769dc24 Merge with upstream trunk 2020-04-23 13:53:18 +01:00
Matthew Wild
4fdc761073 Merge 0.11->trunk 2020-04-23 13:52:19 +01:00
Kim Alvefur
701c5f4811 util.hashes: Fix output length of PBKDF2-HMAC-SHA256
Somehow it got SHA1's 20 byte output instead of the proper 32 = 256/8
2020-04-22 21:38:36 +02:00
Kim Alvefur
16c54b1705 util.hashes: Use generic name of PBKDF2-HMAC-SHA1 function in tests 2020-04-22 21:35:33 +02:00
Kim Alvefur
8be4a3edd7 mod_lastactivity: Add basic scansion test coverage
When run on Lua 5.3 produces an issue similar to #1536
2020-04-20 18:33:05 +02:00
Kim Alvefur
85b09097dc mod_uptime: Add scansion test coverage
Once the Prosody is up, who cares when it comes down?
That's not my department, says scanison.
2020-04-20 19:22:54 +02:00
Kim Alvefur
5955cc3924 scansion: Mock time libraries during tests
The passage of time does not need test coverage, just look in a mirror.
2020-04-20 18:20:24 +02:00
Kim Alvefur
9036462dcb mod_version: Add scansion test
Why was this module enabled in the config for tests if it wasn't tested?
2020-04-20 18:17:57 +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
1f92aa9280 spec: Include a hacky moduleapi stub to allow test to proceed 2020-04-11 17:59:39 +02:00
Emmanuel Gil Peyrot
a4b069589c spec: Add test cases for util.http.contains_token 2020-04-10 20:20:14 +02:00
Kim Alvefur
96f172c685 MUC: Add test for destroying a room by ad-hoc command
Testing ad-hoc commands was not easily doable before 49312378ba1d
relaxed the need for state and an extra roundtrip to execute commands
2020-03-20 18:52:41 +01:00
Matthew Wild
64bb781dfe MUC: Support for broadcasting unavailable presence for affiliated offline users
Activated when muc#roomconfig_presencebroadcast includes the "none" role.
2020-03-12 16:01:31 +00:00
Matthew Wild
cb6148d155 storagemanager, mod_storage_sql: Rename methods to :get_all() and :delete_all() 2020-03-11 16:32:41 +00:00
Matthew Wild
81f5c3e319 storagemanager: Add support for :find_key() and :delete_key() to map store shim 2020-03-11 16:29:57 +00:00
Matthew Wild
e35a4db498 storagemanager: Fix unused variable in tests [luacheck] 2020-03-11 16:07:36 +00:00