123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- const ethSigUtil = require('eth-sig-util');
- const Wallet = require('ethereumjs-wallet').default;
- const { EIP712Domain } = require('../helpers/eip712');
- const { expectRevert, constants } = require('@openzeppelin/test-helpers');
- const { expect } = require('chai');
- const MinimalForwarder = artifacts.require('MinimalForwarder');
- const name = 'MinimalForwarder';
- const version = '0.0.1';
- contract('MinimalForwarder', function (accounts) {
- beforeEach(async function () {
- this.forwarder = await MinimalForwarder.new();
- this.domain = {
- name,
- version,
- chainId: await web3.eth.getChainId(),
- verifyingContract: this.forwarder.address,
- };
- this.types = {
- EIP712Domain,
- ForwardRequest: [
- { name: 'from', type: 'address' },
- { name: 'to', type: 'address' },
- { name: 'value', type: 'uint256' },
- { name: 'gas', type: 'uint256' },
- { name: 'nonce', type: 'uint256' },
- { name: 'data', type: 'bytes' },
- ],
- };
- });
- context('with message', function () {
- beforeEach(async function () {
- this.wallet = Wallet.generate();
- this.sender = web3.utils.toChecksumAddress(this.wallet.getAddressString());
- this.req = {
- from: this.sender,
- to: constants.ZERO_ADDRESS,
- value: '0',
- gas: '100000',
- nonce: Number(await this.forwarder.getNonce(this.sender)),
- data: '0x',
- };
- this.sign = ethSigUtil.signTypedMessage(
- this.wallet.getPrivateKey(),
- {
- data: {
- types: this.types,
- domain: this.domain,
- primaryType: 'ForwardRequest',
- message: this.req,
- },
- },
- );
- });
- context('verify', function () {
- context('valid signature', function () {
- beforeEach(async function () {
- expect(await this.forwarder.getNonce(this.req.from))
- .to.be.bignumber.equal(web3.utils.toBN(this.req.nonce));
- });
- it('success', async function () {
- expect(await this.forwarder.verify(this.req, this.sign)).to.be.equal(true);
- });
- afterEach(async function () {
- expect(await this.forwarder.getNonce(this.req.from))
- .to.be.bignumber.equal(web3.utils.toBN(this.req.nonce));
- });
- });
- context('invalid signature', function () {
- it('tampered from', async function () {
- expect(await this.forwarder.verify({ ...this.req, from: accounts[0] }, this.sign))
- .to.be.equal(false);
- });
- it('tampered to', async function () {
- expect(await this.forwarder.verify({ ...this.req, to: accounts[0] }, this.sign))
- .to.be.equal(false);
- });
- it('tampered value', async function () {
- expect(await this.forwarder.verify({ ...this.req, value: web3.utils.toWei('1') }, this.sign))
- .to.be.equal(false);
- });
- it('tampered nonce', async function () {
- expect(await this.forwarder.verify({ ...this.req, nonce: this.req.nonce + 1 }, this.sign))
- .to.be.equal(false);
- });
- it('tampered data', async function () {
- expect(await this.forwarder.verify({ ...this.req, data: '0x1742' }, this.sign))
- .to.be.equal(false);
- });
- it('tampered signature', async function () {
- const tamperedsign = web3.utils.hexToBytes(this.sign);
- tamperedsign[42] ^= 0xff;
- expect(await this.forwarder.verify(this.req, web3.utils.bytesToHex(tamperedsign)))
- .to.be.equal(false);
- });
- });
- });
- context('execute', function () {
- context('valid signature', function () {
- beforeEach(async function () {
- expect(await this.forwarder.getNonce(this.req.from))
- .to.be.bignumber.equal(web3.utils.toBN(this.req.nonce));
- });
- it('success', async function () {
- await this.forwarder.execute(this.req, this.sign); // expect to not revert
- });
- afterEach(async function () {
- expect(await this.forwarder.getNonce(this.req.from))
- .to.be.bignumber.equal(web3.utils.toBN(this.req.nonce + 1));
- });
- });
- context('invalid signature', function () {
- it('tampered from', async function () {
- await expectRevert(
- this.forwarder.execute({ ...this.req, from: accounts[0] }, this.sign),
- 'MinimalForwarder: signature does not match request',
- );
- });
- it('tampered to', async function () {
- await expectRevert(
- this.forwarder.execute({ ...this.req, to: accounts[0] }, this.sign),
- 'MinimalForwarder: signature does not match request',
- );
- });
- it('tampered value', async function () {
- await expectRevert(
- this.forwarder.execute({ ...this.req, value: web3.utils.toWei('1') }, this.sign),
- 'MinimalForwarder: signature does not match request',
- );
- });
- it('tampered nonce', async function () {
- await expectRevert(
- this.forwarder.execute({ ...this.req, nonce: this.req.nonce + 1 }, this.sign),
- 'MinimalForwarder: signature does not match request',
- );
- });
- it('tampered data', async function () {
- await expectRevert(
- this.forwarder.execute({ ...this.req, data: '0x1742' }, this.sign),
- 'MinimalForwarder: signature does not match request',
- );
- });
- it('tampered signature', async function () {
- const tamperedsign = web3.utils.hexToBytes(this.sign);
- tamperedsign[42] ^= 0xff;
- await expectRevert(
- this.forwarder.execute(this.req, web3.utils.bytesToHex(tamperedsign)),
- 'MinimalForwarder: signature does not match request',
- );
- });
- });
- });
- });
- });
|