mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-05-09 18:38:47 +00:00
tests: add test for ethereum sign/verify message
This commit is contained in:
parent
afdd27c551
commit
36985519b5
39
tests/device_tests/test_msg_ethereum_signmessage.py
Normal file
39
tests/device_tests/test_msg_ethereum_signmessage.py
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
# This file is part of the TREZOR project.
|
||||||
|
#
|
||||||
|
# Copyright (C) 2016-2017 Pavol Rusnak <stick@satoshilabs.com>
|
||||||
|
#
|
||||||
|
# This library is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This library is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU Lesser General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
|
# along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
import common
|
||||||
|
import binascii
|
||||||
|
|
||||||
|
|
||||||
|
class TestMsgEthereumSignmessage(common.TrezorTest):
|
||||||
|
|
||||||
|
def test_sign(self):
|
||||||
|
self.setup_mnemonic_nopin_nopassphrase()
|
||||||
|
sig = self.client.ethereum_sign_message([0], 'This is an example of a signed message.')
|
||||||
|
self.assertEqual(binascii.hexlify(sig.address), b'cb3864960e8db1a751212c580af27ee8867d688f')
|
||||||
|
self.assertEqual(binascii.hexlify(sig.signature), b'95b64a7b3aa492f0cc1668a24097004562cc2b4f0e755e3c0d60dd791b9f9e285f95b618258ff97036b8419d0a0dd1af3751c625b4d248ee6deff84eba21b8ee1c')
|
||||||
|
|
||||||
|
def test_sign_long(self):
|
||||||
|
self.setup_mnemonic_nopin_nopassphrase()
|
||||||
|
sig = self.client.ethereum_sign_message([0], 'VeryLongMessage!' * 64)
|
||||||
|
self.assertEqual(binascii.hexlify(sig.address), b'cb3864960e8db1a751212c580af27ee8867d688f')
|
||||||
|
self.assertEqual(binascii.hexlify(sig.signature), b'70d03c8447b64489e80ae44ce4f1a543e8eb5dd9e9a19c4743ce95fbd9b8234b2d2a16db87cee857f5b474107ad2c0c0c86118f8a33d5df3d98b766be92d71331b')
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
45
tests/device_tests/test_msg_ethereum_verifymessage.py
Normal file
45
tests/device_tests/test_msg_ethereum_verifymessage.py
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
# This file is part of the TREZOR project.
|
||||||
|
#
|
||||||
|
# Copyright (C) 2016-2017 Pavol Rusnak <stick@satoshilabs.com>
|
||||||
|
#
|
||||||
|
# This library is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This library is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU Lesser General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
|
# along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
import common
|
||||||
|
import binascii
|
||||||
|
|
||||||
|
|
||||||
|
class TestMsgEthereumVerifymessage(common.TrezorTest):
|
||||||
|
|
||||||
|
def test_verify(self):
|
||||||
|
self.setup_mnemonic_nopin_nopassphrase()
|
||||||
|
res = self.client.ethereum_verify_message(
|
||||||
|
binascii.unhexlify(b'cb3864960e8db1a751212c580af27ee8867d688f'),
|
||||||
|
binascii.unhexlify(b'95b64a7b3aa492f0cc1668a24097004562cc2b4f0e755e3c0d60dd791b9f9e285f95b618258ff97036b8419d0a0dd1af3751c625b4d248ee6deff84eba21b8ee1c'),
|
||||||
|
'This is an example of a signed message.'
|
||||||
|
)
|
||||||
|
self.assertTrue(res)
|
||||||
|
|
||||||
|
def test_verify_long(self):
|
||||||
|
self.setup_mnemonic_nopin_nopassphrase()
|
||||||
|
ret = self.client.ethereum_verify_message(
|
||||||
|
binascii.unhexlify(b'cb3864960e8db1a751212c580af27ee8867d688f'),
|
||||||
|
binascii.unhexlify(b'70d03c8447b64489e80ae44ce4f1a543e8eb5dd9e9a19c4743ce95fbd9b8234b2d2a16db87cee857f5b474107ad2c0c0c86118f8a33d5df3d98b766be92d71331b'),
|
||||||
|
'VeryLongMessage!' * 64
|
||||||
|
)
|
||||||
|
self.assertTrue(ret)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
Loading…
Reference in New Issue
Block a user