2017-09-13 14:34:42 +00:00
|
|
|
from views.base_element import BaseElement, BaseButton, BaseEditBox, BaseText
|
2017-09-21 17:01:04 +00:00
|
|
|
import logging
|
|
|
|
import time
|
|
|
|
import pytest
|
|
|
|
import requests
|
2017-08-28 10:02:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
class BackButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(BackButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@content-desc='toolbar-back-button']")
|
|
|
|
|
2017-10-05 19:41:17 +00:00
|
|
|
def click(self):
|
|
|
|
self.wait_for_element(30)
|
|
|
|
self.find_element().click()
|
|
|
|
logging.info('Tap on %s' % self.name)
|
|
|
|
return self.navigate()
|
|
|
|
|
2017-08-28 10:02:20 +00:00
|
|
|
|
2017-09-21 17:01:04 +00:00
|
|
|
class ContactsButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(ContactsButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='Contacts']")
|
|
|
|
|
2017-10-05 19:41:17 +00:00
|
|
|
def navigate(self):
|
|
|
|
from views.contacts import ContactsViewObject
|
|
|
|
return ContactsViewObject(self.driver)
|
|
|
|
|
2017-09-21 17:01:04 +00:00
|
|
|
|
2017-08-28 10:02:20 +00:00
|
|
|
class BaseViewObject(object):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
self.driver = driver
|
|
|
|
self.back_button = BackButton(self.driver)
|
2017-09-21 17:01:04 +00:00
|
|
|
self.contacts_button = ContactsButton(self.driver)
|
2017-08-28 10:02:20 +00:00
|
|
|
|
|
|
|
def confirm(self):
|
2017-10-05 19:41:17 +00:00
|
|
|
logging.info("Tap 'Confirm' on native keyboard")
|
2017-08-28 10:02:20 +00:00
|
|
|
self.driver.keyevent(66)
|
|
|
|
|
2017-10-05 19:41:17 +00:00
|
|
|
def send_as_keyevent(self, string):
|
|
|
|
keys = {'0': 7, '1': 8, '2': 9, '3': 10, '4': 11, '5': 12, '6': 13, '7': 14, '8': 15, '9': 16,
|
|
|
|
',': 55, '-': 69}
|
|
|
|
for i in string:
|
|
|
|
logging.info("Tap '%s' on native keyboard" % i)
|
|
|
|
time.sleep(1)
|
|
|
|
self.driver.keyevent(keys[i])
|
2017-09-21 17:01:04 +00:00
|
|
|
|
|
|
|
def find_full_text(self, text, wait_time=60):
|
2017-10-05 19:41:17 +00:00
|
|
|
logging.info("Looking for full text: '%s'" % text)
|
2017-09-13 14:34:42 +00:00
|
|
|
element = BaseElement(self.driver)
|
|
|
|
element.locator = element.Locator.xpath_selector('//*[@text="' + text + '"]')
|
2017-09-21 17:01:04 +00:00
|
|
|
return element.wait_for_element(wait_time)
|
2017-09-13 14:34:42 +00:00
|
|
|
|
2017-09-21 17:01:04 +00:00
|
|
|
def find_text_part(self, text, wait_time=60):
|
2017-10-05 19:41:17 +00:00
|
|
|
logging.info("Looking for a text part: '%s'" % text)
|
2017-09-11 10:43:42 +00:00
|
|
|
element = BaseElement(self.driver)
|
2017-09-13 14:34:42 +00:00
|
|
|
element.locator = element.Locator.xpath_selector('//*[contains(@text, "' + text + '")]')
|
2017-09-21 17:01:04 +00:00
|
|
|
return element.wait_for_element(wait_time)
|
2017-09-13 14:34:42 +00:00
|
|
|
|
|
|
|
def element_by_text(self, text, element_type='base'):
|
|
|
|
|
|
|
|
element_types = {
|
|
|
|
'base': BaseElement,
|
|
|
|
'button': BaseButton,
|
|
|
|
'edit_box': BaseEditBox,
|
|
|
|
'text': BaseText
|
|
|
|
}
|
|
|
|
|
|
|
|
element = element_types[element_type](self.driver)
|
2017-08-28 10:02:20 +00:00
|
|
|
element.locator = element.Locator.xpath_selector('//*[@text="' + text + '"]')
|
2017-09-13 14:34:42 +00:00
|
|
|
return element
|
2017-08-28 10:02:20 +00:00
|
|
|
|
|
|
|
def get_chats(self):
|
|
|
|
from views.chats import ChatsViewObject
|
|
|
|
return ChatsViewObject(self.driver)
|
2017-09-21 17:01:04 +00:00
|
|
|
|
|
|
|
def get_balance(self, address):
|
|
|
|
url = 'http://ropsten.etherscan.io/api?module=account&action=balance&address=0x%s&tag=latest' % address
|
2017-10-13 08:41:30 +00:00
|
|
|
for i in range(5):
|
|
|
|
try:
|
|
|
|
return int(requests.request('GET', url).json()["result"])
|
|
|
|
except ValueError:
|
|
|
|
pass
|
2017-09-21 17:01:04 +00:00
|
|
|
|
|
|
|
def get_donate(self, address, wait_time=300):
|
2017-09-26 10:50:34 +00:00
|
|
|
initial_balance = self.get_balance(address)
|
2017-09-21 17:01:04 +00:00
|
|
|
response = requests.request('GET', 'http://46.101.129.137:3001/donate/0x%s' % address).json()
|
|
|
|
counter = 0
|
|
|
|
while True:
|
|
|
|
if counter == wait_time:
|
2017-09-26 10:50:34 +00:00
|
|
|
pytest.fail("Donation was not received during %s seconds!" % wait_time)
|
|
|
|
elif self.get_balance(address) == initial_balance:
|
2017-09-21 17:01:04 +00:00
|
|
|
counter += 10
|
|
|
|
time.sleep(10)
|
|
|
|
logging.info('Waiting %s seconds for donation' % counter)
|
|
|
|
else:
|
|
|
|
logging.info('Got %s for %s' % (response["amount"], address))
|
|
|
|
break
|
|
|
|
|
|
|
|
def verify_balance_is_updated(self, initial_balance, recipient_address, wait_time=120):
|
|
|
|
counter = 0
|
|
|
|
while True:
|
|
|
|
if counter == wait_time:
|
2017-09-26 10:50:34 +00:00
|
|
|
pytest.fail('Balance is not changed during %s seconds, funds were not received!' % wait_time)
|
2017-09-21 17:01:04 +00:00
|
|
|
elif initial_balance == self.get_balance(recipient_address):
|
|
|
|
counter += 10
|
|
|
|
time.sleep(10)
|
|
|
|
logging.info('Waiting %s seconds for funds' % counter)
|
|
|
|
else:
|
|
|
|
logging.info('Transaction was received and verified on ropsten.etherscan.io')
|
|
|
|
break
|