ECRecovery.test.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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 ([_, anyone]) {
  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. const signer = '0x2cc1166f6212628a0deef2b33befb2187d35b86c';
  15. const message = web3.sha3(TEST_MESSAGE);
  16. // eslint-disable-next-line max-len
  17. const signature = '0x5d99b6f7f6d1f73d1a26497f2b1c89b24c0993913f86e9a2d02cd69887d9c94f3c880358579d811b21dd1b7fd9bb01c1d81d10e69f0384e675c32b39643be89200';
  18. (await ecrecovery.recover(message, signature)).should.eq(signer);
  19. });
  20. it('recover v1', async function () {
  21. // Signature generated outside ganache with method web3.eth.sign(signer, message)
  22. const signer = '0x1e318623ab09fe6de3c9b8672098464aeda9100e';
  23. const message = web3.sha3(TEST_MESSAGE);
  24. // eslint-disable-next-line max-len
  25. const signature = '0x331fe75a821c982f9127538858900d87d3ec1f9f737338ad67cad133fa48feff48e6fa0c18abc62e42820f05943e47af3e9fbe306ce74d64094bdf1691ee53e001';
  26. (await ecrecovery.recover(message, signature)).should.eq(signer);
  27. });
  28. it('recover using web3.eth.sign()', async function () {
  29. // Create the signature using account[0]
  30. const signature = signMessage(anyone, web3.sha3(TEST_MESSAGE));
  31. // Recover the signer address from the generated message and signature.
  32. (await ecrecovery.recover(
  33. hashMessage(TEST_MESSAGE),
  34. signature
  35. )).should.eq(anyone);
  36. });
  37. it('recover using web3.eth.sign() should return wrong signer', async function () {
  38. // Create the signature using account[0]
  39. const signature = signMessage(anyone, web3.sha3(TEST_MESSAGE));
  40. // Recover the signer address from the generated message and wrong signature.
  41. (await ecrecovery.recover(hashMessage('Nope'), signature)).should.not.eq(anyone);
  42. });
  43. it('recover should revert when a small hash is sent', async function () {
  44. // Create the signature using account[0]
  45. const signature = signMessage(anyone, TEST_MESSAGE);
  46. try {
  47. await expectThrow(
  48. ecrecovery.recover(hashMessage(TEST_MESSAGE).substring(2), signature)
  49. );
  50. } catch (error) {
  51. // @TODO(shrugs) - remove this once we upgrade to solc^0.5
  52. }
  53. });
  54. context('toEthSignedMessage', function () {
  55. it('should prefix hashes correctly', async function () {
  56. const hashedMessage = web3.sha3(TEST_MESSAGE);
  57. (await ecrecovery.toEthSignedMessageHash(hashedMessage)).should.eq(hashMessage(TEST_MESSAGE));
  58. });
  59. });
  60. });