Commit graph

22 commits

Author SHA1 Message Date
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
Kim Alvefur
cc84e83895 util.promise: Fix test
Could not reproduce locally but it complained in CI that
> spec/util_promise_spec.lua:676: Cannot spy on type 'nil', only on functions or callable elements
2021-11-26 22:38:07 +01:00
Kim Alvefur
a35dd91a12 util.promise: Support delayed promise execution 2019-01-05 07:08:24 +01:00
Kim Alvefur
c506269ff5 Fix various spelling errors (thanks codespell)
Also special thanks to timeless, for wordlessly reminding me to check
for typos.
2021-07-27 00:13:18 +02: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
Matthew Wild
9e0186b0ed util.promise: Add all_settled, which follows semantics of allSettled from ES2020 2020-06-08 14:01:02 +01:00
Matthew Wild
843104372c util.promise: Add some additional tests to cover callback return values 2019-09-30 08:22:30 +01:00
Matthew Wild
37bedc7314 util.promise: Add tests ensuring returning a promise resolves the current promise with that promise 2018-10-26 09:23:00 +01:00
Matthew Wild
201dbb74cc util.promise tests: Fix declared but unused variables 2018-10-25 15:33:46 +01:00
Matthew Wild
e6ff6e333c util.promise: Fix missing parameters 2018-10-25 15:24:52 +01:00
Matthew Wild
b74a643e34 util.promise: Ensure chained promises always receive a value/rejection even if an intermediate promise has no handlers 2018-10-25 14:38:00 +01:00
Matthew Wild
05b4064188 util.promise: Add promise.try() 2018-10-18 18:03:31 +01:00
Matthew Wild
681b25e427 util.promise: Add promise:finally() 2018-10-18 12:13:17 +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
Matthew Wild
bdc5ef569d util.promise tests: Fix luacheck warnings 2018-10-10 18:02:36 +01:00
Matthew Wild
e557cfb012 util.promise: ES6-like API for promises 2018-10-10 17:45:19 +01:00