Matthew Wild
894fe1b808
util.promise: Some code relocation
2018-10-18 12:12:52 +01:00
Matthew Wild
7bcf751702
util.promise: Also support automatic resolution by returning a promise from an on_reject handler
...
Originally unimplemented because it wasn't clear to me what the correct behaviour was, but the A+
spec is clear that both onFulfilled and onRejected may return a promise.
2018-10-18 12:11:50 +01:00
Matthew Wild
0d3fa64b96
util.promise: Add additional test for promise.reject()
2018-10-18 12:04:14 +01:00
Matthew Wild
ef7d6ba99e
util.promise: Fix promise.reject() to return a rejected promise, and fix buggy test for it
2018-10-18 12:03:33 +01:00
Kim Alvefur
2de254acf7
core.moduleapi: Remove redundant condition
2018-10-18 00:49:29 +02:00
Kim Alvefur
2a573e5c5e
mod_http: Make sure path from http_external_url always ends with a slash ( fixes #1183 )
2018-10-14 14:01:57 +02:00
Kim Alvefur
2bb3772374
net.server_epoll: Special handling of signal interrupts
2018-10-12 03:22:09 +02:00
Kim Alvefur
afeb1f6f02
net.server_epoll: Ignore ENOENT when deregitering socket
...
It should not really happen
2018-10-12 03:21:11 +02:00
Kim Alvefur
bbf669b2c5
net.server_epoll: Graceful handling of registering already added socket
2018-10-12 03:20:09 +02:00
Kim Alvefur
ba2688c78d
util.http: Add tests for normalize_path
2018-10-14 14:32:02 +02:00
Kim Alvefur
0247a0e904
mod_http: Move normalize_path to util.http
2018-10-14 14:31:59 +02:00
Kim Alvefur
29c9d1f508
Merge 0.10->trunk
2018-10-14 14:19:21 +02:00
Matthew Wild
fcdc8d9ff1
mod_storage_sql: Fix issue number in comment that was fixed by 55b40f3fa659 ( fixes #1073 )
2018-10-13 08:17:58 +01:00
Matthew Wild
1faf1773a3
mod_storage_sql: Keep prosodyarchive_index unique constraint on non-MySQL DBs
2018-10-12 21:59:15 +01:00
Kim Alvefur
0ac9ea3a74
net.server: Swich method for connecting sockets with remotes
...
LuaSocket TCP sockets have have both :connect and :setpeername, which
are the exact same function, however UDP sockets only have :setpeername.
Switching to :setpeername allows most of this code to be generic wrt
TCP/UDP.
2018-10-12 17:36:34 +02:00
Kim Alvefur
e1aa03deaa
net.server_epoll: Check return conditions of early socket setup
2018-10-12 17:28:08 +02:00
Kim Alvefur
f2d9638627
net.server_epoll: Add support for the conn_type argument to addclient
2018-10-12 16:26:19 +02:00
Kim Alvefur
83e1a2af50
net.resolvers.basic: Suffix IPv4 TCP socket types with '4' to match eg 'tcp6'
2018-10-12 16:25:30 +02:00
Kim Alvefur
2104ac9fb0
net.server: Remove socket constructor fallback
...
Should no longer be needed
2018-10-12 16:24:49 +02:00
Kim Alvefur
284152ba25
util.dependencies: Add compat code for normalization of socket constructors
...
Old LuaSocket had only tcp() which was IPv4-only. LuaSocket ~3.0 adds a
tcp6() that creates a IPv6 socket. Some version moves tcp() to tcp4()
and adds an IP-version-agnostic tcp() constructor.
2018-10-12 16:21:16 +02:00
Matthew Wild
06cdd9edcd
mod_storage_sql: Change prosodyarchive_index to be non-unique ( fixes #1087 )
...
MySQL requires that the first 20 bytes are unique, even if they differ after
the first 20 bytes. This breaks e.g. pubsub/PEP nodes longer than 20 characters
that have common prefixes.
2018-10-11 19:23:21 +01:00
Matthew Wild
9423dbfdb3
mod_storage_sql: Have :users() throw an error on failure instead of returning non-iterator values
2018-10-11 19:15:46 +01:00
Kim Alvefur
93aa49462f
storagemanager tests: Also cover memory driver
2018-10-12 03:43:56 +02:00
Kim Alvefur
0f11cd3a54
mod_c2s: Fix fallback for missing session logger
2018-10-12 02:16:24 +02:00
Kim Alvefur
e2321c4d37
util.stanza: Set preserialize as freeze metamethod
2018-10-12 00:52:18 +02:00
Kim Alvefur
1ab9729aac
util.set: Add freeze metamethod
2018-10-12 00:51:56 +02:00
Kim Alvefur
15ba5f41b1
util.array: Add freeze metamethod
2018-10-12 00:51:52 +02:00
Kim Alvefur
1789a7adf8
util.serialization: Remove encoding of very large or very small numbers in scientific notation
...
Also difficult to describe this option, easier to remove it.
%.18g covers a very large range of numbers
2018-10-12 00:15:08 +02:00
Kim Alvefur
e0a16c75dc
util.serialization: Simpler metatable pre-processing
...
It was too difficult to describe what it did.
2018-10-12 00:13:24 +02:00
Kim Alvefur
8d941e5d0f
util.serialization: Use '=' prefix for chunk source description
...
Like in bd5e4485a245
2018-10-11 23:00:45 +02:00
Kim Alvefur
09c19925cc
util.serialization: Make check of prefix for optional hex encoding stricter
2018-10-11 22:59:26 +02:00
Kim Alvefur
a796f87cc3
util.serialization: Test table keys that are Lua keywords
2018-10-11 22:50:45 +02:00
Kim Alvefur
69f91fa214
util.serialization: Test that it rejects tables wit cycles
2018-10-11 22:48:08 +02:00
Kim Alvefur
e99c680a14
util.serialization: Make errors fatal by default (like the previous implementation)
2018-10-11 22:42:17 +02:00
Matthew Wild
21e358c847
mod_storage_sql: Workaround MySQL not supporting LIMIT subquery in archive truncate operations, fixes #1200
2018-10-11 18:20:09 +01:00
Kim Alvefur
f26390b484
util.poll: Fix inverted logic
2018-10-11 18:56:11 +02:00
Kim Alvefur
fda067d696
net.server_epoll: Assert successful creation of util.poll handle
2018-10-11 18:53:15 +02:00
Kim Alvefur
9547e0e66d
util.poll: Handle failed epoll FD creation
2018-10-11 18:52:12 +02:00
Kim Alvefur
22e0c16d4c
util.poll: Early return from __gc in case of no valid epoll FD
...
This could happen if the epoll FD has already been closed or
the epoll_create call failed
2018-10-11 18:50:04 +02:00
Kim Alvefur
0304fc6ba2
net.server_epoll: Update copyright year
2018-10-11 17:01:45 +02:00
Kim Alvefur
8a62a14e5d
net.server: Require IP address as argument to addclient (no DNS names)
...
The net.connect API should be used to resolve DNS names first
2018-10-11 15:48:30 +02:00
Matthew Wild
1c5c6c92c1
storagemanager tests: Remove debug print()
2018-10-11 14:18:38 +01:00
Matthew Wild
d422c3a4c0
storagemanager tests: Add many more archive tests, including (failing) cases for #1200 and #1073
2018-10-11 14:10:55 +01:00
Matthew Wild
2a92bf5c27
storagemanager tests: Add additional archive query tests
2018-10-11 13:29:14 +01:00
Matthew Wild
1f2e698290
.luacov: Add config for luacov, exclude spec/
2018-10-11 10:39:11 +01:00
Matthew Wild
2a36be1e9e
mod_storage_memory: Switch from '@' prefix to '=' for chunks, '@' is used to indicate a source file name only
2018-10-11 10:36:01 +01:00
Matthew Wild
6b841f66fd
storagemanager tests: Add some additional checks
2018-10-10 22:03:11 +01:00
Matthew Wild
038921d7e0
storagemanager tests: Add initial basic tests for archive stores
2018-10-10 22:00:37 +01:00
Kim Alvefur
044da0478a
mod_net_multiplex: Silence luacheck warnings
2018-10-10 21:56:47 +02:00
Kim Alvefur
9c1bbd8313
mod_net_multiplex: Remove exception from luacheck
2018-10-10 21:55:58 +02:00