2018-07-05 12:28:08 +00:00
|
|
|
# This file is part of the Trezor project.
|
|
|
|
#
|
2019-05-29 16:44:09 +00:00
|
|
|
# Copyright (C) 2012-2019 SatoshiLabs and contributors
|
2018-07-05 12:28:08 +00:00
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# 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 License along with this library.
|
|
|
|
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
from trezorlib import messages, ripple
|
|
|
|
from trezorlib.tools import CallException, parse_path
|
|
|
|
|
2018-07-05 12:28:08 +00:00
|
|
|
|
2019-08-22 16:47:01 +00:00
|
|
|
@pytest.mark.altcoin
|
2018-07-05 12:28:08 +00:00
|
|
|
@pytest.mark.ripple
|
|
|
|
@pytest.mark.skip_t1 # T1 support is not planned
|
2019-09-11 12:29:39 +00:00
|
|
|
class TestMsgRippleSignTx:
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_ripple_sign_simple_tx(self, client):
|
2019-01-09 14:00:40 +00:00
|
|
|
msg = ripple.create_sign_tx_msg(
|
|
|
|
{
|
|
|
|
"TransactionType": "Payment",
|
|
|
|
"Payment": {
|
|
|
|
"Amount": 100000000,
|
|
|
|
"Destination": "rBKz5MC2iXdoS3XgnNSYmF69K1Yo4NS3Ws",
|
|
|
|
},
|
|
|
|
"Flags": 0x80000000,
|
|
|
|
"Fee": 100000,
|
|
|
|
"Sequence": 25,
|
|
|
|
}
|
|
|
|
)
|
2019-08-27 14:58:59 +00:00
|
|
|
resp = ripple.sign_tx(client, parse_path("m/44'/144'/0'/0/0"), msg)
|
2019-01-09 14:00:40 +00:00
|
|
|
assert (
|
|
|
|
resp.signature.hex()
|
|
|
|
== "3045022100e243ef623675eeeb95965c35c3e06d63a9fc68bb37e17dc87af9c0af83ec057e02206ca8aa5eaab8396397aef6d38d25710441faf7c79d292ee1d627df15ad9346c0"
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
resp.serialized_tx.hex()
|
|
|
|
== "12000022800000002400000019614000000005f5e1006840000000000186a0732102131facd1eab748d6cddc492f54b04e8c35658894f4add2232ebc5afe7521dbe474473045022100e243ef623675eeeb95965c35c3e06d63a9fc68bb37e17dc87af9c0af83ec057e02206ca8aa5eaab8396397aef6d38d25710441faf7c79d292ee1d627df15ad9346c081148fb40e1ffa5d557ce9851a535af94965e0dd098883147148ebebf7304ccdf1676fefcf9734cf1e780826"
|
|
|
|
)
|
|
|
|
|
|
|
|
msg = ripple.create_sign_tx_msg(
|
|
|
|
{
|
|
|
|
"TransactionType": "Payment",
|
|
|
|
"Payment": {
|
|
|
|
"Amount": 1,
|
|
|
|
"Destination": "rNaqKtKrMSwpwZSzRckPf7S96DkimjkF4H",
|
|
|
|
},
|
|
|
|
"Fee": 10,
|
|
|
|
"Sequence": 1,
|
|
|
|
}
|
|
|
|
)
|
2019-08-27 14:58:59 +00:00
|
|
|
resp = ripple.sign_tx(client, parse_path("m/44'/144'/0'/0/2"), msg)
|
2019-01-09 14:00:40 +00:00
|
|
|
assert (
|
|
|
|
resp.signature.hex()
|
|
|
|
== "3044022069900e6e578997fad5189981b74b16badc7ba8b9f1052694033fa2779113ddc002206c8006ada310edf099fb22c0c12073550c8fc73247b236a974c5f1144831dd5f"
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
resp.serialized_tx.hex()
|
|
|
|
== "1200002280000000240000000161400000000000000168400000000000000a732103dbed1e77cb91a005e2ec71afbccce5444c9be58276665a3859040f692de8fed274463044022069900e6e578997fad5189981b74b16badc7ba8b9f1052694033fa2779113ddc002206c8006ada310edf099fb22c0c12073550c8fc73247b236a974c5f1144831dd5f8114bdf86f3ae715ba346b7772ea0e133f48828b766483148fb40e1ffa5d557ce9851a535af94965e0dd0988"
|
|
|
|
)
|
2018-07-05 12:28:08 +00:00
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
msg = ripple.create_sign_tx_msg(
|
|
|
|
{
|
|
|
|
"TransactionType": "Payment",
|
2018-09-05 08:42:32 +00:00
|
|
|
"Payment": {
|
|
|
|
"Amount": 100000009,
|
|
|
|
"Destination": "rNaqKtKrMSwpwZSzRckPf7S96DkimjkF4H",
|
2019-01-08 15:38:45 +00:00
|
|
|
"DestinationTag": 123456,
|
2018-09-05 08:42:32 +00:00
|
|
|
},
|
2018-08-13 16:21:24 +00:00
|
|
|
"Flags": 0,
|
|
|
|
"Fee": 100,
|
|
|
|
"Sequence": 100,
|
|
|
|
"LastLedgerSequence": 333111,
|
|
|
|
}
|
|
|
|
)
|
2019-08-27 14:58:59 +00:00
|
|
|
resp = ripple.sign_tx(client, parse_path("m/44'/144'/0'/0/2"), msg)
|
2018-09-12 18:34:26 +00:00
|
|
|
assert (
|
|
|
|
resp.signature.hex()
|
2019-01-08 15:38:45 +00:00
|
|
|
== "30450221008770743a472bb2d1c746a53ef131cc17cc118d538ec910ca928d221db4494cf702201e4ef242d6c3bff110c3cc3897a471fed0f5ac10987ea57da63f98dfa01e94df"
|
2018-08-13 16:21:24 +00:00
|
|
|
)
|
2018-09-12 18:34:26 +00:00
|
|
|
assert (
|
|
|
|
resp.serialized_tx.hex()
|
2019-01-08 15:38:45 +00:00
|
|
|
== "120000228000000024000000642e0001e240201b00051537614000000005f5e109684000000000000064732103dbed1e77cb91a005e2ec71afbccce5444c9be58276665a3859040f692de8fed2744730450221008770743a472bb2d1c746a53ef131cc17cc118d538ec910ca928d221db4494cf702201e4ef242d6c3bff110c3cc3897a471fed0f5ac10987ea57da63f98dfa01e94df8114bdf86f3ae715ba346b7772ea0e133f48828b766483148fb40e1ffa5d557ce9851a535af94965e0dd0988"
|
2018-08-13 16:21:24 +00:00
|
|
|
)
|
2018-07-05 12:28:08 +00:00
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_ripple_sign_invalid_fee(self, client):
|
2018-08-13 16:21:24 +00:00
|
|
|
msg = ripple.create_sign_tx_msg(
|
|
|
|
{
|
|
|
|
"TransactionType": "Payment",
|
2018-09-05 08:42:32 +00:00
|
|
|
"Payment": {
|
|
|
|
"Amount": 1,
|
|
|
|
"Destination": "rNaqKtKrMSwpwZSzRckPf7S96DkimjkF4H",
|
|
|
|
},
|
2018-08-13 16:21:24 +00:00
|
|
|
"Flags": 1,
|
|
|
|
"Fee": 1,
|
|
|
|
"Sequence": 1,
|
|
|
|
}
|
|
|
|
)
|
2018-07-05 12:28:08 +00:00
|
|
|
with pytest.raises(CallException) as exc:
|
2019-08-27 14:58:59 +00:00
|
|
|
ripple.sign_tx(client, parse_path("m/44'/144'/0'/0/2"), msg)
|
2018-07-12 14:56:47 +00:00
|
|
|
assert exc.value.args[0] == messages.FailureType.ProcessError
|
2018-08-13 16:21:24 +00:00
|
|
|
assert exc.value.args[1].endswith(
|
|
|
|
"Fee must be in the range of 10 to 10,000 drops"
|
|
|
|
)
|