ECRecovery.test.js 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. const { hashMessage, signMessage } = require('../helpers/sign');
  2. const { expectThrow } = require('../helpers/expectThrow');
  3. const ECRecoveryMock = artifacts.require('ECRecoveryMock');
  4. require('chai')
  5. .should();
  6. contract('ECRecovery', function (accounts) {
  7. let ecrecovery;
  8. const TEST_MESSAGE = 'OpenZeppelin';
  9. beforeEach(async function () {
  10. ecrecovery = await ECRecoveryMock.new();
  11. });
  12. it('recover v0', async function () {
  13. // Signature generated outside ganache with method web3.eth.sign(signer, message)
  14. let signer = '0x2cc1166f6212628a0deef2b33befb2187d35b86c';
  15. let message = web3.sha3(TEST_MESSAGE);
  16. // eslint-disable-next-line max-len
  17. let signature = '0x5d99b6f7f6d1f73d1a26497f2b1c89b24c0993913f86e9a2d02cd69887d9c94f3c880358579d811b21dd1b7fd9bb01c1d81d10e69f0384e675c32b39643be89200';
  18. const addrRecovered = await ecrecovery.recover(message, signature);
  19. addrRecovered.should.eq(signer);
  20. });
  21. it('recover v1', async function () {
  22. // Signature generated outside ganache with method web3.eth.sign(signer, message)
  23. let signer = '0x1e318623ab09fe6de3c9b8672098464aeda9100e';
  24. let message = web3.sha3(TEST_MESSAGE);
  25. // eslint-disable-next-line max-len
  26. let signature = '0x331fe75a821c982f9127538858900d87d3ec1f9f737338ad67cad133fa48feff48e6fa0c18abc62e42820f05943e47af3e9fbe306ce74d64094bdf1691ee53e001';
  27. const addrRecovered = await ecrecovery.recover(message, signature);
  28. addrRecovered.should.eq(signer);
  29. });
  30. it('recover using web3.eth.sign()', async function () {
  31. // Create the signature using account[0]
  32. const signature = signMessage(accounts[0], web3.sha3(TEST_MESSAGE));
  33. // Recover the signer address from the generated message and signature.
  34. const addrRecovered = await ecrecovery.recover(
  35. hashMessage(TEST_MESSAGE),
  36. signature
  37. );
  38. addrRecovered.should.eq(accounts[0]);
  39. });
  40. it('recover using web3.eth.sign() should return wrong signer', async function () {
  41. // Create the signature using account[0]
  42. const signature = signMessage(accounts[0], web3.sha3(TEST_MESSAGE));
  43. // Recover the signer address from the generated message and wrong signature.
  44. const addrRecovered = await ecrecovery.recover(hashMessage('Nope'), signature);
  45. assert.notEqual(accounts[0], addrRecovered);
  46. });
  47. it('recover should revert when a small hash is sent', async function () {
  48. // Create the signature using account[0]
  49. let signature = signMessage(accounts[0], TEST_MESSAGE);
  50. try {
  51. await expectThrow(
  52. ecrecovery.recover(hashMessage(TEST_MESSAGE).substring(2), signature)
  53. );
  54. } catch (error) {
  55. // @TODO(shrugs) - remove this once we upgrade to solc^0.5
  56. }
  57. });
  58. context('toEthSignedMessage', () => {
  59. it('should prefix hashes correctly', async function () {
  60. const hashedMessage = web3.sha3(TEST_MESSAGE);
  61. const ethMessage = await ecrecovery.toEthSignedMessageHash(hashedMessage);
  62. ethMessage.should.eq(hashMessage(TEST_MESSAGE));
  63. });
  64. });
  65. });