Changed before for beforeAll, refactored Bouncer tests. (#1094)
* Changed before for beforeAll, refactored Bouncer tests. * Fixed linter errors. * fix: updates for SignatureBouncer tests and voucher construction
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
const { assertRevert } = require('../helpers/assertRevert');
|
||||
const { signHex } = require('../helpers/sign');
|
||||
const { getBouncerSigner } = require('../helpers/sign');
|
||||
|
||||
const Bouncer = artifacts.require('SignatureBouncerMock');
|
||||
|
||||
@ -7,274 +7,239 @@ require('chai')
|
||||
.use(require('chai-as-promised'))
|
||||
.should();
|
||||
|
||||
const getSigner = (contract, signer, data = '') => (addr) => {
|
||||
// via: https://github.com/OpenZeppelin/zeppelin-solidity/pull/812/files
|
||||
const message = contract.address.substr(2) + addr.substr(2) + data;
|
||||
// ^ substr to remove `0x` because in solidity the address is a set of byes, not a string `0xabcd`
|
||||
return signHex(signer, message);
|
||||
};
|
||||
const UINT_VALUE = 23;
|
||||
const BYTES_VALUE = web3.toHex('test');
|
||||
const INVALID_SIGNATURE = '0xabcd';
|
||||
|
||||
const getMethodId = (methodName, ...paramTypes) => {
|
||||
// methodId is a sha3 of the first 4 bytes after 0x of 'method(paramType1,...)'
|
||||
return web3.sha3(`${methodName}(${paramTypes.join(',')})`).substr(2, 8);
|
||||
};
|
||||
|
||||
const stripAndPadHexValue = (hexVal, sizeInBytes, start = true) => {
|
||||
// strip 0x from the font and pad with 0's for
|
||||
const strippedHexVal = hexVal.substr(2);
|
||||
return start ? strippedHexVal.padStart(sizeInBytes * 2, 0) : strippedHexVal.padEnd(sizeInBytes * 2, 0);
|
||||
};
|
||||
|
||||
contract('Bouncer', ([_, owner, authorizedUser, anyone, bouncerAddress, newBouncer]) => {
|
||||
before(async function () {
|
||||
contract('Bouncer', ([_, owner, anyone, bouncerAddress, authorizedUser]) => {
|
||||
beforeEach(async function () {
|
||||
this.bouncer = await Bouncer.new({ from: owner });
|
||||
this.roleBouncer = await this.bouncer.ROLE_BOUNCER();
|
||||
this.genSig = getSigner(this.bouncer, bouncerAddress);
|
||||
this.uintValue = 23;
|
||||
this.checkValidSignatureAndMethodId = getMethodId('checkValidSignatureAndMethod', 'address', 'bytes');
|
||||
this.uintValueData = stripAndPadHexValue(web3.toHex(this.uintValue), 32);
|
||||
this.authorizedUserData = stripAndPadHexValue(authorizedUser, 32);
|
||||
this.bytesValue = web3.toHex('bytesValue');
|
||||
this.validateSignatureAndDataMsgData = [
|
||||
getMethodId('checkValidSignatureAndData', 'address', 'bytes', 'uint256', 'bytes'),
|
||||
stripAndPadHexValue(authorizedUser, 32),
|
||||
stripAndPadHexValue(web3.toHex(32 * 4), 32), // bytesValue location
|
||||
this.uintValueData,
|
||||
stripAndPadHexValue(web3.toHex(32 * 6), 32), // sig location
|
||||
stripAndPadHexValue(web3.toHex(this.bytesValue.substr(2).length / 2), 32), // bytesValue size
|
||||
stripAndPadHexValue(this.bytesValue, 32, false), // bytesValue
|
||||
];
|
||||
});
|
||||
|
||||
it('should have a default owner of self', async function () {
|
||||
const theOwner = await this.bouncer.owner();
|
||||
theOwner.should.eq(owner);
|
||||
});
|
||||
|
||||
it('should allow owner to add a bouncer', async function () {
|
||||
await this.bouncer.addBouncer(bouncerAddress, { from: owner });
|
||||
const hasRole = await this.bouncer.hasRole(bouncerAddress, this.roleBouncer);
|
||||
hasRole.should.eq(true);
|
||||
});
|
||||
|
||||
it('should not allow anyone to add a bouncer', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.addBouncer(bouncerAddress, { from: anyone })
|
||||
);
|
||||
});
|
||||
|
||||
context('modifiers', () => {
|
||||
it('should allow valid signature for sender', async function () {
|
||||
await this.bouncer.onlyWithValidSignature(
|
||||
this.genSig(authorizedUser),
|
||||
{ from: authorizedUser }
|
||||
);
|
||||
});
|
||||
it('should not allow invalid signature for sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignature(
|
||||
'abcd',
|
||||
{ from: authorizedUser }
|
||||
)
|
||||
);
|
||||
});
|
||||
it('should allow valid signature with a valid method for sender', async function () {
|
||||
const sig = getSigner(
|
||||
this.bouncer,
|
||||
bouncerAddress,
|
||||
getMethodId('onlyWithValidSignatureAndMethod', 'bytes')
|
||||
)(authorizedUser);
|
||||
await this.bouncer.onlyWithValidSignatureAndMethod(
|
||||
sig,
|
||||
{ from: authorizedUser }
|
||||
);
|
||||
});
|
||||
it('should not allow invalid signature with method for sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignatureAndMethod(
|
||||
'abcd',
|
||||
{ from: authorizedUser }
|
||||
)
|
||||
);
|
||||
});
|
||||
it('should allow valid signature with a valid data for sender', async function () {
|
||||
const sig = getSigner(
|
||||
this.bouncer,
|
||||
bouncerAddress,
|
||||
[
|
||||
getMethodId('onlyWithValidSignatureAndData', 'uint256', 'bytes'),
|
||||
this.uintValueData,
|
||||
stripAndPadHexValue(web3.toHex(64), 32),
|
||||
].join('')
|
||||
)(authorizedUser);
|
||||
await this.bouncer.onlyWithValidSignatureAndData(
|
||||
this.uintValue,
|
||||
sig,
|
||||
{ from: authorizedUser }
|
||||
);
|
||||
});
|
||||
it('should not allow invalid signature with data for sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignatureAndData(
|
||||
this.uintValue,
|
||||
'abcd',
|
||||
{ from: authorizedUser }
|
||||
)
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
context('signatures', () => {
|
||||
it('should accept valid message for valid user', async function () {
|
||||
const isValid = await this.bouncer.checkValidSignature(
|
||||
authorizedUser,
|
||||
this.genSig(authorizedUser)
|
||||
);
|
||||
isValid.should.eq(true);
|
||||
});
|
||||
it('should not accept invalid message for valid user', async function () {
|
||||
const isValid = await this.bouncer.checkValidSignature(
|
||||
authorizedUser,
|
||||
this.genSig(anyone)
|
||||
);
|
||||
isValid.should.eq(false);
|
||||
});
|
||||
it('should not accept invalid message for invalid user', async function () {
|
||||
const isValid = await this.bouncer.checkValidSignature(
|
||||
anyone,
|
||||
'abcd'
|
||||
);
|
||||
isValid.should.eq(false);
|
||||
});
|
||||
it('should not accept valid message for invalid user', async function () {
|
||||
const isValid = await this.bouncer.checkValidSignature(
|
||||
anyone,
|
||||
this.genSig(authorizedUser)
|
||||
);
|
||||
isValid.should.eq(false);
|
||||
});
|
||||
it('should accept valid message with valid method for valid user', async function () {
|
||||
const sig = getSigner(
|
||||
this.bouncer,
|
||||
bouncerAddress,
|
||||
getMethodId('checkValidSignatureAndMethod', 'address', 'bytes')
|
||||
)(authorizedUser);
|
||||
const isValid = await this.bouncer.checkValidSignatureAndMethod(
|
||||
authorizedUser,
|
||||
sig
|
||||
);
|
||||
isValid.should.eq(true);
|
||||
});
|
||||
it('should not accept valid message with an invalid method for valid user', async function () {
|
||||
const sig = getSigner(
|
||||
this.bouncer,
|
||||
bouncerAddress,
|
||||
getMethodId('invalidMethod', 'address', 'bytes')
|
||||
)(authorizedUser);
|
||||
const isValid = await this.bouncer.checkValidSignatureAndMethod(
|
||||
authorizedUser,
|
||||
sig
|
||||
);
|
||||
isValid.should.eq(false);
|
||||
});
|
||||
it('should not accept valid message with a valid method for an invalid user', async function () {
|
||||
const sig = getSigner(
|
||||
this.bouncer,
|
||||
bouncerAddress,
|
||||
this.checkValidSignatureAndMethodId
|
||||
)(authorizedUser);
|
||||
const isValid = await this.bouncer.checkValidSignatureAndMethod(
|
||||
anyone,
|
||||
sig
|
||||
);
|
||||
isValid.should.eq(false);
|
||||
});
|
||||
it('should accept valid method with valid params for valid user', async function () {
|
||||
const sig = getSigner(
|
||||
this.bouncer,
|
||||
bouncerAddress,
|
||||
this.validateSignatureAndDataMsgData.join('')
|
||||
)(authorizedUser);
|
||||
const isValid = await this.bouncer.checkValidSignatureAndData(
|
||||
authorizedUser,
|
||||
this.bytesValue,
|
||||
this.uintValue,
|
||||
sig
|
||||
);
|
||||
isValid.should.eq(true);
|
||||
});
|
||||
it('should not accept an invalid method with valid params for valid user', async function () {
|
||||
this.validateSignatureAndDataMsgData[0] = getMethodId('invalidMethod', 'address', 'bytes', 'uint256', 'bytes');
|
||||
const sig = getSigner(
|
||||
this.bouncer,
|
||||
bouncerAddress,
|
||||
this.validateSignatureAndDataMsgData.join('')
|
||||
)(authorizedUser);
|
||||
const isValid = await this.bouncer.checkValidSignatureAndData(
|
||||
authorizedUser,
|
||||
this.bytesValue,
|
||||
this.uintValue,
|
||||
sig
|
||||
);
|
||||
isValid.should.eq(false);
|
||||
});
|
||||
it('should not accept valid method with invalid params for valid user', async function () {
|
||||
const sig = getSigner(
|
||||
this.bouncer,
|
||||
bouncerAddress,
|
||||
this.validateSignatureAndDataMsgData.join('')
|
||||
)(authorizedUser);
|
||||
const isValid = await this.bouncer.checkValidSignatureAndData(
|
||||
authorizedUser,
|
||||
this.bytesValue,
|
||||
500,
|
||||
sig
|
||||
);
|
||||
isValid.should.eq(false);
|
||||
});
|
||||
it('should not accept valid method with valid params for invalid user', async function () {
|
||||
const sig = getSigner(
|
||||
this.bouncer,
|
||||
bouncerAddress,
|
||||
this.validateSignatureAndDataMsgData.join('')
|
||||
)(authorizedUser);
|
||||
const isValid = await this.bouncer.checkValidSignatureAndData(
|
||||
anyone,
|
||||
this.bytesValue,
|
||||
this.uintValue,
|
||||
sig
|
||||
);
|
||||
isValid.should.eq(false);
|
||||
});
|
||||
});
|
||||
|
||||
context('management', () => {
|
||||
it('should not allow anyone to add bouncers', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.addBouncer(newBouncer, { from: anyone })
|
||||
);
|
||||
it('has a default owner of self', async function () {
|
||||
(await this.bouncer.owner()).should.eq(owner);
|
||||
});
|
||||
|
||||
it('should be able to add bouncers', async function () {
|
||||
await this.bouncer.addBouncer(newBouncer, { from: owner })
|
||||
.should.be.fulfilled;
|
||||
it('allows the owner to add a bouncer', async function () {
|
||||
await this.bouncer.addBouncer(bouncerAddress, { from: owner });
|
||||
(await this.bouncer.hasRole(bouncerAddress, this.roleBouncer)).should.eq(true);
|
||||
});
|
||||
|
||||
it('should not allow adding invalid address', async function () {
|
||||
it('does not allow adding an invalid address', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.addBouncer('0x0', { from: owner })
|
||||
);
|
||||
});
|
||||
|
||||
it('should not allow anyone to remove bouncer', async function () {
|
||||
it('allows the owner to remove a bouncer', async function () {
|
||||
await this.bouncer.addBouncer(bouncerAddress, { from: owner });
|
||||
|
||||
await this.bouncer.removeBouncer(bouncerAddress, { from: owner });
|
||||
(await this.bouncer.hasRole(bouncerAddress, this.roleBouncer)).should.eq(false);
|
||||
});
|
||||
|
||||
it('does not allow anyone to add a bouncer', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.removeBouncer(newBouncer, { from: anyone })
|
||||
this.bouncer.addBouncer(bouncerAddress, { from: anyone })
|
||||
);
|
||||
});
|
||||
|
||||
it('should be able to remove bouncers', async function () {
|
||||
await this.bouncer.removeBouncer(newBouncer, { from: owner })
|
||||
.should.be.fulfilled;
|
||||
it('does not allow anyone to remove a bouncer', async function () {
|
||||
await this.bouncer.addBouncer(bouncerAddress, { from: owner });
|
||||
|
||||
await assertRevert(
|
||||
this.bouncer.removeBouncer(bouncerAddress, { from: anyone })
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
context('with bouncer address', () => {
|
||||
beforeEach(async function () {
|
||||
await this.bouncer.addBouncer(bouncerAddress, { from: owner });
|
||||
this.signFor = getBouncerSigner(this.bouncer, bouncerAddress);
|
||||
});
|
||||
|
||||
describe('modifiers', () => {
|
||||
context('plain signature', () => {
|
||||
it('allows valid signature for sender', async function () {
|
||||
await this.bouncer.onlyWithValidSignature(this.signFor(authorizedUser), { from: authorizedUser });
|
||||
});
|
||||
|
||||
it('does not allow invalid signature for sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignature(INVALID_SIGNATURE, { from: authorizedUser })
|
||||
);
|
||||
});
|
||||
|
||||
it('does not allow valid signature for other sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignature(this.signFor(authorizedUser), { from: anyone })
|
||||
);
|
||||
});
|
||||
|
||||
it('does not allow valid signature for method for sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignature(this.signFor(authorizedUser, 'onlyWithValidSignature'),
|
||||
{ from: authorizedUser })
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
context('method signature', () => {
|
||||
it('allows valid signature with correct method for sender', async function () {
|
||||
await this.bouncer.onlyWithValidSignatureAndMethod(
|
||||
this.signFor(authorizedUser, 'onlyWithValidSignatureAndMethod'), { from: authorizedUser }
|
||||
);
|
||||
});
|
||||
|
||||
it('does not allow invalid signature with correct method for sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignatureAndMethod(INVALID_SIGNATURE, { from: authorizedUser })
|
||||
);
|
||||
});
|
||||
|
||||
it('does not allow valid signature with correct method for other sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignatureAndMethod(
|
||||
this.signFor(authorizedUser, 'onlyWithValidSignatureAndMethod'), { from: anyone }
|
||||
)
|
||||
);
|
||||
});
|
||||
|
||||
it('does not allow valid method signature with incorrect method for sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignatureAndMethod(this.signFor(authorizedUser, 'theWrongMethod'),
|
||||
{ from: authorizedUser })
|
||||
);
|
||||
});
|
||||
|
||||
it('does not allow valid non-method signature method for sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignatureAndMethod(this.signFor(authorizedUser), { from: authorizedUser })
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
context('method and data signature', () => {
|
||||
it('allows valid signature with correct method and data for sender', async function () {
|
||||
await this.bouncer.onlyWithValidSignatureAndData(UINT_VALUE,
|
||||
this.signFor(authorizedUser, 'onlyWithValidSignatureAndData', [UINT_VALUE]), { from: authorizedUser }
|
||||
);
|
||||
});
|
||||
|
||||
it('does not allow invalid signature with correct method and data for sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignatureAndData(UINT_VALUE, INVALID_SIGNATURE, { from: authorizedUser })
|
||||
);
|
||||
});
|
||||
|
||||
it('does not allow valid signature with correct method and incorrect data for sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignatureAndData(UINT_VALUE + 10,
|
||||
this.signFor(authorizedUser, 'onlyWithValidSignatureAndData', [UINT_VALUE]),
|
||||
{ from: authorizedUser }
|
||||
)
|
||||
);
|
||||
});
|
||||
|
||||
it('does not allow valid signature with correct method and data for other sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignatureAndData(UINT_VALUE,
|
||||
this.signFor(authorizedUser, 'onlyWithValidSignatureAndData', [UINT_VALUE]),
|
||||
{ from: anyone }
|
||||
)
|
||||
);
|
||||
});
|
||||
|
||||
it('does not allow valid non-method signature for sender', async function () {
|
||||
await assertRevert(
|
||||
this.bouncer.onlyWithValidSignatureAndData(UINT_VALUE,
|
||||
this.signFor(authorizedUser), { from: authorizedUser }
|
||||
)
|
||||
);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
context('signature validation', () => {
|
||||
context('plain signature', () => {
|
||||
it('validates valid signature for valid user', async function () {
|
||||
(await this.bouncer.checkValidSignature(authorizedUser, this.signFor(authorizedUser))).should.eq(true);
|
||||
});
|
||||
|
||||
it('does not validate invalid signature for valid user', async function () {
|
||||
(await this.bouncer.checkValidSignature(authorizedUser, INVALID_SIGNATURE)).should.eq(false);
|
||||
});
|
||||
|
||||
it('does not validate valid signature for anyone', async function () {
|
||||
(await this.bouncer.checkValidSignature(anyone, this.signFor(authorizedUser))).should.eq(false);
|
||||
});
|
||||
|
||||
it('does not validate valid signature for method for valid user', async function () {
|
||||
(await this.bouncer.checkValidSignature(authorizedUser, this.signFor(authorizedUser, 'checkValidSignature'))
|
||||
).should.eq(false);
|
||||
});
|
||||
});
|
||||
|
||||
context('method signature', () => {
|
||||
it('validates valid signature with correct method for valid user', async function () {
|
||||
(await this.bouncer.checkValidSignatureAndMethod(authorizedUser,
|
||||
this.signFor(authorizedUser, 'checkValidSignatureAndMethod'))
|
||||
).should.eq(true);
|
||||
});
|
||||
|
||||
it('does not validate invalid signature with correct method for valid user', async function () {
|
||||
(await this.bouncer.checkValidSignatureAndMethod(authorizedUser, INVALID_SIGNATURE)).should.eq(false);
|
||||
});
|
||||
|
||||
it('does not validate valid signature with correct method for anyone', async function () {
|
||||
(await this.bouncer.checkValidSignatureAndMethod(anyone,
|
||||
this.signFor(authorizedUser, 'checkValidSignatureAndMethod'))
|
||||
).should.eq(false);
|
||||
});
|
||||
|
||||
it('does not validate valid non-method signature with correct method for valid user', async function () {
|
||||
(await this.bouncer.checkValidSignatureAndMethod(authorizedUser, this.signFor(authorizedUser))
|
||||
).should.eq(false);
|
||||
});
|
||||
});
|
||||
|
||||
context('method and data signature', () => {
|
||||
it('validates valid signature with correct method and data for valid user', async function () {
|
||||
(await this.bouncer.checkValidSignatureAndData(authorizedUser, BYTES_VALUE, UINT_VALUE,
|
||||
this.signFor(authorizedUser, 'checkValidSignatureAndData', [authorizedUser, BYTES_VALUE, UINT_VALUE]))
|
||||
).should.eq(true);
|
||||
});
|
||||
|
||||
it('does not validate invalid signature with correct method and data for valid user', async function () {
|
||||
(await this.bouncer.checkValidSignatureAndData(authorizedUser, BYTES_VALUE, UINT_VALUE, INVALID_SIGNATURE)
|
||||
).should.eq(false);
|
||||
});
|
||||
|
||||
it('does not validate valid signature with correct method and incorrect data for valid user',
|
||||
async function () {
|
||||
(await this.bouncer.checkValidSignatureAndData(authorizedUser, BYTES_VALUE, UINT_VALUE + 10,
|
||||
this.signFor(authorizedUser, 'checkValidSignatureAndData', [authorizedUser, BYTES_VALUE, UINT_VALUE]))
|
||||
).should.eq(false);
|
||||
}
|
||||
);
|
||||
|
||||
it('does not validate valid signature with correct method and data for anyone', async function () {
|
||||
(await this.bouncer.checkValidSignatureAndData(anyone, BYTES_VALUE, UINT_VALUE,
|
||||
this.signFor(authorizedUser, 'checkValidSignatureAndData', [authorizedUser, BYTES_VALUE, UINT_VALUE]))
|
||||
).should.eq(false);
|
||||
});
|
||||
|
||||
it('does not validate valid non-method-data signature with correct method and data for valid user',
|
||||
async function () {
|
||||
(await this.bouncer.checkValidSignatureAndData(authorizedUser, BYTES_VALUE, UINT_VALUE,
|
||||
this.signFor(authorizedUser, 'checkValidSignatureAndData'))
|
||||
).should.eq(false);
|
||||
}
|
||||
);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user