Commit graph

12795 commits

Author SHA1 Message Date
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
Matthew Wild
d4daf40caa util.json: Accept empty arrays with whitespace (fixes #1782) 2022-11-04 12:26:10 +00:00
Matthew Wild
e817ec013c Merge 0.12->trunk 2022-10-31 14:32:26 +00:00
Matthew Wild
246d797f81 mod_http: Allow disabling CORS in the http_cors_override option and by default
Fixes #1779.

Due to an oversight in the logic, if the user set 'enabled' to false in an
override, it would disable the item's requested CORS settings, but still apply
Prosody's default CORS policy.

This change ensures that 'enabled = false' will now disable CORS entirely for
the requested item.

Due to the new structure of the code, it was necessary to have a flag to say
whether CORS is to be applied at all. Rather than hard-coding 'true' here, I
chose to add a new option: 'http_default_cors_enabled'. This is a boolean that
allows the operator to disable Prosody's default CORS policy entirely (the one
that is used when a module or config does not override it). This makes it
easier to disable CORS and then selectively enable it only on services you
want it on.
2022-10-31 14:32:02 +00:00
Kim Alvefur
bd0e903b07 Merge 0.12->trunk 2022-10-24 15:25:12 +02:00
Kim Alvefur
20532df525 mod_admin_shell: Ensure available connection for column 'secure'
Similar to #1777
2022-10-23 16:22:12 +02:00
Kim Alvefur
c51152432a mod_admin_shell: Ensure connection exists to get port from (fixes #1777) 2022-10-23 16:19:39 +02:00
Kim Alvefur
03814250c3 util.prosodyctl.cert: Remove Lua 5.1 os.execute() return value compat 2022-10-20 17:37:33 +02:00
Kim Alvefur
e673312b7f util.prosodyctl: Remove Lua 5.1 os.execute() return value compat 2022-10-20 17:37:07 +02:00
Kim Alvefur
640b8d49a3 util.openssl: Remove Lua 5.1 os.execute() return value compat 2022-10-20 17:36:05 +02:00
Kim Alvefur
1acd5e0474 util.human.io: Fix handling of os.execute() return values in Lua 5.2+
Wrong part of Lua 5.1 compat removed in 0f4feaf9ca64
2022-10-20 17:35:01 +02:00
Kim Alvefur
e2cff34641 util.mathcompat: Module to ease reuse of math.type()
Mostly to ensure it is available during tests, as util.startup is not
invoked there
2022-10-20 16:50:12 +02:00
Kim Alvefur
bab0635179 util.startup: Ensure import() is available in prosodyctl (thanks keyzer)
Fixes error in mod_authz_internal due to import() being unavailable as
it was only loaded in Prosody proper
2022-10-20 16:31:18 +02:00
Kim Alvefur
e64c5e30c2 util.startup: Provide a common Lua 5.3+ math.type() for Lua 5.2
Code deduplication
2022-10-19 16:25:05 +02:00
Kim Alvefur
8fc457681e Merge 0.12->trunk 2022-10-20 16:56:45 +02: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
Kim Alvefur
7be6630dfe util.datamapper: Remove leftover debug assert (Only Teal, not included in build) 2022-10-19 14:07:48 +02:00
Kim Alvefur
2269035c0d mod_blocklist: Add option 'migrate_legacy_blocking' to disable migration from mod_privacy
Tiny performance improvement for new users by skipping this check. Most
servers should have gone trough the migration for all active users long
ago.

As a suitable first step of phasing out this code, we make it possible
to disable it first. Later it can be disabled by default, before finally
the code is deleted.
2022-10-17 15:20:06 +02:00
Kim Alvefur
aa8f7d1533 util.stanza: Add new methods to Teal interface specification
at_top: 21217f7e82b9
get_child_with_attr: 39164ea2ab9e
get_child_attr: e8934ce6ea0f
add_error: 5f182bccf33f
2022-10-17 15:13:04 +02:00
Matthew Wild
fdf61a38cf mod_c2s: Include stream attributes in stream-features event
We need this to access 'from' in SASL2/FAST.
2022-10-14 11:21:16 +01:00
Matthew Wild
32c38bc249 mod_tokenauth: Allow attaching an arbitrary data table to a token 2022-10-13 22:46:19 +01: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
120e01f162 util.jid: Simplify boolean logic in conditionals 2022-10-11 13:35:09 +01:00
Matthew Wild
6ae850c963 util.jid: Remove redundant check from split() (micro-optimization?) 2022-10-11 13:33:19 +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
02352c6dcf .luacheckrc: Add test_mutants.sh.lua to the ignore list 2022-10-11 13:12:26 +01:00
Matthew Wild
8434b4be4b tools: Add initial mutation testing script 2022-10-11 11:53:48 +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
Matthew Wild
ffa72d829b util.dbuffer: Add efficient shortcuts for discard() in certain cases
If the buffer is already empty, nothing to do. If we're throwing away the
whole buffer, we can just empty it and avoid read_chunk() (which in turn
may collapse()). These shortcuts are much more efficient.
2022-10-11 11:37:55 +01:00
Matthew Wild
586a0d8493 util.dbuffer: Remove redundant code (read_chunk() cannot fail at this point) 2022-10-11 11:34:47 +01:00
Kim Alvefur
f150495cea Merge 0.12->trunk 2022-10-09 15:50:25 +02:00
Kim Alvefur
bca11bfc73 util.jsonschema: Use same integer/float logic on Lua 5.2 and 5.3
Fixes test case type.json:0:1 covering treatment of 1.0 as an integer
according to the JSON definition
2022-10-09 15:42:25 +02:00
Kim Alvefur
060dc12013 util.jsonschema: Fix Lua 5.2 integer compat
math.type() is unavailable before Lua 5.3 so this should use the compat
function added at the top
2022-10-09 15:38:36 +02: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
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
a79238fb37 util.promise: Remove line that was supposed to be removed in eb9814372c54 2022-10-07 17:45:23 +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
d08ddc1f4a util.roles: Add a :policies() method to iterate through available policies
We don't expose the policies directly, to force people to go through :may().
However, there are times when we really just need to know what policies a
role has inside it (e.g. for reporting or debugging purposes).
2022-10-07 17:01:35 +01:00
Matthew Wild
bda9ea678c util.roles: Add tests 2022-10-07 16:58:52 +01:00
Matthew Wild
d6863b51b9 util.roles: Return nil if the role has no explicit policy (fixes inheritance)
Previously, if the first inherited role had no opinion, it returned false and
prevented further consultation of other inherited roles.

This bug was found thanks to the implementation of missing test cases
identified through mutation testing.
2022-10-07 16:58:08 +01:00