Commit graph

605 commits

Author SHA1 Message Date
Kim Alvefur
965c49b92d util.datamapper: Simplify test schema
Don't need the function, more compact to just reference the same
reference table.
2022-12-20 18:55:47 +01:00
Matthew Wild
ae84717255 util.hashring: Support associating arbitrary data with nodes
In this API, a 'node' is always a simple text string. Sometimes the caller may
have a more complex structure representing a node, but the hash ring is really
only concerned with the node's name.

This API change allows :add_nodes() to take a table of `node_name = value`
pairs, as well as the simple array of node names previously accepted.

The 'value' of the selected node is returned as a new second result from
:get_node().

If no value is passed when a node is added, it defaults to `true` (as before,
but this was never previously exposed).
2022-12-02 20:32:36 +00:00
Matthew Wild
d33904f7e9 util.hashring: tests: don't randomize order - they are written in a sequential style 2022-12-02 20:27:32 +00:00
Matthew Wild
76bf6d511f Merge 0.12->trunk 2022-11-04 12:26:43 +00:00
Kim Alvefur
98da2af369 util.smqueue: Improve tests
Result of mutation testing. One mutant remaining.
2022-10-19 14:34:41 +02:00
Kim Alvefur
5bf6e7f501 util.jsonpointer: Improve tests
Result of mutation testing

Remaining mutants are mostly relating to the math.type() fallback.

