Commit graph

605 commits

Author SHA1 Message Date
Kim Alvefur
9dd7726419 util.http: Silence strict luacheck warning in tests 2023-12-09 21:01:49 +01:00
Kim Alvefur
a67e816055 core.moduleapi: Silence strict luacheck warnings in tests 2023-12-09 20:55:26 +01:00
Kim Alvefur
49a62a0d1e util.throttle: Silence some strict luacheck warnings 2023-12-09 20:36:29 +01:00
Kim Alvefur
36914c9d99 util.xtemplate: Add some initial tests
Strict typing does not magically make code correct
2023-12-09 15:15:06 +01:00
Kim Alvefur
e03fe2ebe3 util.jsonschema: Return basic structured validation response 2023-12-02 21:45:38 +01:00
Kim Alvefur
6187c44ca9 Merge 0.12->trunk 2023-12-01 17:11:19 +01:00
Matthew Wild
ab835fed13 util.hex: Deprecate to/from in favour of encode/decode, for consistency! 2022-03-04 15:22:45 +00:00
Matthew Wild
a669ffb5a2 util.human.io: Don't accept ambiguous durations by default
The new method parse_duration_lax() exports the old behaviour, mainly for
compatibility purposes.
2023-11-30 13:42:44 +00:00
Kim Alvefur
3619de6000 util.uuid: Add UUIDv7
Allows sorting by id as a substitute for sorting by timestamp since it
has the timestamp in the encoded in the first part, and only things that
happen extremely close together may get out of order by such a sort,
which might not matter.

From draft-ietf-uuidrev-rfc4122bis formerly draft-peabody-dispatch-new-uuid-format
2021-08-15 14:44:21 +02:00
Kim Alvefur
a1f053229c util.array: Fix new() library function 2023-07-22 16:31:05 +02:00
Kim Alvefur
8b013e9471 tests: Add hack to test only a single storage driver
Fixes that LuaDBI being unavailable makes these produce nothing but
endless stack overflows in luarocks.
2023-07-22 16:20:36 +02:00
Kim Alvefur
9ee8b4e502 tests: Update storagemanager tests for prosody.* namespace change
Part of an attempt to make these tests work again. Previously they would
just explode in a million luarocks stack overflows
2023-07-22 16:17:13 +02:00
Kim Alvefur
3ab3f3e1e7 util.human.io: Add tests for parse_duration() (some failing) 2023-07-16 19:26:05 +02:00
Kim Alvefur
9f96301ce8 util.human.io: Include relevant arguments in test messages
This way the relevant arguments are shown in case a test case fails
2023-07-16 19:17:06 +02:00
Kim Alvefur
e0a423dd29 util.human.io: Use tail call in test to get correct line numbers
This is probably not guaranteed to work and might vary with Lua version,
but it's good enough for me to get accurate line numbers out of Busted
that don't all point to the test() function.
2023-07-16 18:42:58 +02:00
Kim Alvefur
915ef3a222 util.cache: Pass cache itself to eviction callback
Simplifies access to the cache without moving code around a lot given
the currently common pattern of

	local some_cache = cache.new(size, function(k,v) end)
2023-06-30 22:01:55 +02:00
Kim Alvefur
29b6ed4f0a util.cache: Keep eviction candidate if callback resized to make room
Previously either the old or the new values would be rejected, even if
the cache was resized to allow more items.
2023-06-30 22:01:49 +02:00
Kim Alvefur
21740a1382 util.argparse: Add support for repeatable parameters
These are gathered into arrays
2022-01-05 04:46:27 +01:00
Kim Alvefur
cddd0748a0 storagemanager tests: Reorder test data in chronological order
Why was the test data not in chronological order?

Altho, maybe that was the point? Except for MAM, the data might *not* be
in chronological order!
2021-05-11 02:04:59 +02:00
Kim Alvefur
99906e5b9c util.http: Implement parser for RFC 7239 Forwarded header
Standardized and structured replacement for the X-Forwarded-For,
X-Forwarded-Proto set of headers.

Notably, this allows per-hop protocol information, unlike
X-Forwarded-Proto which is always a single value for some reason.
2023-06-03 16:15:52 +02:00
Kim Alvefur
d947a5273c util.sasl: Add basic tests for OAUTHBEARER 2023-05-26 20:45:10 +02:00
Kim Alvefur
2337f127b5 util.jsonschema: Update test suite ignore rules
A test case was added in the middle, so all these need to be reordered.
2023-05-20 15:44:55 +02:00
Kim Alvefur
693ac009db util.jsonschema: Fix UTF-8ness of 'minLength' and 'maxLength' 2023-04-23 10:42:07 +02:00
Kim Alvefur
3621b8ce91 util.jsonschema: Implement 'minContains' and 'maxContains' 2023-04-23 10:26:43 +02:00
Kim Alvefur
3697942a4a util.jsonschema: Tweak description of disabled test
This doesn't fail because of additionalProperties, looks more like some
issue with recursive definitions and util.jsonpointer that I don't want
feel like investigating now.
2023-04-22 12:45:58 +02:00
Kim Alvefur
1e5f088714 util.jsonschema: Enable passing IEEE 754 equality test 2023-04-22 12:44:53 +02:00
Kim Alvefur
c4fdaa80b6 util.error: Add test for #1805
Checks that it doesn't fail on a stanza without <error> tag
2023-04-19 12:03:34 +02:00
Matthew Wild
7dc9f9ab2a util.human.io: Add parse_duration() method to parse a duration string
Similar logic occurs throughout various modules in the codebase. We might even
want a module:get_option_duration()??
2023-04-07 14:14:53 +01:00
Matthew Wild
00dfd64a86 integration tests: Preserve unmocked time.monotonic()
With monotonic() frozen, timers may fail to trigger. This caused problems
after the new util.startup changes that moved the server-started event to a
timer. The timer wouldn't trigger, the event didn't fire, and prosody would
fail to daemonize.

