aboutsummaryrefslogblamecommitdiffstats
path: root/packages/contracts/src/utils/assertions.ts
blob: 1e8d58b9f8cd13000d50b2a20d9896690335a490 (plain) (tree)
1
2
3
4
5
6
7
8
9


                             
                                        




                                                                             
                                                                                             








                                                                                  
 











                                                                                
import * as chai from 'chai';
import * as _ from 'lodash';

import { constants } from './constants';

const expect = chai.expect;

// throws if the given promise does not reject with one of two expected error
// messages.
export function expectRevertOrAlwaysFailingTransaction<T>(p: Promise<T>): PromiseLike<void> {
    return expect(p)
        .to.be.rejected()
        .then(e => {
            expect(e).to.satisfy(
                (err: Error) =>
                    _.includes(err.message, constants.REVERT) ||
                    _.includes(err.message, constants.ALWAYS_FAILING_TRANSACTION),
            );
        });
}

export function expectInsufficientFunds<T>(p: Promise<T>): PromiseLike<void> {
    return expect(p)
        .to.be.rejected()
        .then(e => {
            expect(e).to.satisfy(
                (err: Error) =>
                    _.includes(err.message, 'insufficient funds') ||
                    _.includes(err.message, "sender doesn't have enough funds"),
            );
        });
}