Commit graph

588 commits

Author SHA1 Message Date
Matthew Wild
876162b9cf util.bit53: Add bnot() method 2024-03-01 17:22:29 +00:00
Matthew Wild
965d69763c util.strbitop: Remove unused import in tests 2024-02-23 12:13:06 +00:00
Matthew Wild
7f748556a2 util.strbitop: Add common_prefix_bits() method
This returns the number of bits that two strings have in common. It is
significantly more efficient than similar calculations in Lua.
2024-02-23 12:08:37 +00:00
Matthew Wild
1606675762 util.ip: Add another test case for match() and commonPrefixLength() 2024-02-23 12:03:31 +00:00
Matthew Wild
81cb34ef50 util.strbitop: Rename spec file to correct name so tests actually run 2024-02-23 11:59:45 +00:00
Kim Alvefur
ddd479afe2 util.rfc6724: Remove, unused since introduction of Happy Eyeballs
It was mainly used to determine whether to try IPv6 or IPv4 first,
following the rules for this in the RFC.

Now we always try IPv6 and IPv4 at roughly the same time, thus there no
need to carry these rules.
2024-02-22 19:46:52 +01:00
Kim Alvefur
cb66977bd4 MUC: Record reason for affiliation changes and return in list (fixes #1227) 2021-08-08 18:07:17 +02:00
Kim Alvefur
c8c1482dae MUC: Test that <subject/> + <thread/> is not handled as subject change
Ref #667
Ref #1838
2024-01-23 13:00:58 +01:00
Kim Alvefur
a7799e11a9 Merge 0.12->trunk 2023-12-17 19:02:56 +01:00
Kim Alvefur
4ca636bb7e mod_disco: Advertise disco#info and #items on bare JIDs to fix #1664
Having to add these in *there* places seems less than ideal.

I would also think that advertising disco#info is a bit redundant, since
it is a requirement for everything in XMPP and if it was missing you
would get an error back.
2023-12-17 18:55:14 +01:00
Kim Alvefur
6438e929b2 scansion: Use new style for accessing Lua globals 2023-12-17 16:41:47 +01:00
Kim Alvefur
0b5df6bdac scansion: Use new prosody namespace in import 2023-12-17 16:41:27 +01:00
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