Commit graph

576 commits

Author SHA1 Message Date
Kim Alvefur
30f791386b scansion: Use captures or wildcards instead of mocking time
> Mockery is one of the things I hold dear! And he's making a mockery of it!!
-- Belkar Bitterleaf
2023-12-17 16:29:03 +01:00
Kim Alvefur
251f4d3c8a util.xtemplate: Test the each template function
It iterates over childtags, so a template like {foo|each{...}} would be
equivalent to root:childtags("foo"), while a deeper query needs the bit
that becomes arguments to :childtags as an argument to each, e.g.
{foo/bar|each(baz)} would behave like
root:get_child("foo"):get_child("bar"):childtags("baz")
2023-12-16 13:47:55 +01:00
Matthew Wild
4b0463968a mod_storage_internal, tests: Fix before/after combined with the 'reverse' flag 2023-12-12 13:41:14 +00:00
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
Kim Alvefur
674b91b82b net.http.parser: Reject overlarge header section earlier
This case would eventually be rejected by the buffer size limit.
2023-08-23 12:18:34 +02:00
Kim Alvefur
0fa9d6be37 util.array: Fix new() library function
Backport of ffe4adbd2af9 since new was added in the 0.12 branch
2023-07-22 16:31:05 +02:00
Matthew Wild
87ee5a2300 net.http.parser: Fix off-by-one error in chunk parser 2023-02-17 17:01:19 +00:00
Matthew Wild
0fd88a07a4 net.http.parser: Improve handling of responses without content-length
This ensures that we support responses without a content-length header, and
allow streaming them through the streaming handler interface. An example of
such a response would be Server-Sent Events streams.
2023-02-09 22:57:32 +00:00
Matthew Wild
d4daf40caa util.json: Accept empty arrays with whitespace (fixes #1782) 2022-11-04 12:26:10 +00:00
Kim Alvefur
c617f27a54 util.jsonschema: Ignore test case for JavaScript specific detail
Also touching on how arrays are indistinguishable from tables in Lua
2022-10-09 15:24:30 +02:00
Kim Alvefur
8f850047e3 util.jsonschema: Ignore some further test cases for URI references
Full-URI references are not implemented
2022-10-09 15:24:26 +02:00
Kim Alvefur
1e74554e20 util.jsonschema: Sort test cases to skip
Piped trough `sort -g`
2022-10-09 14:58:07 +02:00
Kim Alvefur
3ee6df83b0 storage tests: Add test for the archive:summary API
Passes with memory, internal, sqlite
Fails with postgres as in #1766
2022-07-22 18:32:45 +02:00
Kim Alvefur
96301b2229 mod_bookmarks: Reduce error about not having bookmarks to debug (thanks tom)
This is happens if the account is new and doesn't have any bookmarks
yet, which is not a problem.

Rarely seen since most clients currently use the older version of
XEP-0084 stored in XEP-0049 rather than in PEP, but at least one
(Converse.js )does.

One scenario in which this would show up often is with Converse.js as a
guest chat using anonymous authentication, where all "accounts" would
always be new and not have any bookmarks. This scenario probably does
not need to have mod_bookmarks at all, but if enabled globally it would
likely become loaded onto the VirtualHost unless explicitly disabled.
2022-07-26 23:44:33 +02:00
Kim Alvefur
89359b70dc util.datamapper: Improve handling of schemas with non-obvious "type"
The JSON Schema specification says that schemas are objects or booleans,
and that the 'type' property is optional and can be an array.

This module previously allowed bare type names as schemas and did not
really handle booleans.

It now handles missing 'type' properties and boolean 'true' as a schema.
Objects and arrays are guessed based on the presence of 'properties' or
'items' field.
2022-07-08 17:32:48 +02:00
Kim Alvefur
e700edc50f util.jsonschema: Fix validation to not assume presence of "type" field
MattJ reported a curious issue where validation did not work as
expected. Primarily that the "type" field was expected to be mandatory,
and thus leaving it out would result in no checks being performed.
This was likely caused by misreading during initial development.

Spent some time testing against
https://github.com/json-schema-org/JSON-Schema-Test-Suite.git and
discovered a multitude of issues, far too many to bother splitting into
separate commits.

More than half of them fail. Many because of features not implemented,
which have been marked NYI. For example, some require deep comparisons
e.g. when objects or arrays are present in enums fields.

Some because of quirks with how Lua differs from JavaScript, e.g. no
distinct array or object types. Tests involving fractional floating
point numbers. We're definitely not going to follow references to remote
resources. Or deal with UTF-16 sillyness. One test asserted that 1.0 is
an integer, where Lua 5.3+ will disagree.
2022-07-08 14:38:23 +02:00
Kim Alvefur
11638f57e2 util.jsonpointer: Add basic tests
Example values from RFC 6901
2022-05-08 18:03:44 +02:00
Matthew Wild
93347db124 util.argparse: Revise 553c6204fe5b with a different approach
The second return value is (not insensibly) assumed to be an error. Instead of
returning a value there in the success case, copy the positional arguments
into the existing opts table.
2022-04-25 15:24:56 +01: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
Matthew Wild
7b23d9d136 util.bitcompat: Add some simple tests 2022-03-04 19:48:01 +00:00
Matthew Wild
8eadf174b4 net.stun: tests: Remove stray print() from debugging 2022-03-04 16:46:47 +00:00
Matthew Wild
a6265e45a0 net.stun: Add tests for serialization/deserialization 2022-03-04 16:13:05 +00: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