ECRecovery.test.js 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. var ECRecoveryMock = artifacts.require('../contracts/mocks/ECRecoveryMock.sol');
  2. var ECRecoveryLib = artifacts.require('../contracts/ECRecovery.sol');
  3. var hashMessage = require('./helpers/hashMessage.js');
  4. contract('ECRecovery', function (accounts) {
  5. let ecrecovery;
  6. const TEST_MESSAGE = 'OpenZeppelin';
  7. before(async function () {
  8. const ecRecoveryLib = await ECRecoveryLib.new();
  9. ECRecoveryMock.link('ECRecovery', ecRecoveryLib.address);
  10. ecrecovery = await ECRecoveryMock.new();
  11. });
  12. it('recover v0', async function () {
  13. // Signature generated outside testrpc 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. await ecrecovery.recover(message, signature);
  19. assert.equal(signer, await ecrecovery.addrRecovered());
  20. });
  21. it('recover v1', async function () {
  22. // Signature generated outside testrpc 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. await ecrecovery.recover(message, signature);
  28. assert.equal(signer, await ecrecovery.addrRecovered());
  29. });
  30. it('recover using web3.eth.sign()', async function () {
  31. // Create the signature using account[0]
  32. const signature = web3.eth.sign(accounts[0], web3.sha3(TEST_MESSAGE));
  33. // Recover the signer address from the generated message and signature.
  34. await ecrecovery.recover(hashMessage(TEST_MESSAGE), signature);
  35. assert.equal(accounts[0], await ecrecovery.addrRecovered());
  36. });
  37. it('recover using web3.eth.sign() should return wrong signer', async function () {
  38. // Create the signature using account[0]
  39. const signature = web3.eth.sign(accounts[0], web3.sha3(TEST_MESSAGE));
  40. // Recover the signer address from the generated message and wrong signature.
  41. await ecrecovery.recover(hashMessage('Test'), signature);
  42. assert.notEqual(accounts[0], await ecrecovery.addrRecovered());
  43. });
  44. it('recover should fail when a wrong hash is sent', async function () {
  45. // Create the signature using account[0]
  46. let signature = web3.eth.sign(accounts[0], web3.sha3(TEST_MESSAGE));
  47. // Recover the signer address from the generated message and wrong signature.
  48. await ecrecovery.recover(hashMessage(TEST_MESSAGE).substring(2), signature);
  49. assert.equal('0x0000000000000000000000000000000000000000', await ecrecovery.addrRecovered());
  50. });
  51. });