Commit graph

605 commits

Author SHA1 Message Date
Matthew Wild
4e56658eb3 util.dbuffer: Add read_until() method 2021-06-29 13:48:14 +01:00
Kim Alvefur
c880dee2af mod_pubsub,mod_pep: Support "max" as 'pubsub#max_items'
Fixes #1643

API change: The argument to archive_itemstore() changes type to integer
2021-06-09 15:58:49 +02:00
Kim Alvefur
0516d96335 scansion: Really silence the certificates dir error
certificate_s_, plural, is the directory setting
2021-05-28 00:17:44 +02:00
Kim Alvefur
36ea4c5717 scansion: Silence an error from cert indexer due to missing certs dir 2021-05-27 15:49:57 +02:00
Kim Alvefur
4395895fef core.modulemanager: Inherit mod_server_contact_info onto components #1270 2021-05-27 11:18:42 +02:00
Kim Alvefur
a87492d53c mod_server_contact_info: Apply JID normalization 2020-09-11 18:34:06 +02:00
Kim Alvefur
8d24fc3852 util.datamapper: Fix spelling in tests 2021-03-28 14:00:21 +02:00
Kim Alvefur
483a869009 util.envload: Add basic test of envload() 2021-03-26 13:03:22 +01:00
Kim Alvefur
45acd03672 util.datamapper: Revert one special attribute to longer form
Had a name, using attr() broke it.
2021-03-26 13:01:16 +01:00
Kim Alvefur
f36d7d1161 util.datamapper: Use attribute convenience function throughout 2021-03-26 12:53:29 +01:00
Matthew Wild
d1ccd87d55 util.promise: Switch order of parameters to join()
This saves awkward fiddlery with varargs and also echoes the
signature of pcall/xpcall.
2021-03-25 15:08:22 +00:00
Matthew Wild
fec0d44e89 util.promise: all()/all_settled() pass through non-promise values 2021-03-25 14:32:32 +00:00
Matthew Wild
2141d9d94a util.promise: Add join() convenience method
Usage: promise.join(p1, p2, function (result1, result2)
  [...]
end)
2021-03-25 14:28:38 +00:00
Matthew Wild
3952fae8ce util.promise: Add support for arbitrary keys in all()/all_settled() 2021-03-25 13:51:16 +00:00
Kim Alvefur
d68de27a5d util.datamapper: Add test coverage of unwrapped arrays of objects
Should the xml name/ns go on the array or the items schema? The later
apparently.
2021-03-24 00:34:22 +01:00
Kim Alvefur
2040145780 util.datamapper: Deal with locally built stanzas missing xmlns
So the problem is that xmlns is not inherited when building a stanza,
and then :get_child(n, ns) with an explicit namespace does not find that
such child tags.

E.g.
local t = st.stanza("foo", { xmlns = "urn:example:bar" })
	:text_tag("hello", "world");
assert(t:get_child("hello", "urn:example:bar"), "This fails");

Meanwhile, during parsing (util.xmppstream or util.xml) child tags do
get the parents xmlns when not overriding them.

Thus, in the above example, if the stanza is passed trough
`t = util.xml.parse(tostring(t))` then the assert succeeds.

This change makes it so that it leaves out the namespace argument to
:get_child when it is the same as the current/parent namespace, which
behaves the same for both built and parsed stanzas.
2021-03-23 19:52:59 +01:00
Kim Alvefur
4f191a3239 util.datamapper: Complete array building support 2021-03-20 21:29:51 +01:00
Kim Alvefur
f5962d7193 util.datamapper: Finally implement support for parsing arrays 2021-03-20 20:45:06 +01:00
Kim Alvefur
7f04df223a util.datamapper: Fix arrays nesting one level too deep 2021-03-19 01:17:59 +01:00
Kim Alvefur
576b43151c util.datamapper: Limited support for unparsing simple arrays of strings 2021-03-18 13:07:10 +01:00
Kim Alvefur
c62c5b307e util.datamapper: Add initial support for parsing arrays 2021-03-18 12:57:25 +01:00
Kim Alvefur
9d25c9c9ac util.datamapper: Enumerated elements
E.g. error conditions or chat states.
2021-03-12 01:33:15 +01:00
Kim Alvefur
07889f274d util.datamapper: Add support for mapping of elements where only one attribute matters
E.g. <feature var='foo'/> in XEP-0030 and some other simple
specifications.
2021-03-07 12:48:49 +01:00
Kim Alvefur
7cd2803161 util.datamapper: Add logic for "boolean" tags here the presence means true 2021-03-07 01:41:39 +01:00
Kim Alvefur
d20ea9b87e util.datamapper: Invent extension for using tag name as value
Useful for certain enum-like uses where the element name is the relevant
information, e.g. chat states.
2021-03-06 23:14:23 +01:00
Kim Alvefur
d8e9e044f2 util.datamapper: Add 'unparse' for turning tables into XML 2021-03-07 00:57:36 +01:00
Kim Alvefur
081eb23c54 util.datamapper: Library for extracting data from stanzas
Based on the XML support in the OpenAPI specification.
2021-03-07 00:57:36 +01:00
Kim Alvefur
90e4a09661 mod_pubsub: Include <pubsub> with unsubscribe reply
XEP-0060 6.2.2

