2018-06-29 17:27:30 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from tests import marks, common_password, get_current_time
|
|
|
|
from tests.base_test_case import SingleDeviceTestCase
|
|
|
|
from views.sign_in_view import SignInView
|
|
|
|
|
|
|
|
|
|
|
|
@marks.all
|
|
|
|
@marks.account
|
|
|
|
class TestCreateAccount(SingleDeviceTestCase):
|
|
|
|
|
|
|
|
@marks.testrail_id(758)
|
2018-07-06 11:10:48 +00:00
|
|
|
@marks.smoke_1
|
2018-06-29 17:27:30 +00:00
|
|
|
def test_create_account(self):
|
|
|
|
if not self.test_fairy_warning_is_shown:
|
|
|
|
self.errors.append('TestFairy warning is not shown')
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
if not sign_in.i_have_account_button.is_element_displayed():
|
|
|
|
self.errors.append("'I have an account' button is not displayed")
|
|
|
|
sign_in.create_account_button.click()
|
|
|
|
sign_in.password_input.set_value(common_password)
|
|
|
|
sign_in.next_button.click()
|
|
|
|
sign_in.confirm_password_input.set_value(common_password)
|
|
|
|
sign_in.next_button.click()
|
|
|
|
|
|
|
|
sign_in.element_by_text_part('Display name').wait_for_element(30)
|
|
|
|
sign_in.name_input.send_keys('user_%s' % get_current_time())
|
|
|
|
|
|
|
|
sign_in.next_button.click()
|
|
|
|
|
|
|
|
@marks.testrail_id(1433)
|
|
|
|
def test_switch_users_and_add_new_account(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
sign_in.create_user()
|
|
|
|
public_key = sign_in.get_public_key()
|
|
|
|
profile = sign_in.get_profile_view()
|
2018-07-17 16:27:00 +00:00
|
|
|
profile.logout()
|
2018-07-16 12:57:01 +00:00
|
|
|
if sign_in.ok_button.is_element_displayed():
|
|
|
|
sign_in.ok_button.click()
|
2018-07-17 16:27:00 +00:00
|
|
|
sign_in.other_accounts_button.click()
|
2018-06-29 17:27:30 +00:00
|
|
|
sign_in.create_user()
|
|
|
|
if sign_in.get_public_key() == public_key:
|
|
|
|
pytest.fail('New account was not created')
|
|
|
|
|
2018-07-18 12:19:52 +00:00
|
|
|
@marks.testrail_id(3787)
|
|
|
|
@marks.smoke_1
|
2018-06-29 17:27:30 +00:00
|
|
|
def test_home_view(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
2018-07-18 12:19:52 +00:00
|
|
|
if not home.welcome_image.is_element_displayed():
|
|
|
|
self.errors.append('Welcome image is not shown')
|
2018-06-29 17:27:30 +00:00
|
|
|
for text in ['Welcome to Status',
|
2018-07-18 12:19:52 +00:00
|
|
|
'Here you can chat with people in a secure\n'
|
|
|
|
' private chat, browse and interact with DApps.\n'
|
|
|
|
' Use the “Plus” icon to explore Status',
|
|
|
|
]:
|
2018-06-29 17:27:30 +00:00
|
|
|
if not home.element_by_text(text).is_element_displayed():
|
|
|
|
self.errors.append("'%s' text is not shown" % text)
|
|
|
|
home.profile_button.click()
|
|
|
|
home.home_button.click()
|
|
|
|
text = ('There are no recent Chats or DApps here yet. '
|
|
|
|
'Tap the “Plus” button to see the list of Dapps or discover people to chat with.')
|
|
|
|
if not home.element_by_text(text).is_element_displayed():
|
|
|
|
self.errors.append("'%s' text is not shown" % text)
|
|
|
|
self.verify_no_errors()
|
2018-06-30 12:17:38 +00:00
|
|
|
|
|
|
|
@marks.testrail_id(844)
|
|
|
|
def test_create_account_short_and_mismatch_password(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
sign_in.create_account_button.click()
|
|
|
|
sign_in.password_input.set_value('12345')
|
|
|
|
|
|
|
|
mismatch_error = "Password confirmation doesn't match password"
|
|
|
|
|
|
|
|
sign_in.next_button.click()
|
|
|
|
if sign_in.confirm_password_input.is_element_displayed():
|
|
|
|
self.errors.append('Next button is clickable when password is less then 6 symbols')
|
|
|
|
|
|
|
|
sign_in.password_input.set_value('123456')
|
|
|
|
sign_in.next_button.click()
|
|
|
|
sign_in.confirm_password_input.set_value('1234567')
|
|
|
|
sign_in.next_button.click()
|
|
|
|
|
|
|
|
if not sign_in.find_text_part(mismatch_error):
|
|
|
|
self.errors.append("'%s' is not shown")
|
|
|
|
self.verify_no_errors()
|
2018-07-09 19:47:50 +00:00
|
|
|
|
|
|
|
@marks.testrail_id(3767)
|
|
|
|
def test_password_in_logcat_creating_account(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
sign_in.create_user()
|
2018-07-17 16:27:00 +00:00
|
|
|
sign_in.check_no_values_in_logcat(password=common_password)
|