Another case being that array[#array+1] == array[#array+2] and thus
doesn't matter.
2022-10-19 14:21:13 +02:00
Matthew Wild
f081c1a756 util.cache: Add some missing test cases
Found via mutation testing.
2022-10-13 09:55:36 +01:00
Matthew Wild
3483944568 util.jid: Add test for invalid domain but valid UTF-8 (thanks jonas) 2022-10-11 15:41:05 +01:00
Matthew Wild
e8d1a6720e util.jid: Add missing test cases
(98% mutant score, single remaining mutant is a string.sub equivalent)
2022-10-11 13:31:47 +01:00
Matthew Wild
44d68caf9a util.dbuffer: Add a bunch of missing test cases
Found via mutation testing.
2022-10-11 11:38:32 +01:00
Kim Alvefur
f150495cea Merge 0.12->trunk 2022-10-09 15:50:25 +02:00
Matthew Wild
f8f90ea923 util.datetime: Add some missing test cases
You guessed it, mutation testing.
2022-10-08 23:55:22 +01:00
Matthew Wild
c6c5fec97e util.roles: Fix tests to use autogenerated role id 2022-10-08 20:39:14 +01:00
Matthew Wild
e3d1958cc4 util.roles: Add some more missing test cases
Found via mutation testing.
2022-10-08 20:33:01 +01:00
Matthew Wild
c1627c5d66 util.promise: Fix field name in failing test (introduced in 2639e0e1c378) 2022-10-07 18:04:30 +01:00
Matthew Wild
e8080773d6 util.promise: Add some missing test cases (found through mutation testing) 2022-10-07 17:56:38 +01:00
Matthew Wild
aed0c1c5ab util.promise: Remove some redundant checks, add tests confirming redundancy
This lines don't appear to do anything useful, and all tests pass when they
are removed. Discovered via mutation testing.

I added extra tests to exercise this code, because I wasn't certain that there
were no side-effects caused by removal. Everything appears to be fine, thanks
to the "pending" check at the start of promise_settle().
2022-10-07 17:43:26 +01:00
Matthew Wild
bda9ea678c util.roles: Add tests 2022-10-07 16:58:52 +01:00
Matthew Wild
08b49654d9 util.iterators: join: Work even with only a single iterator in the chain 2022-10-06 18:34:40 +01:00
Kim Alvefur
70e54affa0 util.crypto: Fix tests
Found this number in a hat.

Sleepy time.  Good night.
2022-09-30 00:27:10 +02:00
Matthew Wild
5ca81b0e3b util.jwt: Add support for ES512 (+ tests) 2022-09-29 23:17:42 +01:00
Matthew Wild
e12c9a83df util.paseto: Drop custom wrappers around key objects
The PASETO spec recommends - no, *requires* - that implementations enforce
type safety for keys, and e.g. do not pass them around as arbitrary byte
strings. Typed wrapper objects are recommended.

I originally followed this advice when starting the lib. However, key wrapping
and type safety is now also a feature of util.crypto. All we're doing is
duplicating it unnecessarily with this additional wrapper code.
2022-07-11 14:30:39 +01:00
Matthew Wild
ae07086502 util.paseto: Add tests based on official PASETO test vectors
Unfortunately there are only a few relevant ones, but they did help catch some
bugs.
2022-07-11 14:10:07 +01:00
Matthew Wild
fad58c5ab2 util.jwt: All the algorithms (+ all the tests!)
Except 'none'. Not implementing that one.
2022-07-02 15:29:04 +01:00
Matthew Wild
12a9ab92de util.crypto: tests: fix some tests that didn't do much (thanks luacheck!) 2022-07-02 15:27:44 +01:00
Matthew Wild
74351799e9 util.jwt: Overhaul of tests to use declarative approach
Now we can consistently apply the same tests to every algorithm, instead of
duplicating code.
2022-07-02 14:22:20 +01:00
Matthew Wild
4d94a62f9b spec: Move test crypto keys to a shared file for clarity and easy maintenance 2022-07-02 12:36:52 +01:00
Matthew Wild
0b0555c339 util.jwt: Add support for RSA-based algorithms (RS256, PS256) 2022-07-02 12:26:43 +01:00
Matthew Wild
ae16ddcac7 util.jwt: Add support/tests for ES256 via improved API and using util.crypto
In many cases code will be either signing or verifying. With asymmetric
algorithms it's clearer and more efficient to just state that once, instead of
passing keys (and possibly other parameters) with every sign/verify call.

This also allows earlier validation of the key used.

The previous (HS256-only) sign/verify methods continue to be exposed for
backwards-compatibility.
2022-07-01 18:51:15 +01:00
Matthew Wild
b357cf1be1 util.crypto: New wrapper for some operations in OpenSSL's libcrypto
Specifically, ED25519 key generation/import/export, sign/verify operations,
and AES encrypt/decrypt.
2022-06-24 16:56:16 +01:00
Matthew Wild
b02ab508d5 util.stanza: Add add_error() to simplify adding error tags to existing stanzas
Some fiddling is required now in error_reply() to ensure the cursor is in the
same place as before this change (a lot of code apparently uses that feature).
2022-08-29 14:59:46 +01:00
Kim Alvefur
8959868a28 util.stanza: Add method for extracting a single attribute value
Sometimes you only care about a single attribute, but the child tag
itself may be optional, leading to needing `tag and tag.attr.foo` or
`stanza:find("tag@foo")`.

The `:find()` method is fairly complex, so avoiding it for this kind of
simpler use case is a win.
2022-08-17 19:04:30 +02:00
Kim Alvefur
e2807b035e mod_mam: Store archives with sub-second precision timestamps
Changes sub-second part of example timestamp to .5 in order to avoid
floating point issues.

Some clients use timestamps when ordering messages which can lead to
messages having the same timestamp ending up in the wrong order.

It would be better to preserve the order messages are sent in, which is
the order they were stored in.
2022-08-14 17:28:31 +02:00
Kim Alvefur
c85c18b03a util.datetime: Add support for sub-second precision timestamps
Lua since 5.3 raises a fuss when time functions are handed a number with
a fractional part and the underlying C functions are all based on
integer seconds without support for more precision.
2022-08-14 16:57:31 +02:00
Kim Alvefur
d79609ddc9 util.datetime: Fix argument order in tests
The expected value goes first.
2022-08-14 16:51:10 +02:00
Kim Alvefur
93830ecf40 various: Update IETF RFC URLs for tools.ietf.org transition
See https://www.ietf.org/blog/finalizing-ietf-tools-transition/

Already done in various other places.
2022-08-05 16:54:15 +02:00
Kim Alvefur
9a375e4444 Merge 0.12->trunk 2022-07-29 17:10:31 +02:00
Kim Alvefur
7c8dd7ee42 Merge 0.12->trunk 2022-07-27 00:10:08 +02:00
Kim Alvefur
5251c9b686 compat: Remove handling of Lua 5.1 location of 'unpack' function 2022-07-11 19:07:38 +02:00
Kim Alvefur
82135131e7 Merge 0.12->trunk 2022-07-08 19:36:07 +02:00
Kim Alvefur
14fceee089 tests: Remove special-casing of Lua 5.1
Part of #1600
2022-07-02 17:29:03 +02:00
Kim Alvefur
a7567a9055 util.hashes: Add SHA3 bindings 2020-09-10 21:58:24 +02:00
Kim Alvefur
1c6747f200 Merge 0.12->trunk 2022-05-08 18:06:41 +02:00
Matthew Wild
07ee0f4470 Merge 0.12->trunk 2022-04-25 16:35:10 +01:00
Kim Alvefur
99a880ebe5 util.xml: Add an option to allow <?processing instructions?>
These should generally be safe to just ignore, which should be the
default behavior of Expat and LuaExpat
2022-02-04 20:47:39 +01:00
Kim Alvefur
c551d3d8dd util.format: Skip control code escaping when doing full serialization
Fixes that a multi-line string ended up "like\
\9this" instead of "like\nthis" as can be demonstrated by somehow
initiating a connection to a HTTP server.
2022-01-27 21:14:22 +01:00
Kim Alvefur
cced954ac3 util.jid: Explicitly check for nil rather than falsy
A boolean false should blow up.
2022-01-15 16:25:25 +01:00
Jonas Schäfer
e0b15fcba3 util.xml: Do not allow doctypes, comments or processing instructions
Yes. This is as bad as it sounds. CVE pending.

In Prosody itself, this only affects mod_websocket, which uses util.xml
to parse the <open/> frame, thus allowing unauthenticated remote DoS
using Billion Laughs. However, third-party modules using util.xml may
also be affected by this.

This commit installs handlers which disallow the use of doctype
declarations and processing instructions without any escape hatch. It,
by default, also introduces such a handler for comments, however, there
is a way to enable comments nontheless.

This is because util.xml is used to parse human-facing data, where
comments are generally a desirable feature, and also because comments
are generally harmless.
2022-01-10 18:23:54 +01:00
Kim Alvefur
8a97d634a4 util.pubsub: Fix item store resize to "max"
Previously this would end up passing the "max" directly to the
underlying storage.
2022-01-06 01:18:35 +01:00
Kim Alvefur
631d7b9003 util.stanza: Cover :find method in tests
This method is a bit complex so good to have some test coverage
2021-12-31 14:14:03 +01:00