Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
assertive-as-promised
Advanced tools
Assertive as Promised extends Assertive for asserting things about standards-compliant promises. It is 100% backward-compatible, so all of the existing assertive documentation applies.
As of assertive-2.1.0
, this functionality has been rolled into
assertive itself. The only functional change is that you can no longer
pass functions-which-return-promises as arguments to resolves()
and
rejects()
- you should replace things like:
assert = require 'assertive-as-promised'
assert.rejects -> doSomething('blah')
with
assert = require 'assertive'
# this version will explode your test if there is a synchronous throw
# during the invocation of doSomething() (which may be a good thing -
# you can test for that behavior separately with assert.throws())
assert.rejects(doSomething('blah')).then (err) -> ...
# this version will turn any synchronous throw into a rejection which will
# be available as err
Promise = require 'bluebird'
assert.rejects(Promise.try -> doSomething('blah')).then (err) ->
This is best used with something like Mocha (version >= 1.18.0) which handles returned promises correctly. All of assertive's assertions are extended to accept promises as their argument to be tested and return a promise which will be resolved or rejected.
For all existing assertive functions, you may simply replace the
argument with a promise for an equivalent argument.
assert.equal('foo', funcThatReturnsAString())
becomes
assert.equal('foo', funcThatReturnsAPromiseForAString())
. Note that you may
get nicer and more consistent errors if you put any function calls that may
have a risk of throwing an exception synchronously inside a bluebird
Promise.try()
, thusly:
assert.equal('foo', Promise.try -> funcThatReturnsAPromiseForAString())
Note for throws()
and notThrows()
that they accept a function (which may
throw a synchronous exception) or a promise for a function (which
may throw a synchronous exception). The resolution status of the promise
itself is not being tested. Since you're often more interested in the
resolution status of the promise, there are two new functions:
rejects
and resolves
:
assert.rejects(-> funcThatReturnsAPromise(someArg))
takes as its
argument a promise OR a function that returns a promise. The equivalent
counterpart to notThrows
is called resolves
. rejects
returns a promise
for the rejection error, and thus composes nicely with other assertions.
{ runSync, runAsync } = require './some-library'
assert = require 'assertive-as-promised'
Promise = require 'bluebird'
# runAsync returns a promise
it 'runs synchronously', ->
assert.deepEqual 'got proper hash', { a: 42 }, runSync('good')
it 'fails synchronously', ->
assert.throws 'fails on bad', -> runSync('bad')
it 'runs asynchronously', ->
assert.deepEqual 'got proper hash', { a: 42 }, runAsync('good')
it 'fails asynchronously', ->
assert.rejects 'fails on bad', -> runAsync('bad')
fn = -> Promise.try -> throw 'kaboom'
it 'fails asynchronously with the proper error', ->
assert.equal 'kaboom', assert.rejects fn
Note that if you want to be able to put more than one asynchronous test in a
single it()
, you'll need to combine them somehow to make mocha-as-promised
happy, e.g.:
{ runAsync } = require './some-library'
assert = require 'assertive-as-promised'
Promise = require 'bluebird'
it 'runs and fails asynchronously', ->
Promise.all [
assert.deepEqual 'got proper hash', { a: 42 }, runAsync('good')
assert.rejects 'fails on bad', -> runAsync('bad')
]
(this may be bad style, depending on who you ask, but I find it useful if you
have it()
s with a lot of setup overhead)
src/aap.coffee
is the main library; it compiles to lib/aap.js
.test/assertive_test.coffee
is a copy of the assertive library tests, slightly modified to run correctly in our test environment (see comments at the top)1.0.4
8d9ebd1
chore: Apply latest nlm generatorFAQs
Extends assertive with promise support
The npm package assertive-as-promised receives a total of 0 weekly downloads. As such, assertive-as-promised popularity was classified as not popular.
We found that assertive-as-promised demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.