2018-07-13 10:56:36 +00:00
|
|
|
import random
|
2019-10-25 14:33:56 +00:00
|
|
|
import string
|
2018-07-20 08:27:33 +00:00
|
|
|
|
2018-10-11 20:28:52 +00:00
|
|
|
from support.utilities import get_merged_txs_list
|
2020-09-04 15:34:58 +00:00
|
|
|
from tests import marks, unique_password
|
2020-10-22 09:41:29 +00:00
|
|
|
from tests.base_test_case import SingleDeviceTestCase, MultipleDeviceTestCase
|
2021-02-01 16:09:04 +00:00
|
|
|
from tests.users import transaction_senders, basic_user, wallet_users, ens_user_ropsten, transaction_recipients, ens_user
|
2020-04-15 14:25:18 +00:00
|
|
|
from views.send_transaction_view import SendTransactionView
|
2018-06-30 12:17:38 +00:00
|
|
|
from views.sign_in_view import SignInView
|
|
|
|
|
|
|
|
|
|
|
|
@marks.transaction
|
2018-07-13 10:56:36 +00:00
|
|
|
class TestTransactionWalletSingleDevice(SingleDeviceTestCase):
|
2018-06-30 12:17:38 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5308)
|
|
|
|
@marks.critical
|
2021-05-13 16:03:01 +00:00
|
|
|
def test_send_eth_from_wallet_to_address_incorrect_password(self):
|
2018-09-17 08:50:01 +00:00
|
|
|
recipient = basic_user
|
|
|
|
sender = transaction_senders['P']
|
2021-05-13 16:03:01 +00:00
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.recover_access(sender['passphrase'], password=unique_password)
|
|
|
|
wallet = home.wallet_button.click()
|
|
|
|
wallet.set_up_wallet()
|
|
|
|
wallet.accounts_status_account.click()
|
|
|
|
transaction_amount = wallet.get_unique_amount()
|
2018-06-30 12:17:38 +00:00
|
|
|
|
2021-05-13 16:03:01 +00:00
|
|
|
wallet.just_fyi("Checking that can't send transaction with wrong password")
|
|
|
|
send_transaction = wallet.send_transaction_button.click()
|
2018-06-30 12:17:38 +00:00
|
|
|
send_transaction.amount_edit_box.click()
|
|
|
|
send_transaction.amount_edit_box.set_value(transaction_amount)
|
2020-09-17 13:14:55 +00:00
|
|
|
send_transaction.set_recipient_address('0x%s' % recipient['address'])
|
2018-06-30 12:17:38 +00:00
|
|
|
send_transaction.sign_transaction_button.click()
|
2019-08-23 10:24:52 +00:00
|
|
|
send_transaction.sign_with_password.click_until_presence_of_element(send_transaction.enter_password_input)
|
2018-06-30 12:17:38 +00:00
|
|
|
send_transaction.enter_password_input.click()
|
|
|
|
send_transaction.enter_password_input.send_keys('wrong_password')
|
2019-07-11 15:44:12 +00:00
|
|
|
send_transaction.sign_button.click()
|
2019-08-26 17:09:30 +00:00
|
|
|
if send_transaction.element_by_text_part('Transaction sent').is_element_displayed():
|
|
|
|
self.driver.fail('Transaction was sent with a wrong password')
|
2018-06-30 12:17:38 +00:00
|
|
|
|
2021-05-13 16:03:01 +00:00
|
|
|
wallet.just_fyi("Fix password and sign transaction")
|
|
|
|
send_transaction.enter_password_input.clear()
|
|
|
|
send_transaction.enter_password_input.send_keys(unique_password)
|
|
|
|
send_transaction.sign_button.click()
|
|
|
|
wallet.ok_button.wait_and_click()
|
|
|
|
|
|
|
|
wallet.just_fyi('Check that transaction is appeared in transaction history')
|
|
|
|
wallet.find_transaction_in_history(amount=transaction_amount)
|
|
|
|
|
|
|
|
wallet.just_fyi('Check logcat for sensitive data')
|
|
|
|
values_in_logcat = wallet.find_values_in_logcat(password=unique_password)
|
|
|
|
if values_in_logcat:
|
|
|
|
self.driver.fail(values_in_logcat)
|
|
|
|
|
2019-11-07 13:38:14 +00:00
|
|
|
@marks.testrail_id(6237)
|
|
|
|
@marks.high
|
|
|
|
def test_fetching_balance_after_offline(self):
|
2020-07-22 13:30:07 +00:00
|
|
|
sender = wallet_users['E']
|
2019-11-07 13:38:14 +00:00
|
|
|
sign_in_view = SignInView(self.driver)
|
|
|
|
|
|
|
|
sign_in_view.just_fyi('Restore account with funds offline')
|
|
|
|
sign_in_view.toggle_airplane_mode()
|
|
|
|
sign_in_view.recover_access(sender['passphrase'])
|
|
|
|
home_view = sign_in_view.get_home_view()
|
|
|
|
wallet_view = home_view.wallet_button.click()
|
|
|
|
wallet_view.set_up_wallet()
|
|
|
|
|
|
|
|
sign_in_view.just_fyi('Go back to online and check that balance is updated')
|
|
|
|
sign_in_view.toggle_airplane_mode()
|
2020-05-19 10:40:39 +00:00
|
|
|
wallet_view.wait_balance_is_changed('ETH')
|
2020-10-07 16:07:42 +00:00
|
|
|
wallet_view.scan_tokens('STT')
|
2020-12-01 14:56:42 +00:00
|
|
|
initial_amount_STT = wallet_view.get_asset_amount_by_name('STT')
|
2019-11-07 13:38:14 +00:00
|
|
|
|
|
|
|
sign_in_view.just_fyi('Send some tokens to other account')
|
|
|
|
recipient = "0x" + basic_user['address']
|
|
|
|
sending_amount = wallet_view.get_unique_amount()
|
|
|
|
asset = 'STT'
|
|
|
|
wallet_view.accounts_status_account.click_until_presence_of_element(wallet_view.send_transaction_button)
|
|
|
|
wallet_view.send_transaction(asset_name=asset, amount=sending_amount, recipient=recipient,
|
|
|
|
sign_transaction=True)
|
|
|
|
sign_in_view.toggle_airplane_mode()
|
2021-06-08 10:58:26 +00:00
|
|
|
self.network_api.wait_for_confirmation_of_transaction(basic_user['address'], sending_amount, token=True)
|
2019-11-07 13:38:14 +00:00
|
|
|
|
|
|
|
sign_in_view.just_fyi('Change that balance is updated')
|
|
|
|
sign_in_view.toggle_airplane_mode()
|
2020-05-14 10:41:09 +00:00
|
|
|
|
|
|
|
sign_in_view.just_fyi('Check that transaction is appeared in transaction history')
|
2019-11-07 13:38:14 +00:00
|
|
|
wallet_view.wait_balance_is_changed('STT', initial_amount_STT)
|
2021-02-04 12:51:01 +00:00
|
|
|
wallet_view.find_transaction_in_history(amount=sending_amount, asset='STT')
|
2019-11-07 13:38:14 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5461)
|
|
|
|
@marks.medium
|
2018-06-30 12:17:38 +00:00
|
|
|
def test_send_eth_from_wallet_incorrect_address(self):
|
2018-09-17 08:50:01 +00:00
|
|
|
recipient = basic_user
|
|
|
|
sender = wallet_users['B']
|
2018-06-30 12:17:38 +00:00
|
|
|
sign_in_view = SignInView(self.driver)
|
2018-09-17 08:50:01 +00:00
|
|
|
sign_in_view.recover_access(sender['passphrase'])
|
2018-06-30 12:17:38 +00:00
|
|
|
home_view = sign_in_view.get_home_view()
|
|
|
|
wallet_view = home_view.wallet_button.click()
|
2019-07-12 07:16:02 +00:00
|
|
|
wallet_view.set_up_wallet()
|
2019-06-24 15:53:02 +00:00
|
|
|
wallet_view.accounts_status_account.click()
|
2018-06-30 12:17:38 +00:00
|
|
|
send_transaction = wallet_view.send_transaction_button.click()
|
|
|
|
send_transaction.amount_edit_box.click()
|
|
|
|
transaction_amount = send_transaction.get_unique_amount()
|
|
|
|
send_transaction.amount_edit_box.set_value(transaction_amount)
|
|
|
|
send_transaction.chose_recipient_button.click()
|
2020-09-17 13:14:55 +00:00
|
|
|
for address in (recipient['public_key'], '0xDE709F2102306220921060314715629080E2fB77'):
|
|
|
|
send_transaction.enter_recipient_address_input.set_value(address)
|
|
|
|
send_transaction.enter_recipient_address_input.click()
|
|
|
|
send_transaction.done_button.click()
|
|
|
|
if send_transaction.set_max_button.is_element_displayed():
|
|
|
|
self.driver.fail('Can proceed with wrong address %s in recipient' % address)
|
2018-07-13 10:56:36 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5350)
|
|
|
|
@marks.critical
|
2018-07-13 10:56:36 +00:00
|
|
|
def test_send_token_with_7_decimals(self):
|
2018-09-17 08:50:01 +00:00
|
|
|
sender = transaction_senders['S']
|
|
|
|
recipient = basic_user
|
2018-07-13 10:56:36 +00:00
|
|
|
sign_in_view = SignInView(self.driver)
|
2018-09-17 08:50:01 +00:00
|
|
|
sign_in_view.recover_access(sender['passphrase'])
|
2018-07-13 10:56:36 +00:00
|
|
|
home_view = sign_in_view.get_home_view()
|
|
|
|
wallet_view = home_view.wallet_button.click()
|
2021-07-12 14:44:51 +00:00
|
|
|
wallet_view.wait_balance_is_changed(asset='ADI', scan_tokens=True)
|
2019-06-24 15:53:02 +00:00
|
|
|
wallet_view.accounts_status_account.click()
|
2020-12-09 16:37:47 +00:00
|
|
|
amount = '0.000%s' % str(random.randint(100, 999)) + '1'
|
2020-09-17 13:14:55 +00:00
|
|
|
wallet_view.send_transaction(amount=amount,
|
|
|
|
recipient='0x%s' % recipient['address'],
|
|
|
|
asset_name='ADI')
|
2021-06-08 10:58:26 +00:00
|
|
|
transaction = wallet_view.find_transaction_in_history(amount=amount, asset='ADI', return_hash=True)
|
|
|
|
self.network_api.find_transaction_by_hash(transaction)
|
2018-07-13 10:56:36 +00:00
|
|
|
|
2018-07-20 08:27:33 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5412)
|
|
|
|
@marks.high
|
2018-07-20 08:27:33 +00:00
|
|
|
def test_insufficient_funds_wallet_positive_balance(self):
|
2020-01-13 16:16:55 +00:00
|
|
|
sender = wallet_users['E']
|
2018-07-20 08:27:33 +00:00
|
|
|
sign_in_view = SignInView(self.driver)
|
2018-09-17 08:50:01 +00:00
|
|
|
sign_in_view.recover_access(sender['passphrase'])
|
2018-07-20 08:27:33 +00:00
|
|
|
wallet_view = sign_in_view.wallet_button.click()
|
2019-07-12 07:16:02 +00:00
|
|
|
wallet_view.set_up_wallet()
|
2021-07-12 14:44:51 +00:00
|
|
|
[wallet_view.wait_balance_is_changed(asset) for asset in ['ETH', 'STT']]
|
2020-05-19 10:40:39 +00:00
|
|
|
eth_value = wallet_view.get_asset_amount_by_name('ETH')
|
2019-11-07 13:38:14 +00:00
|
|
|
stt_value = wallet_view.get_asset_amount_by_name('STT')
|
2018-07-20 08:27:33 +00:00
|
|
|
if eth_value == 0 or stt_value == 0:
|
2019-10-21 12:48:45 +00:00
|
|
|
self.driver.fail('No funds!')
|
2019-06-28 14:36:24 +00:00
|
|
|
wallet_view.accounts_status_account.click()
|
2018-07-20 08:27:33 +00:00
|
|
|
send_transaction = wallet_view.send_transaction_button.click()
|
|
|
|
send_transaction.amount_edit_box.set_value(round(eth_value + 1))
|
|
|
|
error_text = send_transaction.element_by_text('Insufficient funds')
|
|
|
|
if not error_text.is_element_displayed():
|
|
|
|
self.errors.append(
|
2019-11-29 17:32:47 +00:00
|
|
|
"'Insufficient funds' error is not shown when sending %s ETH from wallet with balance %s" % (
|
2018-07-20 08:27:33 +00:00
|
|
|
round(eth_value + 1), eth_value))
|
|
|
|
send_transaction.select_asset_button.click()
|
2018-08-16 16:47:13 +00:00
|
|
|
send_transaction.asset_by_name('STT').scroll_to_element()
|
2018-07-20 08:27:33 +00:00
|
|
|
send_transaction.asset_by_name('STT').click()
|
|
|
|
send_transaction.amount_edit_box.set_value(round(stt_value + 1))
|
|
|
|
if not error_text.is_element_displayed():
|
|
|
|
self.errors.append(
|
2019-11-29 17:32:47 +00:00
|
|
|
"'Insufficient funds' error is not shown when sending %s STT from wallet with balance %s" % (
|
2018-07-20 08:27:33 +00:00
|
|
|
round(stt_value + 1), stt_value))
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-07-20 08:27:33 +00:00
|
|
|
|
2018-10-11 20:28:52 +00:00
|
|
|
@marks.testrail_id(5314)
|
2019-11-08 18:24:55 +00:00
|
|
|
@marks.critical
|
2021-03-02 10:20:00 +00:00
|
|
|
def test_can_see_balance_and_all_transactions_history_on_cellular(self):
|
2018-11-14 21:50:19 +00:00
|
|
|
address = wallet_users['D']['address']
|
|
|
|
passphrase = wallet_users['D']['passphrase']
|
2018-10-11 20:28:52 +00:00
|
|
|
|
|
|
|
ropsten_txs = self.network_api.get_transactions(address)
|
|
|
|
ropsten_tokens = self.network_api.get_token_transactions(address)
|
|
|
|
expected_txs_list = get_merged_txs_list(ropsten_txs, ropsten_tokens)
|
2021-03-02 10:20:00 +00:00
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
sign_in.switch_to_mobile(before_login=True)
|
|
|
|
home = sign_in.recover_access(passphrase=passphrase)
|
|
|
|
|
|
|
|
wallet = home.wallet_button.click()
|
|
|
|
wallet.set_up_wallet()
|
|
|
|
for asset in ('ETH', 'MDS', 'STT'):
|
|
|
|
wallet.wait_balance_is_changed(asset)
|
2021-07-28 12:42:06 +00:00
|
|
|
wallet.swipe_up()
|
2021-03-02 10:20:00 +00:00
|
|
|
wallet.accounts_status_account.click()
|
|
|
|
transaction = wallet.transaction_history_button.click()
|
|
|
|
if not wallet.element_by_translation_id("transactions-history-empty").is_element_displayed():
|
|
|
|
self.errors.append("Transaction history was loaded automatically on mobila data!")
|
|
|
|
wallet.pull_to_refresh()
|
|
|
|
if wallet.element_by_translation_id("transactions-history-empty").is_element_displayed():
|
|
|
|
wallet.pull_to_refresh()
|
|
|
|
status_tx_number = transaction.transactions_table.get_transactions_number()
|
2019-07-24 22:44:32 +00:00
|
|
|
if status_tx_number < 1:
|
|
|
|
self.driver.fail('No transactions found')
|
2018-10-11 20:28:52 +00:00
|
|
|
|
|
|
|
for n in range(status_tx_number):
|
2021-03-02 10:20:00 +00:00
|
|
|
transactions_details = transaction.transactions_table.transaction_by_index(n).click()
|
2019-07-24 22:44:32 +00:00
|
|
|
tx_hash = transactions_details.get_transaction_hash()
|
|
|
|
tx_from = transactions_details.get_sender_address()
|
|
|
|
tx_to = transactions_details.get_recipient_address()
|
|
|
|
if tx_from != expected_txs_list[tx_hash]['from']:
|
2019-06-28 14:36:24 +00:00
|
|
|
self.errors.append('Transactions senders do not match!')
|
2019-07-24 22:44:32 +00:00
|
|
|
if tx_to != expected_txs_list[tx_hash]['to']:
|
2019-06-28 14:36:24 +00:00
|
|
|
self.errors.append('Transactions recipients do not match!')
|
2021-06-14 17:52:58 +00:00
|
|
|
transactions_details.close_button.click()
|
2018-10-11 20:28:52 +00:00
|
|
|
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-10-11 20:28:52 +00:00
|
|
|
|
2019-08-16 10:14:23 +00:00
|
|
|
@marks.testrail_id(5429)
|
|
|
|
@marks.medium
|
|
|
|
def test_set_currency(self):
|
|
|
|
sign_in_view = SignInView(self.driver)
|
|
|
|
user_currency = 'Euro (EUR)'
|
|
|
|
sign_in_view.create_user()
|
|
|
|
wallet_view = sign_in_view.wallet_button.click()
|
|
|
|
wallet_view.set_currency(user_currency)
|
2021-02-01 16:09:04 +00:00
|
|
|
if not wallet_view.element_by_text_part('EUR').is_element_displayed(20):
|
2019-08-16 10:14:23 +00:00
|
|
|
self.driver.fail('EUR currency is not displayed')
|
|
|
|
|
2019-10-21 07:15:34 +00:00
|
|
|
@marks.testrail_id(5407)
|
|
|
|
@marks.medium
|
2020-10-30 14:40:14 +00:00
|
|
|
def test_offline_can_login_cant_send_transaction(self):
|
|
|
|
home = SignInView(self.driver).create_user()
|
|
|
|
wallet = home.wallet_button.click()
|
|
|
|
wallet.set_up_wallet()
|
|
|
|
wallet.toggle_airplane_mode()
|
|
|
|
wallet.accounts_status_account.click_until_presence_of_element(wallet.send_transaction_button)
|
|
|
|
send_transaction = wallet.send_transaction_button.click()
|
2020-09-17 13:14:55 +00:00
|
|
|
send_transaction.set_recipient_address('0x%s' % basic_user['address'])
|
2019-10-21 07:15:34 +00:00
|
|
|
send_transaction.amount_edit_box.set_value("0")
|
|
|
|
send_transaction.confirm()
|
|
|
|
send_transaction.sign_transaction_button.click()
|
|
|
|
if send_transaction.sign_with_password.is_element_displayed():
|
|
|
|
self.driver.fail("Sign transaction button is active in offline mode")
|
2020-10-30 14:40:14 +00:00
|
|
|
self.driver.close_app()
|
|
|
|
self.driver.launch_app()
|
|
|
|
SignInView(self.driver).sign_in()
|
|
|
|
home.home_button.wait_for_visibility_of_element()
|
2021-02-16 14:57:20 +00:00
|
|
|
home.connection_offline_icon.wait_for_visibility_of_element(20)
|
|
|
|
|
2019-10-21 07:15:34 +00:00
|
|
|
|
2019-08-16 10:14:23 +00:00
|
|
|
@marks.testrail_id(6225)
|
2020-11-26 17:33:43 +00:00
|
|
|
@marks.transaction
|
2020-01-03 15:27:50 +00:00
|
|
|
@marks.medium
|
2019-08-16 10:14:23 +00:00
|
|
|
def test_send_funds_between_accounts_in_multiaccount_instance(self):
|
|
|
|
sign_in_view = SignInView(self.driver)
|
|
|
|
sign_in_view.create_user()
|
|
|
|
wallet_view = sign_in_view.wallet_button.click()
|
|
|
|
wallet_view.set_up_wallet()
|
2019-09-26 09:11:46 +00:00
|
|
|
status_account_address = wallet_view.get_wallet_address()[2:]
|
2020-12-04 17:27:21 +00:00
|
|
|
self.network_api.get_donate(status_account_address, external_faucet=True)
|
2020-05-05 08:52:40 +00:00
|
|
|
wallet_view.wait_balance_is_changed()
|
2019-09-26 09:11:46 +00:00
|
|
|
account_name = 'subaccount'
|
2019-08-16 10:14:23 +00:00
|
|
|
wallet_view.add_account(account_name)
|
2019-09-26 09:11:46 +00:00
|
|
|
|
|
|
|
wallet_view.just_fyi("Send transaction to new account")
|
2019-08-16 10:14:23 +00:00
|
|
|
wallet_view.accounts_status_account.click()
|
2020-12-08 15:56:57 +00:00
|
|
|
initial_balance = self.network_api.get_balance(status_account_address)
|
2020-10-28 19:39:02 +00:00
|
|
|
|
2021-06-08 10:58:26 +00:00
|
|
|
transaction_amount = '0.003%s' % str(random.randint(10000, 99999)) + '1'
|
2020-10-28 19:39:02 +00:00
|
|
|
wallet_view.send_transaction(account_name=account_name,
|
|
|
|
amount=transaction_amount)
|
2019-09-26 09:11:46 +00:00
|
|
|
self.network_api.wait_for_confirmation_of_transaction(status_account_address, transaction_amount)
|
2020-12-08 15:56:57 +00:00
|
|
|
self.network_api.verify_balance_is_updated(str(initial_balance), status_account_address)
|
2019-09-26 09:11:46 +00:00
|
|
|
|
|
|
|
wallet_view.just_fyi("Verifying previously sent transaction in new account")
|
2021-06-23 15:12:42 +00:00
|
|
|
wallet_view.close_button.click()
|
2019-08-16 10:14:23 +00:00
|
|
|
wallet_view.get_account_by_name(account_name).click()
|
|
|
|
wallet_view.send_transaction_button.click()
|
2021-06-23 15:12:42 +00:00
|
|
|
wallet_view.close_send_transaction_view_button.click()
|
2020-07-10 16:00:56 +00:00
|
|
|
balance_after_receiving_tx = float(wallet_view.get_asset_amount_by_name('ETH'))
|
2019-10-04 13:50:44 +00:00
|
|
|
expected_balance = self.network_api.get_rounded_balance(balance_after_receiving_tx, transaction_amount)
|
|
|
|
if balance_after_receiving_tx != expected_balance:
|
2019-08-16 10:14:23 +00:00
|
|
|
self.driver.fail('New account balance %s does not match expected %s after receiving a transaction' % (
|
|
|
|
balance_after_receiving_tx, transaction_amount))
|
|
|
|
|
2019-09-26 09:11:46 +00:00
|
|
|
wallet_view.just_fyi("Sending eth from new account to main account")
|
|
|
|
updated_balance = self.network_api.get_balance(status_account_address)
|
2021-06-08 10:58:26 +00:00
|
|
|
transaction_amount_1 = round(float(transaction_amount) * 0.2, 12)
|
2021-06-23 15:12:42 +00:00
|
|
|
wallet_view.send_transaction(account_name=wallet_view.status_account_name,
|
2020-12-09 16:37:47 +00:00
|
|
|
amount=transaction_amount_1,
|
|
|
|
default_gas_price=True)
|
2021-06-23 15:12:42 +00:00
|
|
|
wallet_view.close_button.click()
|
2019-09-26 09:11:46 +00:00
|
|
|
sub_account_address = wallet_view.get_wallet_address(account_name)[2:]
|
|
|
|
self.network_api.wait_for_confirmation_of_transaction(status_account_address, transaction_amount)
|
|
|
|
self.network_api.verify_balance_is_updated(updated_balance, status_account_address)
|
2021-02-04 12:51:01 +00:00
|
|
|
wallet_view.find_transaction_in_history(amount=transaction_amount)
|
|
|
|
wallet_view.find_transaction_in_history(amount=format(float(transaction_amount_1),'.11f').rstrip('0'))
|
2020-05-14 10:41:09 +00:00
|
|
|
|
|
|
|
wallet_view.just_fyi("Check transactions on subaccount")
|
|
|
|
self.network_api.verify_balance_is_updated(updated_balance, status_account_address)
|
2019-09-26 09:11:46 +00:00
|
|
|
|
|
|
|
wallet_view.just_fyi("Verify total ETH on main wallet view")
|
2021-06-08 10:58:26 +00:00
|
|
|
self.network_api.wait_for_confirmation_of_transaction(status_account_address, transaction_amount_1)
|
2019-10-04 13:50:44 +00:00
|
|
|
self.network_api.verify_balance_is_updated((updated_balance + transaction_amount_1), status_account_address)
|
2021-06-23 15:12:42 +00:00
|
|
|
wallet_view.close_button.click()
|
2019-09-26 09:11:46 +00:00
|
|
|
balance_of_sub_account = float(self.network_api.get_balance(sub_account_address)) / 1000000000000000000
|
|
|
|
balance_of_status_account = float(self.network_api.get_balance(status_account_address)) / 1000000000000000000
|
2020-12-08 15:56:57 +00:00
|
|
|
wallet_view.scan_tokens()
|
2020-07-10 16:00:56 +00:00
|
|
|
total_eth_from_two_accounts = float(wallet_view.get_asset_amount_by_name('ETH'))
|
2019-10-04 13:50:44 +00:00
|
|
|
expected_balance = self.network_api.get_rounded_balance(total_eth_from_two_accounts,
|
|
|
|
(balance_of_status_account + balance_of_sub_account))
|
|
|
|
|
|
|
|
if total_eth_from_two_accounts != expected_balance:
|
2019-09-26 09:11:46 +00:00
|
|
|
self.driver.fail('Total wallet balance %s != of Status account (%s) + SubAccount (%s)' % (
|
|
|
|
total_eth_from_two_accounts, balance_of_status_account, balance_of_sub_account))
|
2019-06-28 14:36:24 +00:00
|
|
|
|
2019-10-25 14:33:56 +00:00
|
|
|
@marks.testrail_id(6235)
|
|
|
|
@marks.medium
|
|
|
|
def test_can_change_account_settings(self):
|
|
|
|
sign_in_view = SignInView(self.driver)
|
|
|
|
sign_in_view.create_user()
|
|
|
|
wallet_view = sign_in_view.wallet_button.click()
|
|
|
|
wallet_view.set_up_wallet()
|
|
|
|
status_account_address = wallet_view.get_wallet_address()
|
2019-12-20 17:35:36 +00:00
|
|
|
wallet_view.get_account_options_by_name().click()
|
2019-10-25 14:33:56 +00:00
|
|
|
|
|
|
|
wallet_view.just_fyi('open Account Settings screen and check that all elements are shown')
|
|
|
|
wallet_view.account_settings_button.click()
|
|
|
|
for text in 'On Status tree', status_account_address, "m/44'/60'/0'/0/0":
|
|
|
|
if not wallet_view.element_by_text(text).is_element_displayed():
|
|
|
|
self.errors.append("'%s' text is not shown on Account Settings screen!" % text)
|
|
|
|
|
|
|
|
wallet_view.just_fyi('change account name/color and verified applied changes')
|
|
|
|
account_name = ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(10))
|
2020-06-16 14:24:51 +00:00
|
|
|
wallet_view.account_name_input.clear()
|
2019-10-25 14:33:56 +00:00
|
|
|
wallet_view.account_name_input.send_keys(account_name)
|
|
|
|
wallet_view.account_color_button.select_color_by_position(1)
|
|
|
|
wallet_view.apply_settings_button.click()
|
|
|
|
wallet_view.element_by_text('This device').scroll_to_element()
|
2021-06-23 15:12:42 +00:00
|
|
|
wallet_view.close_button.click()
|
|
|
|
wallet_view.close_button.click()
|
2019-10-25 14:33:56 +00:00
|
|
|
account_button = wallet_view.get_account_by_name(account_name)
|
|
|
|
if not account_button.is_element_displayed():
|
|
|
|
self.driver.fail('Account name was not changed')
|
|
|
|
if not account_button.color_matches('multi_account_color.png'):
|
|
|
|
self.driver.fail('Account color does not match expected')
|
|
|
|
|
2020-04-15 14:25:18 +00:00
|
|
|
self.errors.verify_no_errors()
|
|
|
|
|
|
|
|
@marks.testrail_id(6282)
|
|
|
|
@marks.medium
|
|
|
|
def test_can_scan_eip_681_links(self):
|
|
|
|
sign_in_view = SignInView(self.driver)
|
|
|
|
sign_in_view.recover_access(transaction_senders['C']['passphrase'])
|
|
|
|
wallet_view = sign_in_view.wallet_button.click()
|
2021-07-12 14:44:51 +00:00
|
|
|
wallet_view.wait_balance_is_changed()
|
2020-04-15 14:25:18 +00:00
|
|
|
send_transaction_view = SendTransactionView(self.driver)
|
2021-06-23 15:12:42 +00:00
|
|
|
|
|
|
|
sign_in_view.just_fyi("Setting up wallet")
|
|
|
|
wallet_view.accounts_status_account.click_until_presence_of_element(wallet_view.send_transaction_button)
|
|
|
|
send_transaction = wallet_view.send_transaction_button.click()
|
|
|
|
send_transaction.set_recipient_address('0x%s' % basic_user['address'])
|
|
|
|
send_transaction.amount_edit_box.set_value("0")
|
|
|
|
send_transaction.confirm()
|
|
|
|
send_transaction.sign_transaction_button.click()
|
|
|
|
wallet_view.set_up_wallet_when_sending_tx()
|
|
|
|
wallet_view.cancel_button.click()
|
|
|
|
wallet_view.close_button.click()
|
|
|
|
|
2020-04-15 14:25:18 +00:00
|
|
|
url_data = {
|
|
|
|
'ens_for_receiver': {
|
|
|
|
'url': 'ethereum:0xc55cf4b03948d7ebc8b9e8bad92643703811d162@3/transfer?address=nastya.stateofus.eth&uint256=1e-1',
|
|
|
|
'data':{
|
|
|
|
'asset': 'STT',
|
|
|
|
'amount': '0.1',
|
|
|
|
'address': '0x58d8…F2ff',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'gas_settings': {
|
|
|
|
'url': 'ethereum:0x3d597789ea16054a084ac84ce87f50df9198f415@3?value=1e16&gasPrice=1000000000&gasLimit=100000',
|
|
|
|
'data': {
|
|
|
|
'amount': '0.01',
|
|
|
|
'asset': 'ETHro',
|
|
|
|
'address': '0x3D59…F415',
|
|
|
|
'gas_limit': '100000',
|
|
|
|
'gas_price': '1',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'payment_link': {
|
|
|
|
'url': 'ethereum:pay-0xc55cf4b03948d7ebc8b9e8bad92643703811d162@3/transfer?address=0x3d597789ea16054a084ac84ce87f50df9198f415&uint256=1e1',
|
|
|
|
'data': {
|
|
|
|
'amount': '10',
|
|
|
|
'asset': 'STT',
|
|
|
|
'address': '0x3D59…F415',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'validation_amount_too_presize': {
|
|
|
|
'url': 'ethereum:0xc55cf4b03948d7ebc8b9e8bad92643703811d162@3/transfer?address=0x101848D5C5bBca18E6b4431eEdF6B95E9ADF82FA&uint256=1e-19',
|
|
|
|
'data': {
|
|
|
|
'amount': '1e-19',
|
|
|
|
'asset': 'STT',
|
|
|
|
'address': '0x1018…82FA',
|
|
|
|
|
|
|
|
},
|
|
|
|
'send_transaction_validation_error': 'Amount is too precise',
|
|
|
|
},
|
|
|
|
'validation_amount_too_big': {
|
|
|
|
'url': 'ethereum:0x101848D5C5bBca18E6b4431eEdF6B95E9ADF82FA@3?value=1e25',
|
|
|
|
'data': {
|
|
|
|
'amount': '10000000',
|
|
|
|
'asset': 'ETHro',
|
|
|
|
'address': '0x1018…82FA',
|
|
|
|
|
|
|
|
},
|
|
|
|
'send_transaction_validation_error': 'Insufficient funds',
|
|
|
|
},
|
|
|
|
'validation_wrong_chain_id': {
|
|
|
|
'url': 'ethereum:0x101848D5C5bBca18E6b4431eEdF6B95E9ADF82FA?value=1e17',
|
|
|
|
'error': 'Network does not match',
|
|
|
|
'data': {
|
|
|
|
'amount': '0.1',
|
|
|
|
'asset': 'ETHro',
|
|
|
|
'address': '0x1018…82FA',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'validation_wrong_address': {
|
|
|
|
'url': 'ethereum:0x744d70fdbe2ba4cf95131626614a1763df805b9e@3/transfer?address=blablabla&uint256=1e10',
|
|
|
|
'error': 'Invalid address',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for key in url_data:
|
|
|
|
wallet_view.just_fyi('Checking %s case' % key)
|
|
|
|
wallet_view.scan_qr_button.click()
|
|
|
|
if wallet_view.allow_button.is_element_displayed():
|
|
|
|
wallet_view.allow_button.click()
|
2020-10-30 14:40:14 +00:00
|
|
|
wallet_view.enter_qr_edit_box.scan_qr(url_data[key]['url'])
|
2020-04-15 14:25:18 +00:00
|
|
|
if url_data[key].get('error'):
|
|
|
|
if not wallet_view.element_by_text_part(url_data[key]['error']).is_element_displayed():
|
|
|
|
self.errors.append('Expected error %s is not shown' % url_data[key]['error'])
|
|
|
|
wallet_view.ok_button.click()
|
|
|
|
if url_data[key].get('data'):
|
|
|
|
if 'gas' in key:
|
|
|
|
actual_data = send_transaction_view.get_values_from_send_transaction_bottom_sheet(gas=True)
|
|
|
|
else:
|
|
|
|
actual_data = send_transaction_view.get_values_from_send_transaction_bottom_sheet()
|
|
|
|
difference_in_data = url_data[key]['data'].items() - actual_data.items()
|
|
|
|
if difference_in_data:
|
|
|
|
self.errors.append(
|
|
|
|
'In %s case returned value does not match expected in %s' % (key, repr(difference_in_data)))
|
|
|
|
if url_data[key].get('send_transaction_validation_error'):
|
|
|
|
error = url_data[key]['send_transaction_validation_error']
|
|
|
|
if not wallet_view.element_by_text_part(error).is_element_displayed():
|
|
|
|
self.errors.append(
|
|
|
|
'Expected error %s is not shown' % error)
|
2021-06-23 15:12:42 +00:00
|
|
|
if wallet_view.close_send_transaction_view_button.is_element_displayed():
|
|
|
|
wallet_view.close_send_transaction_view_button.wait_and_click()
|
2020-09-17 13:14:55 +00:00
|
|
|
else:
|
2021-02-04 12:51:01 +00:00
|
|
|
wallet_view.cancel_button.wait_and_click()
|
2020-04-15 14:25:18 +00:00
|
|
|
|
|
|
|
self.errors.verify_no_errors()
|
2020-05-22 08:49:30 +00:00
|
|
|
|
|
|
|
@marks.testrail_id(6208)
|
|
|
|
@marks.high
|
|
|
|
def test_send_transaction_with_custom_token(self):
|
|
|
|
contract_address = '0x101848D5C5bBca18E6b4431eEdF6B95E9ADF82FA'
|
|
|
|
name = 'Weenus 💪'
|
|
|
|
symbol = 'WEENUS'
|
|
|
|
decimals = '18'
|
|
|
|
sign_in_view = SignInView(self.driver)
|
|
|
|
sign_in_view.recover_access(wallet_users['B']['passphrase'])
|
|
|
|
wallet_view = sign_in_view.wallet_button.click()
|
|
|
|
wallet_view.set_up_wallet()
|
|
|
|
wallet_view.multiaccount_more_options.click()
|
|
|
|
wallet_view.manage_assets_button.click()
|
|
|
|
token_view = wallet_view.add_custom_token_button.click()
|
|
|
|
token_view.contract_address_input.send_keys(contract_address)
|
|
|
|
if token_view.name_input.text != name:
|
|
|
|
self.errors.append('Name for custom token was not set')
|
|
|
|
if token_view.symbol_input.text != symbol:
|
|
|
|
self.errors.append('Symbol for custom token was not set')
|
|
|
|
if token_view.decimals_input.text != decimals:
|
|
|
|
self.errors.append('Decimals for custom token was not set')
|
|
|
|
token_view.add_button.click()
|
2021-06-14 17:52:58 +00:00
|
|
|
token_view.close_button.click()
|
2020-11-06 11:23:12 +00:00
|
|
|
wallet_view.asset_by_name(symbol).scroll_to_element()
|
2020-05-22 08:49:30 +00:00
|
|
|
if not wallet_view.asset_by_name(symbol).is_element_displayed():
|
|
|
|
self.errors.append('Custom token is not shown on Wallet view')
|
2020-11-26 17:33:43 +00:00
|
|
|
wallet_view.accounts_status_account.scroll_to_element(direction='up')
|
2020-05-22 08:49:30 +00:00
|
|
|
wallet_view.accounts_status_account.click()
|
|
|
|
recipient = "0x" + basic_user['address']
|
2020-12-08 15:56:57 +00:00
|
|
|
amount = '0.000%s' % str(random.randint(10000, 99999)) + '1'
|
2020-05-22 08:49:30 +00:00
|
|
|
wallet_view.send_transaction(asset_name=symbol, amount=amount, recipient=recipient)
|
2020-06-23 09:01:06 +00:00
|
|
|
# TODO: disabled due to 10838
|
|
|
|
# transactions_view = wallet_view.transaction_history_button.click()
|
|
|
|
# transactions_view.transactions_table.find_transaction(amount=amount, asset=symbol)
|
2020-05-22 08:49:30 +00:00
|
|
|
|
|
|
|
self.errors.verify_no_errors()
|
2020-06-24 13:25:53 +00:00
|
|
|
|
2020-10-06 14:48:08 +00:00
|
|
|
@marks.testrail_id(6328)
|
2021-02-01 16:09:04 +00:00
|
|
|
@marks.critical
|
2020-10-06 14:48:08 +00:00
|
|
|
def test_send_transaction_set_recipient_options(self):
|
2021-02-01 16:09:04 +00:00
|
|
|
home = SignInView(self.driver).recover_access(wallet_users['D']['passphrase'])
|
2020-10-06 14:48:08 +00:00
|
|
|
nickname = 'my_some_nickname'
|
|
|
|
account_name = 'my_acc_name'
|
|
|
|
account_address = '0x8c2E3Cd844848E79cFd4671cE45C12F210b630d7'
|
|
|
|
recent_add_to_fav_name = 'my_Recent_STT'
|
2021-02-01 16:09:04 +00:00
|
|
|
recent_add_to_fav_address = '0x58d8c3d70ce4fa4b9fb10a665c8712238746f2ff'
|
|
|
|
ens_status = ens_user_ropsten
|
|
|
|
ens_other = ens_user
|
2020-10-06 14:48:08 +00:00
|
|
|
basic_add_to_fav_name = 'my_basic_address'
|
|
|
|
|
2021-02-01 16:09:04 +00:00
|
|
|
home.just_fyi('Add new account and new ENS contact for recipient')
|
|
|
|
chat = home.add_contact(ens_status['ens'])
|
2020-10-06 14:48:08 +00:00
|
|
|
chat.chat_options.click()
|
|
|
|
chat.view_profile_button.click_until_presence_of_element(chat.remove_from_contacts)
|
|
|
|
chat.set_nickname(nickname)
|
2021-06-14 17:52:58 +00:00
|
|
|
chat.close_button.click()
|
2021-02-01 16:09:04 +00:00
|
|
|
wallet = home.wallet_button.click()
|
|
|
|
wallet.set_up_wallet()
|
|
|
|
wallet.add_account(account_name=account_name)
|
|
|
|
wallet.accounts_status_account.click()
|
|
|
|
send_tr = wallet.send_transaction_button.click()
|
|
|
|
|
|
|
|
send_tr.just_fyi('Set one of my accounts')
|
|
|
|
send_tr.chose_recipient_button.click()
|
|
|
|
send_tr.element_by_translation_id("my-accounts").click()
|
|
|
|
send_tr.element_by_text(account_name).click()
|
|
|
|
if send_tr.enter_recipient_address_text.text != send_tr.get_formatted_recipient_address(account_address):
|
2020-10-06 14:48:08 +00:00
|
|
|
self.errors.append('Added account is not resolved as recipient')
|
|
|
|
|
2021-02-01 16:09:04 +00:00
|
|
|
send_tr.just_fyi('Set contract address from recent and check smart contract error')
|
|
|
|
send_tr.chose_recipient_button.click()
|
|
|
|
send_tr.element_by_translation_id("recent").click()
|
|
|
|
send_tr.element_by_text('↓ 1000 MDS').click()
|
|
|
|
if not send_tr.element_by_translation_id("warning-sending-to-contract-descr").is_element_displayed():
|
2020-10-06 14:48:08 +00:00
|
|
|
self.driver.fail('No warning is shown at attempt to set as recipient smart contract')
|
2021-02-01 16:09:04 +00:00
|
|
|
send_tr.ok_button.click()
|
|
|
|
send_tr.element_by_text('↑ 0.001 ETHro').scroll_and_click()
|
|
|
|
send_tr.add_to_favorites(recent_add_to_fav_name)
|
|
|
|
wallet.element_by_translation_id("recent").click()
|
|
|
|
|
|
|
|
send_tr.just_fyi('Scan invalid QR')
|
|
|
|
send_tr.scan_qr_code_button.click()
|
|
|
|
send_tr.allow_button.click(1)
|
|
|
|
wallet.enter_qr_edit_box.scan_qr('something%s' % basic_user['address'])
|
|
|
|
if not send_tr.element_by_text_part('Invalid address').is_element_displayed(10):
|
2020-10-30 14:40:14 +00:00
|
|
|
self.driver.fail('No error is shown at attempt to scan invalid address')
|
2021-02-01 16:09:04 +00:00
|
|
|
wallet.ok_button.click()
|
2020-10-30 14:40:14 +00:00
|
|
|
|
2021-02-01 16:09:04 +00:00
|
|
|
send_tr.just_fyi('Scan code, add it to favorites and recheck that it is preserved')
|
|
|
|
send_tr.scan_qr_code_button.click()
|
|
|
|
wallet.enter_qr_edit_box.scan_qr(basic_user['address'])
|
|
|
|
send_tr.add_to_favorites(basic_add_to_fav_name)
|
|
|
|
send_tr.element_by_translation_id("favourites").scroll_and_click()
|
2020-10-06 14:48:08 +00:00
|
|
|
for name in (recent_add_to_fav_name, basic_add_to_fav_name):
|
2021-02-01 16:09:04 +00:00
|
|
|
wallet.element_by_text(name).scroll_to_element()
|
|
|
|
|
|
|
|
send_tr.element_by_text(recent_add_to_fav_name).scroll_and_click()
|
|
|
|
if str(send_tr.enter_recipient_address_text.text).lower() != send_tr.get_formatted_recipient_address(
|
|
|
|
recent_add_to_fav_address):
|
2020-10-06 14:48:08 +00:00
|
|
|
self.errors.append('Recent address that was added to favourites was not resolved correctly')
|
|
|
|
|
2021-02-01 16:09:04 +00:00
|
|
|
send_tr.just_fyi('Set contact')
|
|
|
|
send_tr.chose_recipient_button.click()
|
|
|
|
send_tr.element_by_translation_id("contacts").scroll_and_click()
|
|
|
|
send_tr.element_by_text(nickname).scroll_and_click()
|
|
|
|
send_tr.recipient_done.click()
|
|
|
|
if send_tr.enter_recipient_address_text.text != send_tr.get_formatted_recipient_address(ens_status['address']):
|
|
|
|
self.errors.append('ENS from contact is not resolved as recipient')
|
|
|
|
|
|
|
|
send_tr.just_fyi('Set different ENS options')
|
|
|
|
send_tr.set_recipient_address(ens_other['ens_another_domain'])
|
|
|
|
if send_tr.enter_recipient_address_text.text != send_tr.get_formatted_recipient_address(ens_other['address']):
|
|
|
|
self.errors.append('ENS address on another domain is not resolved as recipient')
|
|
|
|
send_tr.set_recipient_address('%s.stateofus.eth' % ens_status['ens'])
|
|
|
|
if send_tr.enter_recipient_address_text.text != send_tr.get_formatted_recipient_address(ens_status['address']):
|
|
|
|
self.errors.append('ENS address on stateofus.eth is not resolved as recipient')
|
|
|
|
|
|
|
|
send_tr.just_fyi('Check search and set address from search')
|
|
|
|
send_tr.chose_recipient_button.click()
|
|
|
|
send_tr.search_by_keyword(ens_status['ens'][:2])
|
|
|
|
if not send_tr.element_by_text('@' + ens_status['ens']).is_element_displayed():
|
2020-10-06 14:48:08 +00:00
|
|
|
self.errors.append('ENS address from contacts is not shown in search')
|
2021-02-01 16:09:04 +00:00
|
|
|
send_tr.cancel_button.click()
|
|
|
|
send_tr.search_by_keyword('my')
|
2020-10-06 14:48:08 +00:00
|
|
|
for name in (nickname, account_name, recent_add_to_fav_name, basic_add_to_fav_name):
|
2021-02-01 16:09:04 +00:00
|
|
|
if not send_tr.element_by_text(name).is_element_displayed():
|
2020-10-06 14:48:08 +00:00
|
|
|
self.errors.append('%s is not shown in search when searching by namepart' % name)
|
2021-02-01 16:09:04 +00:00
|
|
|
send_tr.element_by_text(basic_add_to_fav_name).click()
|
|
|
|
if send_tr.enter_recipient_address_text.text != send_tr.get_formatted_recipient_address('0x' + basic_user['address']):
|
2020-10-06 14:48:08 +00:00
|
|
|
self.errors.append('QR scanned address that was added to favourites was not resolved correctly')
|
|
|
|
|
|
|
|
self.errors.verify_no_errors()
|
|
|
|
|
|
|
|
|
2020-06-24 13:25:53 +00:00
|
|
|
@marks.testrail_id(5437)
|
|
|
|
@marks.medium
|
|
|
|
def test_validation_amount_errors(self):
|
|
|
|
sender = wallet_users['C']
|
|
|
|
sign_in_view = SignInView(self.driver)
|
|
|
|
|
|
|
|
errors = {'send_transaction_screen': {
|
|
|
|
'too_precise': 'Amount is too precise. Max number of decimals is 7.',
|
|
|
|
'insufficient_funds': 'Insufficient funds'
|
|
|
|
},
|
|
|
|
'sending_screen': {
|
|
|
|
'Amount': 'Insufficient funds',
|
|
|
|
'Network fee': 'Not enough ETH for gas'
|
|
|
|
},
|
|
|
|
'gas_prices': {
|
|
|
|
'1.0000000009': 'Invalid number',
|
|
|
|
'0.0000000009': 'Min 1 wei',
|
|
|
|
'-1': 'Min 1 wei'
|
|
|
|
},
|
|
|
|
'gas_limit': {
|
|
|
|
'20999': 'Min 21000 units',
|
|
|
|
'21000.1': 'Invalid number',
|
|
|
|
'-21000': 'Min 21000 units'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
warning = 'Warning %s is not shown on %s'
|
|
|
|
|
|
|
|
sign_in_view.recover_access(sender['passphrase'])
|
|
|
|
wallet_view = sign_in_view.wallet_button.click()
|
|
|
|
wallet_view.set_up_wallet()
|
|
|
|
wallet_view.accounts_status_account.click()
|
|
|
|
|
|
|
|
screen = 'send transaction screen from wallet'
|
|
|
|
sign_in_view.just_fyi('Checking %s on %s' % (errors['send_transaction_screen']['too_precise'], screen))
|
|
|
|
initial_amount_ADI = wallet_view.get_asset_amount_by_name('ADI')
|
|
|
|
send_transaction = wallet_view.send_transaction_button.click()
|
|
|
|
adi_button = send_transaction.asset_by_name('ADI')
|
|
|
|
send_transaction.select_asset_button.click_until_presence_of_element(send_transaction.eth_asset_in_select_asset_bottom_sheet_button)
|
|
|
|
adi_button.click()
|
|
|
|
send_transaction.amount_edit_box.click()
|
2020-12-08 15:56:57 +00:00
|
|
|
amount = '0.000%s' % str(random.randint(100000, 999999)) + '1'
|
2020-06-24 13:25:53 +00:00
|
|
|
send_transaction.amount_edit_box.set_value(amount)
|
|
|
|
if not send_transaction.element_by_text(errors['send_transaction_screen']['too_precise']).is_element_displayed():
|
|
|
|
self.errors.append(warning % (errors['send_transaction_screen']['too_precise'], screen))
|
|
|
|
|
|
|
|
sign_in_view.just_fyi('Checking %s on %s' % (errors['send_transaction_screen']['insufficient_funds'], screen))
|
|
|
|
send_transaction.amount_edit_box.clear()
|
|
|
|
send_transaction.amount_edit_box.set_value(str(initial_amount_ADI) + '1')
|
|
|
|
if not send_transaction.element_by_text(errors['send_transaction_screen']['insufficient_funds']).is_element_displayed():
|
|
|
|
self.errors.append(warning % (errors['send_transaction_screen']['insufficient_funds'], screen))
|
2021-06-23 15:12:42 +00:00
|
|
|
wallet_view.close_send_transaction_view_button.click()
|
|
|
|
wallet_view.close_button.click()
|
2020-06-24 13:25:53 +00:00
|
|
|
|
|
|
|
screen = 'sending screen from wallet'
|
2020-07-29 15:54:45 +00:00
|
|
|
sign_in_view.just_fyi('Checking %s on %s' % (errors['sending_screen']['Network fee'], screen))
|
2020-06-24 13:25:53 +00:00
|
|
|
account_name = 'new'
|
|
|
|
wallet_view.add_account(account_name)
|
|
|
|
wallet_view.get_account_by_name(account_name).click()
|
|
|
|
wallet_view.send_transaction_button.click()
|
|
|
|
send_transaction.amount_edit_box.set_value('0')
|
2020-09-17 13:14:55 +00:00
|
|
|
send_transaction.set_recipient_address(ens_user_ropsten['ens'])
|
2020-06-24 13:25:53 +00:00
|
|
|
send_transaction.next_button.click()
|
|
|
|
if not send_transaction.validation_error_element.is_element_displayed(10):
|
|
|
|
self.errors.append('Validation icon is not shown when testing %s on %s' % (errors['sending_screen']['Network fee'],screen))
|
|
|
|
send_transaction.get_validation_icon().click()
|
2020-07-30 14:35:34 +00:00
|
|
|
# TODO: disbled until redo of Network fee validation element
|
|
|
|
# if not send_transaction.element_by_text_part(errors['sending_screen']['Network fee']).is_element_displayed(10):
|
|
|
|
# self.errors.append(warning % (errors['sending_screen']['Network fee'],screen))
|
2020-06-24 13:25:53 +00:00
|
|
|
send_transaction.sign_with_password.click()
|
|
|
|
if send_transaction.enter_password_input.is_element_displayed():
|
|
|
|
self.errors.append('Sign button is active when not enough ETH for gas')
|
|
|
|
|
|
|
|
sign_in_view.just_fyi('check validation for Gas Limit and Gas Price')
|
|
|
|
send_transaction.network_fee_button.click_until_presence_of_element(send_transaction.gas_limit_input)
|
|
|
|
for key in errors['gas_prices']:
|
|
|
|
send_transaction.gas_price_input.clear()
|
|
|
|
send_transaction.gas_price_input.send_keys(key)
|
|
|
|
if not send_transaction.element_by_text(errors['gas_prices'][key]).is_element_displayed():
|
|
|
|
self.errors.append("With %s Gas Price value there is no %s error displayed" % (key, errors['gas_prices'][key]))
|
|
|
|
send_transaction.gas_price_input.clear()
|
|
|
|
send_transaction.gas_price_input.send_keys('0.1')
|
|
|
|
for key in errors['gas_limit']:
|
|
|
|
send_transaction.gas_limit_input.clear()
|
|
|
|
send_transaction.gas_limit_input.send_keys(key)
|
|
|
|
if not send_transaction.element_by_text(errors['gas_limit'][key]).is_element_displayed():
|
|
|
|
self.errors.append("With %s Gas Limit value there is no %s error displayed" % (key, errors['gas_limit'][key]))
|
|
|
|
send_transaction.gas_limit_input.clear()
|
|
|
|
send_transaction.gas_limit_input.send_keys('21000')
|
|
|
|
send_transaction.update_fee_button.click_until_absense_of_element(send_transaction.update_fee_button)
|
|
|
|
if send_transaction.validation_error_element.is_element_displayed():
|
|
|
|
self.errors.append('Warning about insufficient funds for gas is shown after updating transaction fee')
|
|
|
|
send_transaction.cancel_button.click()
|
|
|
|
|
|
|
|
screen = 'sending screen from DApp'
|
2020-09-17 13:14:55 +00:00
|
|
|
sign_in_view.just_fyi('Checking %s on %s' % (errors['sending_screen']['Network fee'], screen))
|
|
|
|
home_view = wallet_view.home_button.click()
|
|
|
|
dapp_view = sign_in_view.dapp_tab_button.click()
|
|
|
|
dapp_view.select_account_button.click()
|
|
|
|
dapp_view.select_account_by_name(account_name).wait_for_element(30)
|
|
|
|
dapp_view.select_account_by_name(account_name).click()
|
|
|
|
status_test_dapp = home_view.open_status_test_dapp()
|
|
|
|
status_test_dapp.wait_for_d_aap_to_load()
|
|
|
|
status_test_dapp.transactions_button.click_until_presence_of_element(
|
|
|
|
status_test_dapp.send_two_tx_in_batch_button)
|
|
|
|
status_test_dapp.send_two_tx_in_batch_button.click()
|
|
|
|
if not send_transaction.validation_error_element.is_element_displayed(10):
|
|
|
|
self.errors.append(warning % (errors['sending_screen']['Network fee'],screen))
|
2020-06-24 13:25:53 +00:00
|
|
|
self.errors.verify_no_errors()
|
|
|
|
|
2020-10-22 09:41:29 +00:00
|
|
|
|
|
|
|
class TestTransactionWalletMultipleDevice(MultipleDeviceTestCase):
|
|
|
|
|
|
|
|
@marks.testrail_id(6330)
|
|
|
|
@marks.medium
|
|
|
|
def test_can_send_all_tokens_via_max_option(self):
|
|
|
|
sender = transaction_senders['V']
|
|
|
|
receiver = transaction_recipients['K']
|
|
|
|
self.create_drivers(2)
|
|
|
|
device_1, device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
|
|
|
|
|
|
|
device_1_home, device_2_home = device_1.recover_access(sender['passphrase']), \
|
|
|
|
device_2.recover_access(receiver['passphrase'])
|
|
|
|
|
|
|
|
wallet_view_serder = device_1_home.wallet_button.click()
|
|
|
|
wallet_view_serder.set_up_wallet()
|
|
|
|
wallet_view_receiver = device_2_home.wallet_button.click()
|
|
|
|
wallet_view_receiver.set_up_wallet()
|
|
|
|
|
|
|
|
if wallet_view_receiver.asset_by_name('STT').is_element_present(10):
|
|
|
|
initial_balance = wallet_view_receiver.get_asset_amount_by_name("STT")
|
|
|
|
else:
|
|
|
|
initial_balance = '0'
|
|
|
|
|
|
|
|
device_1.just_fyi("Sending token amount to device who will use Set Max option for token")
|
|
|
|
amount = '0.012345678912345678'
|
|
|
|
wallet_view_serder.accounts_status_account.click()
|
2021-06-08 10:58:26 +00:00
|
|
|
wallet_view_serder.send_transaction(asset_name='STT', amount=amount, recipient=receiver['address'])
|
2020-10-22 09:41:29 +00:00
|
|
|
wallet_view_receiver.wait_balance_is_changed(asset='STT', initial_balance=initial_balance, scan_tokens=True)
|
|
|
|
wallet_view_receiver.accounts_status_account.click()
|
|
|
|
|
|
|
|
device_1.just_fyi("Send all tokens via Set Max option")
|
|
|
|
send_transaction_view = wallet_view_receiver.send_transaction_button.click()
|
|
|
|
send_transaction_view.select_asset_button.click()
|
|
|
|
asset_name = 'STT'
|
|
|
|
asset_button = send_transaction_view.asset_by_name(asset_name)
|
|
|
|
send_transaction_view.select_asset_button.click_until_presence_of_element(
|
|
|
|
send_transaction_view.eth_asset_in_select_asset_bottom_sheet_button)
|
|
|
|
asset_button.click()
|
|
|
|
send_transaction_view.set_max_button.click()
|
|
|
|
send_transaction_view.set_recipient_address(sender['address'])
|
|
|
|
send_transaction_view.sign_transaction_button.click()
|
2021-06-08 10:58:26 +00:00
|
|
|
send_transaction_view.sign_transaction()
|
2021-06-23 15:12:42 +00:00
|
|
|
wallet_view_receiver.close_button.click()
|
2020-10-22 09:41:29 +00:00
|
|
|
initial_balance = float(initial_balance) + float(amount)
|
|
|
|
wallet_view_receiver.wait_balance_is_changed(asset='STT', initial_balance=str(initial_balance), scan_tokens=True)
|