All the tests that depend on specific time behaviour are depending on wall
clock time, so only mocking util.time.now() and os.time() fixes those.
2023-04-06 14:00:54 +01:00
Matthew Wild
b06dd038cd util.fsm: New utility lib for finite state machines 2022-03-17 17:45:27 +00:00
Kim Alvefur
8c9ffa25eb util.jsonschema: Implement 'dependentSchemas'
If this object key exists then this schema must validate against the
current object.  Seems useful.
2023-03-26 15:20:07 +02:00
Kim Alvefur
4bc62438db util.jsonschema: Implement 'dependentRequired'
If this field exists, then these fields must also exist.
2023-03-26 15:19:14 +02:00
Kim Alvefur
1a2fdf3f7f util.format: Update tests for serialization changes 2023-03-26 00:49:25 +01:00
Matthew Wild
a68bddfee8 scansion: Enable mod_debug_reset during tests 2023-03-23 14:41:08 +00:00
Matthew Wild
893366fb79 scansion: vcard_temp: Ensure at least one connection is open throughout test
I plan to introduce logic to "reset" the server between individual tests,
which is currently triggered by the lack of any connections. This is the only
test that has a point where no clients are connected, and it's not necessary,
so I changed it to keep the connection open for the duration of the test.
2023-03-23 14:19:43 +00:00
Matthew Wild
f3792af0fe scansion: Fix tests failing after addition of pubsub#itemreply config field
This is a newly added field, and we expect to see it in these places now.
2023-03-23 14:16:32 +00:00
Matthew Wild
18d9e6f65a scansion: Fix tests failing due to lack of 'publisher'
publisher is no longer included by default in broadcasts, but configured via
pubsub#itemreply instead.
2023-03-23 14:15:33 +00:00
Matthew Wild
d1d45c52e2 scansion: Add tests for pubsub#itemreply in PEP 2023-03-22 16:53:36 +00:00
Matthew Wild
26705419f9 scansion: PEP notifications no longer carry 'publisher' by default
Previous behaviour:

- publisher was always included in PEP notifications
- publisher was never included in get_items requests

New behaviour:

- publisher is included in both notifications and retrieval if
  itemreply == publisher
- publisher is not ever included if itemreply ~= publisher
2023-03-22 16:48:51 +00:00
Matthew Wild
2460207d50 storagemanager: Add keyval+ (combined keyval + map) store type
This combines the two most common store types, which modules often end up
opening with both interfaces separately anyway.

As well as combining them, I've taken the opportunity to improve some of the
method names to make them clearer.
2022-09-27 17:46:27 +01:00
Kim Alvefur
f23ad827a3 util.jsonschema: Disable some further new failing tests
Absolute references, weird fractions, unevaluatedProperties???
2023-03-11 12:12:49 +01:00
Kim Alvefur
fc0e882e29 util.jsonschema: Ignore some new tests in test suite
These seem to be using absolute URI references, Not Yet Implemented
2023-03-11 12:01:17 +01:00
Matthew Wild
7a6d2e1226 util.table: Expand table.move() tests (thanks mutation testing) 2023-03-17 17:06:05 +00:00
Matthew Wild
55106e91ce util.ip: Tests for truncate() 2023-03-14 18:40:16 +00:00
Matthew Wild
ff51890910 Merge 0.12->trunk 2023-02-17 17:02:41 +00:00
Matthew Wild
fbfe255e12 Merge 0.12->trunk 2023-02-09 22:58:01 +00:00
Matthew Wild
4767b89822 spec: Suppress some harmless luacheck warnings in tests 2023-01-13 14:53:40 +00:00
Matthew Wild
99748c5655 util.paseto: Add support for v3.local tokens 2023-01-13 14:38:05 +00:00
Matthew Wild
26dc334ae3 util.crypto: Add support for AES-256-CTR
This is required by PASETO v3.local
2023-01-13 14:34:10 +00:00
Matthew Wild
341c8417c2 util.hashes: Add HKDF-HMAC-SHA256/HKDF-HMAC-SHA384
These are needed for PASETO v3.local.
2023-01-13 14:29:08 +00:00