ECRecovery.test.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. var ECRecoveryMock = artifacts.require('ECRecoveryMock');
  2. var hashMessage = require('../helpers/hashMessage.js');
  3. contract('ECRecovery', function (accounts) {
  4. let ecrecovery;
  5. const TEST_MESSAGE = 'OpenZeppelin';
  6. before(async function () {
  7. ecrecovery = await ECRecoveryMock.new();
  8. });
  9. it('recover v0', async function () {
  10. // Signature generated outside testrpc with method web3.eth.sign(signer, message)
  11. let signer = '0x2cc1166f6212628a0deef2b33befb2187d35b86c';
  12. let message = web3.sha3(TEST_MESSAGE);
  13. // eslint-disable-next-line max-len
  14. let signature = '0x5d99b6f7f6d1f73d1a26497f2b1c89b24c0993913f86e9a2d02cd69887d9c94f3c880358579d811b21dd1b7fd9bb01c1d81d10e69f0384e675c32b39643be89200';
  15. await ecrecovery.recover(message, signature);
  16. assert.equal(signer, await ecrecovery.addrRecovered());
  17. });
  18. it('recover v1', async function () {
  19. // Signature generated outside testrpc with method web3.eth.sign(signer, message)
  20. let signer = '0x1e318623ab09fe6de3c9b8672098464aeda9100e';
  21. let message = web3.sha3(TEST_MESSAGE);
  22. // eslint-disable-next-line max-len
  23. let signature = '0x331fe75a821c982f9127538858900d87d3ec1f9f737338ad67cad133fa48feff48e6fa0c18abc62e42820f05943e47af3e9fbe306ce74d64094bdf1691ee53e001';
  24. await ecrecovery.recover(message, signature);
  25. assert.equal(signer, await ecrecovery.addrRecovered());
  26. });
  27. it('recover using web3.eth.sign()', async function () {
  28. // Create the signature using account[0]
  29. const signature = web3.eth.sign(accounts[0], web3.sha3(TEST_MESSAGE));
  30. // Recover the signer address from the generated message and signature.
  31. await ecrecovery.recover(hashMessage(TEST_MESSAGE), signature);
  32. assert.equal(accounts[0], await ecrecovery.addrRecovered());
  33. });
  34. it('recover using web3.eth.sign() should return wrong signer', async function () {
  35. // Create the signature using account[0]
  36. const signature = web3.eth.sign(accounts[0], web3.sha3(TEST_MESSAGE));
  37. // Recover the signer address from the generated message and wrong signature.
  38. await ecrecovery.recover(hashMessage('Test'), signature);
  39. assert.notEqual(accounts[0], await ecrecovery.addrRecovered());
  40. });
  41. it('recover should fail when a wrong hash is sent', async function () {
  42. // Create the signature using account[0]
  43. let signature = web3.eth.sign(accounts[0], web3.sha3(TEST_MESSAGE));
  44. // Recover the signer address from the generated message and wrong signature.
  45. await ecrecovery.recover(hashMessage(TEST_MESSAGE).substring(2), signature);
  46. assert.equal('0x0000000000000000000000000000000000000000', await ecrecovery.addrRecovered());
  47. });
  48. });