* Sketch * Migrate all tests to test-env * Finish migration to test-env * Add config * Work on GSN tests * Migrate to newer test-env version and loader syntax * Add GSN setup * Finish test-env migration * Setup coverage using test-env * Migrate to npm package * Fix package.json * Add compile step to CI * Add comment on coverage setup * Remove dependency on @truffle/contract * Fix package-lock merge * Fix linter errors * Upgrade test-environment, depend locally on ganche-coverage * Improve coverage script * Improve sign.js API * Move accounts destructuring to describe block * Switch to prebuilt ethereumjs-vm package * Upgrade test-enviroment version * use workspace in circleci config * remove unnecessary npx
37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
const { contract } = require('@openzeppelin/test-environment');
|
|
const { expectRevert } = require('@openzeppelin/test-helpers');
|
|
|
|
const { expect } = require('chai');
|
|
|
|
const ReentrancyMock = contract.fromArtifact('ReentrancyMock');
|
|
const ReentrancyAttack = contract.fromArtifact('ReentrancyAttack');
|
|
|
|
describe('ReentrancyGuard', function () {
|
|
beforeEach(async function () {
|
|
this.reentrancyMock = await ReentrancyMock.new();
|
|
expect(await this.reentrancyMock.counter()).to.be.bignumber.equal('0');
|
|
});
|
|
|
|
it('should not allow remote callback', async function () {
|
|
const attacker = await ReentrancyAttack.new();
|
|
await expectRevert(
|
|
this.reentrancyMock.countAndCall(attacker.address), 'ReentrancyAttack: failed call');
|
|
});
|
|
|
|
// The following are more side-effects than intended behavior:
|
|
// I put them here as documentation, and to monitor any changes
|
|
// in the side-effects.
|
|
|
|
it('should not allow local recursion', async function () {
|
|
await expectRevert(
|
|
this.reentrancyMock.countLocalRecursive(10), 'ReentrancyGuard: reentrant call'
|
|
);
|
|
});
|
|
|
|
it('should not allow indirect local recursion', async function () {
|
|
await expectRevert(
|
|
this.reentrancyMock.countThisRecursive(10), 'ReentrancyMock: failed call'
|
|
);
|
|
});
|
|
});
|