This is a MAY but it makes it nice and symmetric with the subscription
response. Reduces the need to remember which node you unsubscribed from.

Explicit > implicit etc.
2021-03-15 19:04:08 +01:00
Kim Alvefur
55fb091536 util.rsm: Increase test coverage
Test all fields in both directions in order to catch #1642
2021-03-06 18:22:52 +01:00
Kim Alvefur
4ecda569bd core.storagemanager: s/Multilpe/Multiple/ [codespell] 2021-03-05 15:04:45 +01:00
Kim Alvefur
a7ce8c8251 MUC: Add robot face test
See 6e051bfca12d
2021-03-02 13:52:19 +01:00
Kim Alvefur
cb489d06e1 util.datamanager: Add basic tests
Test all the things! Somewhat covered by the storagemanager tests, but
we don't currently don't have that automated as it needs SQL engines.
2021-02-09 23:25:30 +01:00
Kim Alvefur
fdacac857f util.cache: Add test for :table (fails on Lua 5.1) 2021-02-05 16:14:06 +01:00
Kim Alvefur
d4986121ac scansion tests: Give a title to HTTP Upload test 2021-02-03 22:13:33 +01:00
Kim Alvefur
0f0d32d335 mod_storage_sql: Implement map-like API for archives
Used by mod_http_file_share, muc moderation, etc.

Tests tweaked because they failed on stanza internals that happen
becasue of re-serialization. Namespaces differ since inheritance is
implicit when building but explicit after parsing.
2021-02-01 12:47:05 +01:00
Kim Alvefur
f307825a01 storage: Test reverse-ordered queries 2021-02-01 12:17:56 +01:00
Kim Alvefur
a262f03ca7 mod_mam: Remove obsolete queryid attribute from tests 2021-01-29 17:08:16 +01:00
Kim Alvefur
3ab51f6864 mod_http_file_share: Reject invalid file sizes 2021-01-27 00:36:49 +01:00
Kim Alvefur
456ca909e2 mod_http_file_share: Add file type filter
Unlike mod_http_upload, this can't be bypassed by uploading with a
different file extension.
2021-01-26 14:53:43 +01:00
Kim Alvefur
a98f3a3e64 mod_http_file_share: Add file size limit (default 10M) 2021-01-26 14:53:24 +01:00
Kim Alvefur
ea3b09dea8 mod_http_file_share: Validate that filename does not contain '/' 2021-01-26 14:52:37 +01:00
Kim Alvefur
4be9b33741 mod_http_file_share: Let's write another XEP-0363 implementation
This variant is meant to improve upon mod_http_upload in some ways:

* Handle files much of arbitrary size efficiently
* Allow GET and PUT URLs to be different
* Remember Content-Type sent by client
* Avoid dependency on mod_http_files
* Built-in way to delegate storage to another httpd
2021-01-26 03:19:17 +01:00
Kim Alvefur
800af648de util.interpolation: Add test for #1623 2021-01-25 21:27:05 +01:00
Kim Alvefur
3bb2342add mod_mam: Workaround scansion test flakyness
The empty ID fields are sometimes accepted, sometimes not.
2021-01-13 16:26:56 +01:00
Kim Alvefur
d5fb7e2510 storage tests: Add test for querying a set of IDs 2021-01-12 18:03:40 +01:00
Kim Alvefur
87044c466f storage tests: Test querys with both before and after IDs
Needed for extended MAM, supported by SQL storage already.
2021-01-12 15:52:14 +01:00
Kim Alvefur
9e5dbb4217 mod_mam: Implement extended MAM metadata query 2020-11-30 23:42:13 +01:00
Kim Alvefur
af189d8103 mod_mam: Add support for page flipping
This was easy. Needs tests tho, 100% chance of the logic being
backwards.
2020-11-30 21:12:01 +01:00
Kim Alvefur
b96341a58f mod_mam: Advertise extended MAM 0.7.x behind a feature flag
In order to ease testing until the extended feautres are all
implemented.

Also TODOs for all the sub-features.
2020-11-30 21:00:45 +01:00
Kim Alvefur
5760514f5e scansion: Allow specifying a logfile for prosody via environment
This should allow Buildbot to pick up those logs along with scansions
2021-01-05 21:04:06 +01:00