Skip to content

Commit

Permalink
Add wrong method tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fbeutin-ledger committed Oct 18, 2023
1 parent 1691a92 commit 17a6076
Show file tree
Hide file tree
Showing 9 changed files with 54 additions and 3 deletions.
43 changes: 40 additions & 3 deletions test/python/apps/exchange_test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,16 +203,29 @@ def perform_valid_sell_from_custom(self, destination, send_amount, fees, legacy=
def perform_final_tx(self, destination, send_amount, fees, memo):
raise NotImplementedError

# Wrapper of the function above to handle the USB reset in the parent class instead of the currency class
def perform_coin_specific_final_tx(self, destination, send_amount, fees, memo):
# Implement this function for each tested coin
def perform_final_tx_wrong_method(self, destination, send_amount, fees, memo):
raise NotImplementedError

# Wrapper of the functions above to handle the USB reset in the parent class instead of the currency class
def _safe_wrapper(self, wrong_method: bool, destination: str, send_amount: int, fees: int, memo: str):
try:
self.perform_final_tx(destination, send_amount, fees, memo)
if wrong_method:
self.perform_final_tx_wrong_method(destination, send_amount, fees, memo)
else:
self.perform_final_tx(destination, send_amount, fees, memo)
except Exception as e:
raise e
finally:
self.exchange_navigation_helper.check_post_sign_display()
handle_lib_call_start_or_stop(self.backend)

def perform_coin_specific_final_tx(self, destination, send_amount, fees, memo):
self._safe_wrapper(False, destination, send_amount, fees, memo)

def perform_coin_specific_final_tx_wrong_method(self, destination, send_amount, fees, memo):
self._safe_wrapper(True, destination, send_amount, fees, memo)

def assert_exchange_is_started(self):
# We don't care at all for the subcommand / rate
version = ExchangeClient(self.backend, Rate.FIXED, SubCommand.SWAP_NG).get_version().data
Expand Down Expand Up @@ -292,6 +305,14 @@ def perform_test_swap_wrong_amount(self, legacy):
assert e.value.status == self.wrong_amount_error_code
self.assert_exchange_is_started()

# Test swap with a malicious TX trying a wrong method
def perform_test_swap_wrong_method(self, legacy):
self.perform_valid_swap_from_custom(self.valid_destination_1, self.valid_send_amount_1, self.valid_fees_1, self.valid_destination_memo_1, legacy=legacy)
with pytest.raises(ExceptionRAPDU) as e:
self.perform_coin_specific_final_tx_wrong_method(self.valid_destination_1, self.valid_send_amount_1, self.valid_fees_1, self.valid_destination_memo_1)
assert e.value.status == self.wrong_method_error_code
self.assert_exchange_is_started()

#########################################################
# Generic FUND tests functions, call them in your tests #
#########################################################
Expand Down Expand Up @@ -343,6 +364,14 @@ def perform_test_fund_wrong_amount(self, legacy):
assert e.value.status == self.wrong_amount_error_code
self.assert_exchange_is_started()

# Test fund with a malicious TX trying a wrong method
def perform_test_fund_wrong_method(self, legacy):
self.perform_valid_fund_from_custom(self.valid_destination_1, self.valid_send_amount_1, self.valid_fees_1, legacy=legacy)
with pytest.raises(ExceptionRAPDU) as e:
self.perform_coin_specific_final_tx_wrong_method(self.valid_destination_1, self.valid_send_amount_1, self.valid_fees_1, "")
assert e.value.status == self.wrong_method_error_code
self.assert_exchange_is_started()

#########################################################
# Generic SELL tests functions, call them in your tests #
#########################################################
Expand Down Expand Up @@ -394,6 +423,14 @@ def perform_test_sell_wrong_amount(self, legacy):
assert e.value.status == self.wrong_amount_error_code
self.assert_exchange_is_started()

# Test sell with a malicious TX trying a wrong method
def perform_test_sell_wrong_method(self, legacy):
self.perform_valid_sell_from_custom(self.valid_destination_1, self.valid_send_amount_1, self.valid_fees_1, legacy=legacy)
with pytest.raises(ExceptionRAPDU) as e:
self.perform_coin_specific_final_tx_wrong_method(self.valid_destination_1, self.valid_send_amount_1, self.valid_fees_1, "")
assert e.value.status == self.wrong_method_error_code
self.assert_exchange_is_started()

# Automatically collect all tests functions and export their name in ready-to-be-parametrized lists
_all_test_methods_prefixed = [method for method in dir(ExchangeTestRunner) if method.startswith(TEST_METHOD_PREFIX)]
# Remove prefix to have nice snapshots directories
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions test/python/test_polkadot.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,20 @@ def perform_final_tx(self, destination, send_amount, fees, memo):
# Assert signature is verified properly with key and message
assert dot.verify_signature(hex_key=key,signature=sign_response.data[1:],message=message.hex().encode()) == True

def perform_final_tx_wrong_method(self, destination, send_amount, fees, memo):
dot = PolkadotClient(self.backend)
# Get public key.
key = dot.get_pubkey()
# Init signature process and assert response APDU code is 0x9000 (OK).
dot.sign_init().status
# craft tx
message = PolkadotClient.craft_invalid_polkadot_transaction(destination, send_amount, None, None)
# Send message to be signed
sign_response = dot.sign_last(message)

# Assert signature is verified properly with key and message
assert dot.verify_signature(hex_key=key,signature=sign_response.data[1:],message=message.hex().encode()) == True


# Use a class to reuse the same Speculos instance
class TestsPolkadot:
Expand Down

0 comments on commit 17a6076

Please sign in to comment.