Replace error strings with custom errors (#4261)

This commit is contained in:
Francisco Giordano
2023-06-06 01:08:31 -03:00
parent 253bfa68c2
commit 99a4cfca17
133 changed files with 3157 additions and 1204 deletions

View File

@ -1,19 +1,37 @@
const { config } = require('hardhat');
const { expect } = require('chai');
const optimizationsEnabled = config.solidity.compilers.some(c => c.settings.optimizer.enabled);
/** Revert handler that supports custom errors. */
async function expectRevertCustomError(promise, reason) {
async function expectRevertCustomError(promise, expectedErrorName, args) {
try {
await promise;
expect.fail("Expected promise to throw but it didn't");
} catch (revert) {
if (reason) {
if (!Array.isArray(args)) {
expect.fail('Expected 3rd array parameter for error arguments');
}
if (expectedErrorName) {
if (optimizationsEnabled) {
// Optimizations currently mess with Hardhat's decoding of custom errors
expect(revert.message).to.include.oneOf([reason, 'unrecognized return data or custom error']);
expect(revert.message).to.include.oneOf([expectedErrorName, 'unrecognized return data or custom error']);
} else {
expect(revert.message).to.include(reason);
const [, error] = revert.message.match(/'(.*)'/);
if (!/([A-Z])\w+\(.*\)/g.test(error)) {
expect.fail(`Couldn't parse "${error}" as a custom error`);
}
const [, errorName] = error.match(/(\w+)\(.*\)/);
const argMatches = [...error.replace(errorName, '').matchAll(/(0x[0-9A-Fa-f]+|-?\d+|\w+)/g)];
expect(errorName).to.be.equal(
expectedErrorName,
`Unexpected custom error name (with found args: [${argMatches.map(([a]) => a)}])`,
);
// Coerce to string for comparison since `arg` can be either a number or hex.
const sanitizedExpected = args.map(arg => arg.toString().toLowerCase());
const sanitizedActual = argMatches.map(([arg]) => arg.toString().toLowerCase());
expect(sanitizedActual).to.have.members(sanitizedExpected, `Unexpected ${errorName} arguments`);
}
}
}