2018-01-26 11:07:09 +00:00
|
|
|
from tests import info
|
|
|
|
import time
|
2018-02-09 15:16:07 +00:00
|
|
|
from selenium.common.exceptions import TimeoutException, NoSuchElementException
|
2018-02-13 17:22:41 +00:00
|
|
|
from views.base_element import BaseButton, BaseText
|
2018-01-14 17:43:36 +00:00
|
|
|
from views.base_view import BaseView
|
|
|
|
|
|
|
|
|
|
|
|
class PlusButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(PlusButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector(
|
2018-02-07 13:18:55 +00:00
|
|
|
"//android.view.ViewGroup/android.widget.TextView[@text='+']")
|
2018-01-14 17:43:36 +00:00
|
|
|
|
|
|
|
def navigate(self):
|
2018-02-13 17:22:41 +00:00
|
|
|
from views.start_new_chat_view import StartNewChatView
|
|
|
|
return StartNewChatView(self.driver)
|
2018-01-14 17:43:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ConsoleButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(ConsoleButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector(
|
|
|
|
"//*[@text='Console']")
|
|
|
|
|
|
|
|
|
|
|
|
class ChatElement(BaseButton):
|
|
|
|
def __init__(self, driver, username):
|
|
|
|
super(ChatElement, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='%s']" % username)
|
|
|
|
|
|
|
|
def navigate(self):
|
|
|
|
from views.chat_view import ChatView
|
|
|
|
return ChatView(self.driver)
|
|
|
|
|
|
|
|
|
2018-02-13 17:22:41 +00:00
|
|
|
class FirstChatElementTitle(BaseText):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(FirstChatElementTitle, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector('(//android.widget.ScrollView//android.widget.TextView)[1]')
|
|
|
|
|
|
|
|
|
2018-01-14 17:43:36 +00:00
|
|
|
class HomeView(BaseView):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(HomeView, self).__init__(driver)
|
|
|
|
|
|
|
|
self.plus_button = PlusButton(self.driver)
|
|
|
|
self.console_button = ConsoleButton(self.driver)
|
2018-02-13 17:22:41 +00:00
|
|
|
self.first_chat_element_title = FirstChatElementTitle(self.driver)
|
2018-01-14 17:43:36 +00:00
|
|
|
|
|
|
|
def wait_for_syncing_complete(self):
|
2018-01-26 11:07:09 +00:00
|
|
|
info('Waiting for syncing complete:')
|
2018-01-14 17:43:36 +00:00
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
sync = self.find_text_part('Syncing', 10)
|
2018-01-26 11:07:09 +00:00
|
|
|
info(sync.text)
|
2018-01-14 17:43:36 +00:00
|
|
|
except TimeoutException:
|
|
|
|
break
|
|
|
|
|
|
|
|
def get_chat_with_user(self, username):
|
|
|
|
return ChatElement(self.driver, username)
|
2018-01-26 11:07:09 +00:00
|
|
|
|
2018-02-09 15:16:07 +00:00
|
|
|
def get_back_to_home_view(self):
|
|
|
|
counter = 0
|
|
|
|
while not self.home_button.is_element_present():
|
|
|
|
try:
|
|
|
|
if counter >= 5:
|
|
|
|
return
|
|
|
|
self.back_button.click()
|
|
|
|
except (NoSuchElementException, TimeoutException):
|
|
|
|
counter += 1
|
|
|
|
|
2018-01-26 11:07:09 +00:00
|
|
|
def add_contact(self, public_key):
|
|
|
|
start_new_chat = self.plus_button.click()
|
|
|
|
start_new_chat.add_new_contact.click()
|
|
|
|
start_new_chat.public_key_edit_box.send_keys(public_key)
|
|
|
|
start_new_chat.confirm()
|
|
|
|
|
|
|
|
def create_group_chat(self, user_names_to_add: list, group_chat_name: str = 'new_group_chat'):
|
|
|
|
start_new_chat = self.plus_button.click()
|
|
|
|
start_new_chat.new_group_chat_button.click()
|
|
|
|
for user_name in user_names_to_add:
|
2018-02-19 18:39:54 +00:00
|
|
|
user_contact = start_new_chat.get_username_checkbox(user_name)
|
2018-01-26 11:07:09 +00:00
|
|
|
user_contact.scroll_to_element()
|
|
|
|
user_contact.click()
|
|
|
|
start_new_chat.next_button.click()
|
2018-02-19 18:39:54 +00:00
|
|
|
start_new_chat.chat_name_editbox.send_keys(group_chat_name)
|
|
|
|
start_new_chat.confirm_button.click()
|
2018-01-26 11:07:09 +00:00
|
|
|
|
2018-02-14 13:48:18 +00:00
|
|
|
def join_public_chat(self, chat_name: str):
|
|
|
|
start_new_chat = self.plus_button.click()
|
|
|
|
start_new_chat.join_public_chat_button.click()
|
2018-03-01 13:22:01 +00:00
|
|
|
start_new_chat.chat_name_editbox.send_keys(chat_name)
|
2018-02-14 13:48:18 +00:00
|
|
|
start_new_chat.confirm_button.click()
|
|
|
|
|
2018-01-26 11:07:09 +00:00
|
|
|
def get_public_key(self):
|
|
|
|
profile_view = self.profile_button.click()
|
|
|
|
profile_view.share_my_contact_key_button.click()
|
|
|
|
time.sleep(4)
|
|
|
|
public_key = profile_view.get_text_from_qr()
|
|
|
|
profile_view.cross_icon.click()
|
|
|
|
return public_key
|