2018-09-24 16:22:55 +00:00
|
|
|
import time
|
2018-07-03 18:50:18 +00:00
|
|
|
|
2020-08-11 16:10:53 +00:00
|
|
|
from tests import marks, camera_access_error_text, photos_access_error_text
|
2020-05-15 14:51:59 +00:00
|
|
|
from tests.users import basic_user, dummy_user, ens_user_ropsten
|
2018-07-13 10:56:36 +00:00
|
|
|
from tests.base_test_case import SingleDeviceTestCase, MultipleDeviceTestCase
|
2018-07-03 18:50:18 +00:00
|
|
|
from views.sign_in_view import SignInView
|
|
|
|
|
|
|
|
|
|
|
|
@marks.chat
|
|
|
|
class TestChatManagement(SingleDeviceTestCase):
|
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5426)
|
|
|
|
@marks.medium
|
2020-03-17 17:27:10 +00:00
|
|
|
def test_clear_history_via_options(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
|
|
|
chat = home.add_contact(basic_user['public_key'])
|
|
|
|
|
2020-03-19 16:34:20 +00:00
|
|
|
one_to_one, public, group = basic_user['username'], '#public-clear-options', 'group'
|
2020-03-17 17:27:10 +00:00
|
|
|
message = 'test message'
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
|
|
|
home.create_group_chat([basic_user['username']], group)
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
|
|
|
home.join_public_chat(public[1:])
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
for chat_name in one_to_one, public, group:
|
|
|
|
chat = home.get_chat(chat_name).click()
|
|
|
|
chat.just_fyi('Sending messages to %s chat' % chat_name)
|
|
|
|
for _ in range(2):
|
|
|
|
chat.chat_message_input.send_keys(message)
|
|
|
|
chat.send_message_button.click()
|
|
|
|
chat.just_fyi('Clear history for %s chat' % chat_name)
|
|
|
|
chat.clear_history()
|
|
|
|
if chat.element_by_text(message).is_element_displayed():
|
|
|
|
self.errors.append('Messages in %s chat are still shown after clearing history' % chat_name)
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
home.relogin()
|
|
|
|
for chat_name in one_to_one, public, group:
|
|
|
|
if home.element_by_text(message).is_element_displayed():
|
|
|
|
self.errors.append(
|
|
|
|
'Messages in %s chat are still shown in Preview after clearing history and relaunch' % chat_name)
|
|
|
|
chat = home.get_chat(chat_name).click()
|
|
|
|
if chat.element_by_text(message).is_element_displayed():
|
|
|
|
self.errors.append(
|
|
|
|
'Messages in %s chat are shown after clearing history and relauch' % chat_name)
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
|
|
|
self.errors.verify_no_errors()
|
2018-07-03 18:50:18 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5319)
|
2020-03-17 17:27:10 +00:00
|
|
|
@marks.medium
|
|
|
|
def test_long_press_to_clear_chat_history(self):
|
2018-07-03 18:50:18 +00:00
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
2018-09-17 08:50:01 +00:00
|
|
|
chat = home.add_contact(basic_user['public_key'])
|
2020-03-17 17:27:10 +00:00
|
|
|
|
2020-03-19 16:34:20 +00:00
|
|
|
one_to_one, public, group = basic_user['username'], '#public-clear-long-press', 'group'
|
2020-03-17 17:27:10 +00:00
|
|
|
message = 'test message'
|
2018-07-03 18:50:18 +00:00
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
2020-03-17 17:27:10 +00:00
|
|
|
home.create_group_chat([basic_user['username']], group)
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
|
|
|
home.join_public_chat(public[1:])
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
for chat_name in one_to_one, public, group:
|
|
|
|
chat = home.get_chat(chat_name).click()
|
|
|
|
chat.just_fyi('Sending message to %s chat' % chat_name)
|
|
|
|
chat.chat_message_input.send_keys(message)
|
|
|
|
chat.send_message_button.click()
|
|
|
|
if chat.element_by_text(message).is_element_displayed():
|
|
|
|
self.errors.append('Messages in %s chat are still shown after clearing history' % chat_name)
|
|
|
|
home = chat.get_back_to_home_view()
|
|
|
|
home.just_fyi('Clear history for %s chat' % chat_name)
|
|
|
|
home.clear_chat_long_press(chat_name)
|
|
|
|
home.relogin()
|
|
|
|
for chat_name in one_to_one, public, group:
|
|
|
|
if home.element_by_text(message).is_element_displayed():
|
|
|
|
self.errors.append(
|
|
|
|
'Messages in %s chat are still shown in Preview after clearing history and relaunch' % chat_name)
|
|
|
|
chat = home.get_chat(chat_name).click()
|
|
|
|
if chat.element_by_text(message).is_element_displayed():
|
|
|
|
self.errors.append(
|
|
|
|
'Messages in %s chat are shown after clearing history and relauch' % chat_name)
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
|
|
|
self.errors.verify_no_errors()
|
|
|
|
|
|
|
|
@marks.testrail_id(5319)
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.critical
|
2020-03-17 17:27:10 +00:00
|
|
|
def test_long_press_to_delete_chat(self):
|
2018-07-03 18:50:18 +00:00
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
2020-03-17 17:27:10 +00:00
|
|
|
chat = home.add_contact(basic_user['public_key'])
|
|
|
|
|
2020-03-19 16:34:20 +00:00
|
|
|
one_to_one, public, group = basic_user['username'], '#public-delete-long-press', 'group'
|
2018-07-03 18:50:18 +00:00
|
|
|
chat.get_back_to_home_view()
|
2020-03-17 17:27:10 +00:00
|
|
|
|
|
|
|
home.create_group_chat([basic_user['username']], group)
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
|
|
|
home.join_public_chat(public[1:])
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
for chat_name in one_to_one, public, group:
|
|
|
|
chat = home.get_chat(chat_name).click()
|
|
|
|
chat.just_fyi('Sending message to %s chat' % chat_name)
|
|
|
|
chat.chat_message_input.send_keys('test message')
|
|
|
|
chat.send_message_button.click()
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
chat.just_fyi('Deleting %s chat' % chat_name)
|
2020-04-10 10:25:46 +00:00
|
|
|
home.leave_chat_long_press(chat_name) if chat_name == group else home.delete_chat_long_press(chat_name)
|
2020-03-17 17:27:10 +00:00
|
|
|
home.relogin()
|
|
|
|
for chat_name in one_to_one, public, group:
|
|
|
|
if home.get_chat(chat_name).is_element_displayed():
|
|
|
|
self.driver.fail('Deleted %s is present after relaunch app' % chat_name)
|
2018-07-03 18:50:18 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5304)
|
2019-03-05 16:43:30 +00:00
|
|
|
@marks.high
|
2019-02-15 10:42:33 +00:00
|
|
|
def test_open_chat_by_pasting_public_key(self):
|
2018-07-03 18:50:18 +00:00
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
2018-09-17 08:50:01 +00:00
|
|
|
public_key = basic_user['public_key']
|
2018-07-03 18:50:18 +00:00
|
|
|
|
2020-04-10 10:25:46 +00:00
|
|
|
chat = home.join_public_chat(home.get_random_chat_name())
|
2018-07-03 18:50:18 +00:00
|
|
|
chat.chat_message_input.send_keys(public_key)
|
|
|
|
chat.send_message_button.click()
|
|
|
|
chat.chat_element_by_text(public_key).long_press_element()
|
2019-03-18 11:15:08 +00:00
|
|
|
chat.element_by_text('Copy').click()
|
2018-07-03 18:50:18 +00:00
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
2019-04-05 13:05:23 +00:00
|
|
|
home.plus_button.click()
|
|
|
|
contacts_view = home.start_new_chat_button.click()
|
|
|
|
contacts_view.public_key_edit_box.paste_text_from_clipboard()
|
|
|
|
if contacts_view.public_key_edit_box.text != public_key:
|
2019-10-21 12:48:45 +00:00
|
|
|
self.driver.fail('Public key is not pasted from clipboard')
|
2020-05-01 07:20:06 +00:00
|
|
|
contacts_view.public_key_edit_box.click()
|
|
|
|
contacts_view.confirm_until_presence_of_element(chat.chat_message_input)
|
2019-04-05 13:05:23 +00:00
|
|
|
contacts_view.get_back_to_home_view()
|
2020-03-17 17:27:10 +00:00
|
|
|
if not home.get_chat(basic_user['username']).is_element_present():
|
2019-10-21 12:48:45 +00:00
|
|
|
self.driver.fail("No chat open in home view")
|
2018-07-06 22:14:16 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5387)
|
|
|
|
@marks.high
|
2020-03-17 17:27:10 +00:00
|
|
|
def test_delete_chats_via_delete_button(self):
|
2018-07-06 22:14:16 +00:00
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
2020-03-17 17:27:10 +00:00
|
|
|
chat = home.add_contact(basic_user['public_key'])
|
2018-07-06 22:14:16 +00:00
|
|
|
|
2020-03-19 16:34:20 +00:00
|
|
|
one_to_one, public, group = basic_user['username'], '#public-delete-options', 'group'
|
2020-03-17 17:27:10 +00:00
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
|
|
|
home.create_group_chat([basic_user['username']], group)
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
|
|
|
home.join_public_chat(public[1:])
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
for chat_name in one_to_one, public, group:
|
|
|
|
chat = home.get_chat(chat_name).click()
|
|
|
|
chat.just_fyi('Sending message to %s chat' % chat_name)
|
|
|
|
chat.chat_message_input.send_keys('test message')
|
|
|
|
chat.send_message_button.click()
|
|
|
|
chat.just_fyi('Deleting %s chat' % chat_name)
|
2020-04-10 10:25:46 +00:00
|
|
|
chat.leave_chat() if chat_name == group else chat.delete_chat()
|
2020-03-17 17:27:10 +00:00
|
|
|
chat.get_back_to_home_view()
|
|
|
|
for chat_name in one_to_one, public, group:
|
|
|
|
if home.get_chat(chat_name).is_element_displayed():
|
|
|
|
self.errors.append('Deleted %s chat is shown, but the chat has been deleted' % chat_name)
|
|
|
|
self.driver.close_app()
|
|
|
|
self.driver.launch_app()
|
|
|
|
sign_in.sign_in()
|
|
|
|
for chat_name in one_to_one, public, group:
|
|
|
|
if home.get_chat(chat_name).is_element_displayed():
|
|
|
|
self.errors.append('Deleted %s is shown after re-login, but the chat has been deleted' % chat_name)
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-07-13 10:56:36 +00:00
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5464)
|
|
|
|
@marks.medium
|
2018-07-20 08:27:33 +00:00
|
|
|
def test_incorrect_contact_code_start_new_chat(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
2019-04-05 13:05:23 +00:00
|
|
|
home.plus_button.click()
|
|
|
|
contacts_view = home.start_new_chat_button.click()
|
|
|
|
contacts_view.public_key_edit_box.set_value(basic_user['public_key'][:-1])
|
|
|
|
contacts_view.confirm()
|
2020-03-03 12:47:03 +00:00
|
|
|
warning_text = contacts_view.element_by_text('User not found')
|
2018-08-16 16:47:13 +00:00
|
|
|
if not warning_text.is_element_displayed():
|
2019-10-21 12:48:45 +00:00
|
|
|
self.driver.fail('Error is not shown for invalid public key')
|
2018-07-20 08:27:33 +00:00
|
|
|
|
2020-08-11 16:10:53 +00:00
|
|
|
|
|
|
|
@marks.testrail_id(6319)
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.medium
|
2020-08-11 16:10:53 +00:00
|
|
|
def test_deny_access_camera_and_gallery(self):
|
2018-07-20 08:27:33 +00:00
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
2020-08-11 16:10:53 +00:00
|
|
|
|
|
|
|
home.just_fyi("Denying access to camera in universal qr code scanner")
|
|
|
|
home.plus_button.click()
|
|
|
|
home.universal_qr_scanner_button.click()
|
|
|
|
home.deny_button.click()
|
|
|
|
home.element_by_text(camera_access_error_text).wait_for_visibility_of_element(3)
|
|
|
|
home.ok_button.click()
|
|
|
|
home.get_back_to_home_view()
|
|
|
|
|
|
|
|
home.just_fyi("Denying access to camera in scan chat key view")
|
2019-04-05 13:05:23 +00:00
|
|
|
home.plus_button.click()
|
|
|
|
contacts_view = home.start_new_chat_button.click()
|
|
|
|
contacts_view.scan_contact_code_button.click()
|
|
|
|
contacts_view.deny_button.click()
|
|
|
|
contacts_view.element_by_text(camera_access_error_text).wait_for_visibility_of_element(3)
|
|
|
|
contacts_view.ok_button.click()
|
2020-08-11 16:10:53 +00:00
|
|
|
home.get_back_to_home_view()
|
|
|
|
|
|
|
|
home.just_fyi("Denying access to gallery at attempt to send image")
|
|
|
|
chat = home.add_contact(basic_user['public_key'])
|
|
|
|
chat.show_images_button.click()
|
|
|
|
chat.deny_button.click()
|
|
|
|
chat.image_from_gallery_button.click()
|
|
|
|
chat.deny_button.click()
|
|
|
|
contacts_view.element_by_text(photos_access_error_text).wait_for_visibility_of_element(3)
|
|
|
|
contacts_view.ok_button.click()
|
|
|
|
home.get_back_to_home_view()
|
|
|
|
|
|
|
|
home.just_fyi("Denying access to camera in wallet view")
|
|
|
|
wallet = home.wallet_button.click()
|
|
|
|
wallet.set_up_wallet()
|
|
|
|
wallet.scan_qr_button.click()
|
|
|
|
wallet.deny_button.click()
|
|
|
|
wallet.element_by_text(camera_access_error_text).wait_for_visibility_of_element(3)
|
|
|
|
wallet.ok_button.click()
|
|
|
|
|
|
|
|
home.just_fyi("Denying access to camera in send transaction > scan address view")
|
|
|
|
wallet.accounts_status_account.click()
|
|
|
|
send_transaction = wallet.send_transaction_button.click()
|
|
|
|
send_transaction.chose_recipient_button.click()
|
|
|
|
send_transaction.scan_qr_code_button.click()
|
|
|
|
send_transaction.deny_button.click()
|
|
|
|
send_transaction.element_by_text(camera_access_error_text).wait_for_visibility_of_element(3)
|
|
|
|
send_transaction.ok_button.click()
|
|
|
|
wallet.back_button.click()
|
|
|
|
|
|
|
|
home.just_fyi("Allow access to camera in universal qr code scanner and check it in other views")
|
|
|
|
wallet.home_button.click()
|
|
|
|
home.plus_button.click()
|
|
|
|
home.universal_qr_scanner_button.click()
|
|
|
|
home.allow_button.click()
|
|
|
|
if not home.element_by_text('Scan QR code').is_element_displayed():
|
|
|
|
self.errors.append('Scan QR code is not opened after denying and allowing permission to the camera')
|
|
|
|
home.cancel_button.click()
|
|
|
|
wallet = home.wallet_button.click()
|
|
|
|
wallet.scan_qr_button.click()
|
|
|
|
if not home.element_by_text('Scan QR code').is_element_displayed():
|
|
|
|
self.errors.append('Scan QR code is not opened after allowing permission to the camera from univesal QR code'
|
|
|
|
' scanner view')
|
|
|
|
wallet.cancel_button.click()
|
|
|
|
wallet.home_button.click()
|
|
|
|
home.get_chat(basic_user['username']).click()
|
|
|
|
chat.show_images_button.click()
|
|
|
|
chat.allow_button.click()
|
|
|
|
if not chat.first_image_from_gallery.is_element_displayed():
|
|
|
|
self.errors.append('Image previews are not shown after denying and allowing access to gallery')
|
|
|
|
self.errors.verify_no_errors()
|
|
|
|
|
2018-07-20 08:27:33 +00:00
|
|
|
|
2019-03-12 08:29:20 +00:00
|
|
|
@marks.testrail_id(5757)
|
2020-05-11 07:29:20 +00:00
|
|
|
@marks.medium
|
2019-03-12 08:29:20 +00:00
|
|
|
def test_search_chat_on_home(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
2020-05-15 14:51:59 +00:00
|
|
|
|
|
|
|
home.just_fyi('Join public chat, start 1-1 with username and with ENS')
|
2020-04-10 10:25:46 +00:00
|
|
|
chat_name = home.get_random_chat_name()
|
2019-03-12 08:29:20 +00:00
|
|
|
public_chat = home.join_public_chat(chat_name)
|
|
|
|
public_chat.get_back_to_home_view()
|
2020-05-15 14:51:59 +00:00
|
|
|
for public_key in (basic_user['public_key'], ens_user_ropsten['ens']):
|
|
|
|
chat = home.add_contact(public_key)
|
|
|
|
chat.get_back_to_home_view()
|
|
|
|
|
|
|
|
search_list = {
|
|
|
|
basic_user['username']: basic_user['username'],
|
|
|
|
ens_user_ropsten['username']: ens_user_ropsten['ens'],
|
|
|
|
chat_name: chat_name
|
|
|
|
}
|
|
|
|
|
|
|
|
home.just_fyi('Can search for public chat name, ens name, username')
|
2019-03-12 08:29:20 +00:00
|
|
|
home.swipe_down()
|
|
|
|
for keyword in search_list:
|
2020-05-20 15:43:29 +00:00
|
|
|
home.search_by_keyword(keyword)
|
2019-03-12 08:29:20 +00:00
|
|
|
search_results = home.chat_name_text.find_elements()
|
|
|
|
if not search_results:
|
|
|
|
self.errors.append('No search results after searching by %s keyword' % keyword)
|
|
|
|
for element in search_results:
|
2020-05-15 14:51:59 +00:00
|
|
|
if search_list[keyword] not in element.text:
|
2019-03-12 08:29:20 +00:00
|
|
|
self.errors.append("'%s' is shown on the home screen after searching by '%s' keyword" %
|
2020-05-15 14:51:59 +00:00
|
|
|
(element.text, keyword))
|
2020-05-11 07:29:20 +00:00
|
|
|
home.cancel_button.click()
|
2020-05-15 14:51:59 +00:00
|
|
|
|
|
|
|
home.just_fyi('Can search for public chat while offline')
|
|
|
|
home.toggle_airplane_mode()
|
|
|
|
home.search_chat_input.click()
|
|
|
|
home.search_chat_input.send_keys(chat_name)
|
|
|
|
search_results = home.chat_name_text.find_elements()
|
|
|
|
if not search_results:
|
|
|
|
self.errors.append('No search results after searching by %s keyword' % chat_name)
|
|
|
|
for element in search_results:
|
|
|
|
if search_list[chat_name] not in element.text:
|
|
|
|
self.errors.append("'%s' is shown on the home screen after searching by '%s' keyword" %
|
|
|
|
(element.text, chat_name))
|
|
|
|
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2018-07-13 10:56:36 +00:00
|
|
|
|
2019-08-12 22:23:18 +00:00
|
|
|
@marks.testrail_id(6221)
|
|
|
|
@marks.medium
|
|
|
|
def test_app_on_background_by_back_button(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
|
|
|
home.click_system_back_button()
|
|
|
|
home.driver.press_keycode(187)
|
2020-03-17 17:27:10 +00:00
|
|
|
if self.driver.current_activity != '.NexusLauncherActivity':
|
|
|
|
self.driver.fail('App is not in background! Current activity is: %s' % self.driver.current_activity)
|
|
|
|
home.status_in_background_button.click()
|
2019-08-12 22:23:18 +00:00
|
|
|
if not home.plus_button.is_element_displayed():
|
|
|
|
self.driver.fail('Chats view was not opened')
|
|
|
|
|
2019-10-23 17:17:54 +00:00
|
|
|
@marks.testrail_id(6213)
|
|
|
|
@marks.medium
|
|
|
|
def test_unblocked_user_is_not_added_in_contacts(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
|
|
|
chat_view = home.add_contact(basic_user["public_key"], add_in_contacts=False)
|
2020-04-15 14:25:18 +00:00
|
|
|
|
|
|
|
chat_view.just_fyi('Block user not added as contact from chat view')
|
2019-10-23 17:17:54 +00:00
|
|
|
chat_view.chat_options.click()
|
|
|
|
chat_view.view_profile_button.click()
|
|
|
|
chat_view.block_contact()
|
2020-04-15 14:25:18 +00:00
|
|
|
|
|
|
|
chat_view.just_fyi('Unblock user not added as contact from chat view')
|
2019-10-23 17:17:54 +00:00
|
|
|
profile = sign_in.profile_button.click()
|
|
|
|
profile.contacts_button.click()
|
|
|
|
profile.blocked_users_button.click()
|
|
|
|
profile.element_by_text(basic_user["username"]).click()
|
|
|
|
chat_view.unblock_contact_button.click()
|
2020-04-15 14:25:18 +00:00
|
|
|
|
|
|
|
profile.just_fyi('Navigating to contact list and check that user is not in list')
|
|
|
|
profile.back_button.click(2)
|
|
|
|
if profile.element_by_text(basic_user["username"]).is_element_displayed():
|
2019-10-23 17:17:54 +00:00
|
|
|
self.driver.fail("Unblocked user not added previously in contact list added in contacts!")
|
|
|
|
|
2019-11-08 18:24:55 +00:00
|
|
|
@marks.testrail_id(5496)
|
|
|
|
@marks.low
|
|
|
|
def test_can_remove_quote_snippet_from_inputs(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
|
|
|
chat_view = home.add_contact(dummy_user["public_key"], add_in_contacts=False)
|
|
|
|
message_to_quote_1_to_1 = "This is a message to quote in 1-1"
|
|
|
|
message_to_quote_public = "This is a message to quote in public"
|
|
|
|
|
|
|
|
chat_view.just_fyi("Send and quote message in 1-1 chat")
|
|
|
|
chat_view.send_message(message_to_quote_1_to_1)
|
|
|
|
chat_view.quote_message(message_to_quote_1_to_1)
|
|
|
|
chat_view.get_back_to_home_view(times_to_click_on_back_btn=1)
|
|
|
|
|
|
|
|
chat_view.just_fyi("Send and quote message in public chat")
|
2020-04-10 10:25:46 +00:00
|
|
|
public_chat_name = home.get_random_chat_name()
|
2019-11-08 18:24:55 +00:00
|
|
|
home.join_public_chat(public_chat_name)
|
|
|
|
chat_view.send_message(message_to_quote_public)
|
|
|
|
chat_view.quote_message(message_to_quote_public)
|
|
|
|
|
|
|
|
chat_view.just_fyi("Clear quotes from both chats")
|
|
|
|
chat_view.cancel_reply_button.click()
|
|
|
|
|
2020-01-16 15:47:04 +00:00
|
|
|
if chat_view.cancel_reply_button.is_element_displayed():
|
2019-11-08 18:24:55 +00:00
|
|
|
self.errors.append("Message quote kept in public chat input after it's cancelation")
|
|
|
|
chat_view.get_back_to_home_view(times_to_click_on_back_btn=1)
|
2020-03-17 17:27:10 +00:00
|
|
|
home.get_chat(dummy_user["username"]).click()
|
2019-11-08 18:24:55 +00:00
|
|
|
chat_view.cancel_reply_button.click()
|
2020-01-16 15:47:04 +00:00
|
|
|
if chat_view.cancel_reply_button.is_element_displayed():
|
2019-11-08 18:24:55 +00:00
|
|
|
self.errors.append("Message quote kept in 1-1 chat input after it's cancelation")
|
|
|
|
|
|
|
|
self.errors.verify_no_errors()
|
|
|
|
|
2020-05-20 15:43:29 +00:00
|
|
|
@marks.testrail_id(5498)
|
|
|
|
@marks.medium
|
|
|
|
def test_share_user_profile_url_public_chat(self):
|
|
|
|
sign_in = SignInView(self.driver)
|
|
|
|
home = sign_in.create_user()
|
|
|
|
|
|
|
|
sign_in.just_fyi('Join to one-to-one chat and share link to other user profile via messenger')
|
|
|
|
chat_view = home.add_contact(dummy_user["public_key"])
|
|
|
|
chat_view.chat_options.click()
|
|
|
|
chat_view.view_profile_button.click_until_presence_of_element(chat_view.remove_from_contacts)
|
|
|
|
chat_view.profile_details.click()
|
|
|
|
chat_view.share_button.click()
|
|
|
|
chat_view.share_via_messenger()
|
|
|
|
if not chat_view.element_by_text_part('https://join.status.im/u/%s' % dummy_user["public_key"]).is_element_present():
|
|
|
|
self.errors.append("Can't share public key of contact")
|
|
|
|
for _ in range(2):
|
|
|
|
chat_view.click_system_back_button()
|
|
|
|
|
|
|
|
sign_in.just_fyi('Join to public chat and share link to it via messenger')
|
|
|
|
chat_view.get_back_to_home_view()
|
|
|
|
public_chat_name = 'pubchat'
|
|
|
|
public_chat = home.join_public_chat(public_chat_name)
|
|
|
|
public_chat.chat_options.click()
|
|
|
|
public_chat.share_chat_button.click()
|
|
|
|
public_chat.share_via_messenger()
|
|
|
|
if not chat_view.element_by_text_part('https://join.status.im/%s' % public_chat_name).is_element_present():
|
|
|
|
self.errors.append("Can't share link to public chat")
|
|
|
|
for _ in range(2):
|
|
|
|
chat_view.click_system_back_button()
|
|
|
|
chat_view.get_back_to_home_view()
|
|
|
|
|
|
|
|
sign_in.just_fyi('Open URL and share link to it via messenger')
|
|
|
|
daap_view = home.dapp_tab_button.click()
|
|
|
|
browsing_view = daap_view.open_url('dap.ps')
|
|
|
|
browsing_view.share_url_button.click()
|
|
|
|
browsing_view.share_via_messenger()
|
2020-06-16 14:24:51 +00:00
|
|
|
expeceted_text_1 = 'https://join.status.im/b/https://dap.ps'
|
|
|
|
expeceted_text_2 = 'https://join.status.im/b/http://dap.ps'
|
|
|
|
|
|
|
|
if not (chat_view.element_by_text_part(expeceted_text_1).is_element_present() or
|
|
|
|
chat_view.element_by_text_part(expeceted_text_2).is_element_present()):
|
|
|
|
self.errors.append("Can't share link to URL")
|
2020-05-20 15:43:29 +00:00
|
|
|
|
|
|
|
self.errors.verify_no_errors()
|
|
|
|
|
2019-03-20 09:42:23 +00:00
|
|
|
|
2018-07-13 10:56:36 +00:00
|
|
|
@marks.chat
|
|
|
|
class TestChatManagementMultipleDevice(MultipleDeviceTestCase):
|
|
|
|
|
2018-09-28 15:30:06 +00:00
|
|
|
@marks.testrail_id(5332)
|
|
|
|
@marks.critical
|
2019-12-26 11:56:59 +00:00
|
|
|
def test_add_and_remove_contact_from_public_chat(self):
|
2018-07-13 10:56:36 +00:00
|
|
|
self.create_drivers(2)
|
|
|
|
device_1, device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
|
|
|
home_1, home_2 = device_1.create_user(), device_2.create_user()
|
|
|
|
chat_name = 'testaddcontact'
|
2019-12-26 11:56:59 +00:00
|
|
|
|
|
|
|
device_1.just_fyi('join same public chat')
|
2018-07-13 10:56:36 +00:00
|
|
|
chat_1, chat_2 = home_1.join_public_chat(chat_name), home_2.join_public_chat(chat_name)
|
2018-09-24 16:22:55 +00:00
|
|
|
message = 'test message' + str(round(time.time()))
|
2018-07-13 10:56:36 +00:00
|
|
|
|
|
|
|
chat_2.chat_message_input.send_keys(message)
|
|
|
|
chat_2.send_message_button.click()
|
2018-08-15 12:51:52 +00:00
|
|
|
chat_2.driver.quit()
|
2018-07-13 10:56:36 +00:00
|
|
|
|
2020-04-15 14:25:18 +00:00
|
|
|
device_1.just_fyi('Tap on userpic and check redirect to user profile')
|
2018-07-13 10:56:36 +00:00
|
|
|
chat_element = chat_1.chat_element_by_text(message)
|
|
|
|
chat_element.find_element()
|
|
|
|
username = chat_element.username.text
|
|
|
|
chat_element.member_photo.click()
|
2018-12-20 14:50:02 +00:00
|
|
|
for element in [chat_1.contact_profile_picture,
|
2019-02-18 16:35:42 +00:00
|
|
|
chat_1.element_by_text(username, 'text'),
|
2018-12-20 14:50:02 +00:00
|
|
|
chat_1.add_to_contacts,
|
|
|
|
chat_1.profile_send_message,
|
2019-02-18 16:35:42 +00:00
|
|
|
chat_1.profile_address_text]:
|
2018-12-20 14:50:02 +00:00
|
|
|
if not element.scroll_to_element():
|
|
|
|
self.errors.append('%s is not visible' % element.name)
|
2019-12-26 11:56:59 +00:00
|
|
|
|
2020-04-15 14:25:18 +00:00
|
|
|
device_1.just_fyi('Add user to contacts, check contact list in Profile')
|
2018-07-13 10:56:36 +00:00
|
|
|
chat_1.add_to_contacts.click()
|
2019-09-19 09:25:16 +00:00
|
|
|
if not chat_1.remove_from_contacts.is_element_displayed():
|
|
|
|
self.errors.append("'Add to contacts' is not changed to 'Remove from contacts'")
|
2020-04-15 14:25:18 +00:00
|
|
|
chat_1.get_back_to_home_view()
|
2019-12-26 11:56:59 +00:00
|
|
|
profile_1 = chat_1.profile_button.click()
|
|
|
|
userprofile = profile_1.open_contact_from_profile(username)
|
|
|
|
if not userprofile.remove_from_contacts.is_element_displayed():
|
|
|
|
self.errors.append("'Add to contacts' is not changed to 'Remove from contacts'")
|
2020-04-15 14:25:18 +00:00
|
|
|
profile_1.get_back_to_home_view()
|
2018-07-13 10:56:36 +00:00
|
|
|
|
2020-04-15 14:25:18 +00:00
|
|
|
device_1.just_fyi('Check that user is added to contacts below "Start new chat" and you redirected to 1-1 on tap')
|
2019-04-05 13:05:23 +00:00
|
|
|
home_1.plus_button.click()
|
2019-12-26 11:56:59 +00:00
|
|
|
home_1.start_new_chat_button.click()
|
|
|
|
if not home_1.element_by_text(username).is_element_displayed():
|
|
|
|
home_1.driver.fail('List of contacts below "Start new chat" does not contain added user')
|
|
|
|
home_1.element_by_text(username).click()
|
|
|
|
if not chat_1.chat_message_input.is_element_displayed():
|
|
|
|
home_1.driver.fail('No redirect to 1-1 chat if tap on Contact below "Start new chat"')
|
|
|
|
if chat_1.add_to_contacts.is_element_displayed():
|
|
|
|
self.errors.append('"Add to contacts" button is shown in 1-1 after adding user to contacts from profile')
|
|
|
|
|
2020-04-15 14:25:18 +00:00
|
|
|
device_1.just_fyi('Remove user from contacts')
|
2019-12-26 11:56:59 +00:00
|
|
|
chat_1.profile_button.click()
|
2020-04-15 14:25:18 +00:00
|
|
|
userprofile = profile_1.open_contact_from_profile(username)
|
2019-12-26 11:56:59 +00:00
|
|
|
userprofile.remove_from_contacts.click()
|
|
|
|
if userprofile.remove_from_contacts.is_element_displayed():
|
|
|
|
self.errors.append("'Remove from contacts' is not changed to 'Add to contacts'")
|
2020-04-15 14:25:18 +00:00
|
|
|
|
|
|
|
device_1.just_fyi('Check that user is removed from contact list in profile')
|
2019-12-26 11:56:59 +00:00
|
|
|
userprofile.back_button.click()
|
|
|
|
if profile_1.element_by_text(username).is_element_displayed():
|
2020-03-19 16:34:20 +00:00
|
|
|
self.errors.append('List of contacts in profile contains removed user')
|
2019-12-26 11:56:59 +00:00
|
|
|
profile_1.home_button.click()
|
|
|
|
if not chat_1.add_to_contacts.is_element_displayed():
|
|
|
|
self.errors.append('"Add to contacts" button is not shown in 1-1 after removing user from contacts')
|
|
|
|
home_1.get_back_to_home_view()
|
|
|
|
home_1.plus_button.click()
|
|
|
|
home_1.start_new_chat_button.click()
|
2020-03-19 16:34:20 +00:00
|
|
|
if home_1.get_username_below_start_new_chat_button(username).is_element_displayed():
|
|
|
|
self.errors.append('List of contacts below "Start new chat" contains removed user')
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2019-04-19 15:29:35 +00:00
|
|
|
|
|
|
|
@marks.testrail_id(5786)
|
|
|
|
@marks.critical
|
|
|
|
def test_block_user_from_public_chat(self):
|
|
|
|
self.create_drivers(2)
|
|
|
|
device_1, device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
2019-08-18 23:31:42 +00:00
|
|
|
message_before_block_1 = "Before block from %s" % device_1.driver.number
|
|
|
|
message_before_block_2 = "Before block from %s" % device_2.driver.number
|
2019-04-19 15:29:35 +00:00
|
|
|
message_after_block_2 = "After block from %s" % device_2.driver.number
|
2019-10-04 13:50:44 +00:00
|
|
|
home_1, home_2 = device_1.create_user(), device_2.create_user()
|
2019-04-19 15:29:35 +00:00
|
|
|
|
2019-10-04 13:50:44 +00:00
|
|
|
device_1.just_fyi('both devices joining the same public chat and send messages')
|
2020-04-10 10:25:46 +00:00
|
|
|
chat_name = device_1.get_random_chat_name()
|
2019-04-19 15:29:35 +00:00
|
|
|
for home in home_1, home_2:
|
|
|
|
home.join_public_chat(chat_name)
|
|
|
|
chat_public_1, chat_public_2 = home_1.get_chat_view(), home_2.get_chat_view()
|
|
|
|
for chat in chat_public_1, chat_public_2:
|
|
|
|
chat.chat_message_input.send_keys("Before block from %s" % chat.driver.number)
|
|
|
|
chat.send_message_button.click()
|
|
|
|
|
2019-10-04 13:50:44 +00:00
|
|
|
device_1.just_fyi('block user')
|
2019-04-19 15:29:35 +00:00
|
|
|
chat_element = chat_public_1.chat_element_by_text(message_before_block_2)
|
|
|
|
chat_element.find_element()
|
|
|
|
chat_element.member_photo.click()
|
2019-10-23 17:17:54 +00:00
|
|
|
chat_public_1.block_contact()
|
2019-04-19 15:29:35 +00:00
|
|
|
|
2019-10-04 13:50:44 +00:00
|
|
|
device_1.just_fyi('messages from blocked user are hidden in public chat and close app')
|
2019-04-19 15:29:35 +00:00
|
|
|
if chat_public_1.chat_element_by_text(message_before_block_2).is_element_displayed():
|
|
|
|
self.errors.append(
|
2019-08-18 23:31:42 +00:00
|
|
|
"Messages from blocked user %s are not cleared in public chat '%s'" % (
|
|
|
|
device_2.driver.number, chat_name))
|
2019-04-19 15:29:35 +00:00
|
|
|
self.drivers[0].close_app()
|
|
|
|
|
2019-10-04 13:50:44 +00:00
|
|
|
device_2.just_fyi('send message to public chat while device 1 is offline')
|
2019-04-19 15:29:35 +00:00
|
|
|
chat_public_2.chat_message_input.send_keys(message_after_block_2)
|
|
|
|
chat_public_2.send_message_button.click()
|
|
|
|
|
2019-10-04 13:50:44 +00:00
|
|
|
device_1.just_fyi('check that new messages from blocked user are not delivered')
|
2019-04-19 15:29:35 +00:00
|
|
|
self.drivers[0].launch_app()
|
|
|
|
device_1.accept_agreements()
|
|
|
|
device_1.sign_in()
|
|
|
|
home_1.join_public_chat(chat_name)
|
|
|
|
for message in message_before_block_2, message_after_block_2:
|
|
|
|
if chat_public_1.chat_element_by_text(message).is_element_displayed():
|
|
|
|
self.errors.append(
|
|
|
|
"'%s' from blocked user %s are shown in public chat" % (message, device_2.driver.number))
|
|
|
|
|
|
|
|
@marks.testrail_id(5763)
|
2019-11-08 18:24:55 +00:00
|
|
|
@marks.medium
|
2020-07-29 15:54:45 +00:00
|
|
|
def test_block_user_from_one_to_one_header_check_push_notification_service(self):
|
2019-04-19 15:29:35 +00:00
|
|
|
self.create_drivers(2)
|
|
|
|
device_1, device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
2019-08-18 23:31:42 +00:00
|
|
|
message_before_block_1 = "Before block from %s" % device_1.driver.number
|
|
|
|
message_before_block_2 = "Before block from %s" % device_2.driver.number
|
2019-04-19 15:29:35 +00:00
|
|
|
message_after_block_2 = "After block from %s" % device_2.driver.number
|
2020-07-29 15:54:45 +00:00
|
|
|
home_1, home_2 = device_1.create_user(enable_notifications=True), device_2.create_user()
|
2019-06-28 14:36:24 +00:00
|
|
|
profile_1 = home_1.profile_button.click()
|
2020-04-10 10:25:46 +00:00
|
|
|
device_2_public_key = home_2.get_public_key_and_username()
|
2019-10-04 13:50:44 +00:00
|
|
|
home_2.get_back_to_home_view()
|
2019-06-28 14:36:24 +00:00
|
|
|
default_username_1 = profile_1.default_username_text.text
|
2019-08-18 23:31:42 +00:00
|
|
|
profile_1.get_back_to_home_view()
|
2019-06-28 14:36:24 +00:00
|
|
|
|
2019-10-04 13:50:44 +00:00
|
|
|
device_1.just_fyi('both devices joining the same public chat and send messages')
|
2020-04-10 10:25:46 +00:00
|
|
|
chat_name = device_1.get_random_chat_name()
|
2019-04-19 15:29:35 +00:00
|
|
|
for home in home_1, home_2:
|
|
|
|
home.join_public_chat(chat_name)
|
|
|
|
chat_public_1, chat_public_2 = home_1.get_chat_view(), home_2.get_chat_view()
|
|
|
|
for chat in chat_public_1, chat_public_2:
|
|
|
|
chat.chat_message_input.send_keys("Before block from %s" % chat.driver.number)
|
|
|
|
chat.send_message_button.click()
|
|
|
|
|
2019-08-18 23:31:42 +00:00
|
|
|
chat_public_1.get_back_to_home_view()
|
|
|
|
chat_public_2.get_back_to_home_view()
|
2019-04-19 15:29:35 +00:00
|
|
|
|
2019-10-04 13:50:44 +00:00
|
|
|
device_1.just_fyi('both devices joining 1-1 chat and exchanging several messages')
|
|
|
|
chat_1 = home_1.add_contact(device_2_public_key)
|
2019-04-19 15:29:35 +00:00
|
|
|
for _ in range(2):
|
|
|
|
chat_1.chat_message_input.send_keys(message_before_block_1)
|
|
|
|
chat_1.send_message_button.click()
|
|
|
|
|
2020-03-17 17:27:10 +00:00
|
|
|
chat_2 = home_2.get_chat(default_username_1).click()
|
2019-04-19 15:29:35 +00:00
|
|
|
for _ in range(2):
|
|
|
|
chat_2.chat_message_input.send_keys(message_before_block_2)
|
|
|
|
chat_2.send_message_button.click()
|
|
|
|
|
2019-10-04 13:50:44 +00:00
|
|
|
device_1.just_fyi('block user')
|
2019-04-19 15:29:35 +00:00
|
|
|
chat_1.chat_options.click()
|
|
|
|
chat_1.view_profile_button.click()
|
2019-10-23 17:17:54 +00:00
|
|
|
chat_1.block_contact()
|
2019-04-19 15:29:35 +00:00
|
|
|
|
2019-10-04 13:50:44 +00:00
|
|
|
device_1.just_fyi('no 1-1, messages from blocked user are hidden in public chat')
|
2020-03-17 17:27:10 +00:00
|
|
|
if home_1.get_chat(basic_user['username']).is_element_displayed():
|
2019-08-18 23:31:42 +00:00
|
|
|
home_1.driver.fail("Chat with blocked user '%s' is not deleted" % device_2.driver.number)
|
2020-07-29 15:54:45 +00:00
|
|
|
public_chat_after_block_1 = home_1.join_public_chat(chat_name)
|
|
|
|
if public_chat_after_block_1.chat_element_by_text(message_before_block_2).is_element_displayed():
|
2019-04-19 15:29:35 +00:00
|
|
|
self.errors.append(
|
|
|
|
"Messages from blocked user '%s' are not cleared in public chat '%s'" % (device_2.driver.number,
|
2019-08-18 23:31:42 +00:00
|
|
|
chat_name))
|
2020-07-29 15:54:45 +00:00
|
|
|
device_1.click_system_home_button()
|
2019-04-19 15:29:35 +00:00
|
|
|
|
2019-10-04 13:50:44 +00:00
|
|
|
device_2.just_fyi('send messages to 1-1 and public chat')
|
2019-04-19 15:29:35 +00:00
|
|
|
for _ in range(2):
|
|
|
|
chat_2.chat_message_input.send_keys(message_after_block_2)
|
|
|
|
chat_2.send_message_button.click()
|
2019-08-18 23:31:42 +00:00
|
|
|
chat_2.get_back_to_home_view()
|
2019-04-19 15:29:35 +00:00
|
|
|
home_2.join_public_chat(chat_name)
|
|
|
|
chat_public_2 = home_2.get_chat_view()
|
|
|
|
|
|
|
|
for _ in range(2):
|
|
|
|
chat_public_2.chat_message_input.send_keys(message_after_block_2)
|
|
|
|
chat_public_2.send_message_button.click()
|
|
|
|
|
2020-07-29 15:54:45 +00:00
|
|
|
device_1.just_fyi("check that new messages and push notifications don't arrive from blocked user")
|
|
|
|
device_1.open_notification_bar()
|
|
|
|
if device_1.element_by_text_part(message_after_block_2).is_element_displayed():
|
|
|
|
self.errors.append("Push notification is received from blocked user")
|
|
|
|
device_1.element_by_text_part("Background notification service").click()
|
|
|
|
|
|
|
|
if public_chat_after_block_1.chat_element_by_text(message_after_block_2).is_element_displayed():
|
2019-04-19 15:29:35 +00:00
|
|
|
self.errors.append("Message from blocked user '%s' is received" % device_2.driver.number)
|
2020-07-29 15:54:45 +00:00
|
|
|
public_chat_after_block_1.get_back_to_home_view()
|
2020-03-17 17:27:10 +00:00
|
|
|
if home_1.get_chat(basic_user['username']).is_element_displayed():
|
2019-08-18 23:31:42 +00:00
|
|
|
device_2.driver.fail("Chat with blocked user is reappeared after receiving new messages")
|
2020-07-29 15:54:45 +00:00
|
|
|
device_1.open_notification_bar()
|
|
|
|
home_1.stop_status_service_button.click()
|
2019-04-19 15:29:35 +00:00
|
|
|
|
2019-10-04 13:50:44 +00:00
|
|
|
device_2.just_fyi("send messages when device 1 is offline")
|
2019-04-19 15:29:35 +00:00
|
|
|
for _ in range(2):
|
|
|
|
chat_public_2.chat_message_input.send_keys(message_after_block_2)
|
|
|
|
chat_public_2.send_message_button.click()
|
2019-08-18 23:31:42 +00:00
|
|
|
chat_public_2.get_back_to_home_view()
|
2020-03-17 17:27:10 +00:00
|
|
|
home_2.get_chat(default_username_1).click()
|
2019-04-19 15:29:35 +00:00
|
|
|
for _ in range(2):
|
|
|
|
chat_2.chat_message_input.send_keys(message_after_block_2)
|
|
|
|
chat_2.send_message_button.click()
|
|
|
|
|
2019-10-04 13:50:44 +00:00
|
|
|
device_1.just_fyi("reopen app and check that messages from blocked user are not fetched")
|
2020-07-29 15:54:45 +00:00
|
|
|
device_1.click_system_home_button()
|
2019-04-19 15:29:35 +00:00
|
|
|
self.drivers[0].launch_app()
|
|
|
|
device_1.accept_agreements()
|
|
|
|
device_1.sign_in()
|
2020-03-17 17:27:10 +00:00
|
|
|
if home_1.get_chat(basic_user['username']).is_element_displayed():
|
2019-08-18 23:31:42 +00:00
|
|
|
self.errors.append("Chat with blocked user is reappeared after fetching new messages from offline")
|
2019-04-19 15:29:35 +00:00
|
|
|
home_1.join_public_chat(chat_name)
|
2019-08-18 23:31:42 +00:00
|
|
|
home_1.get_chat_view()
|
2019-04-19 15:29:35 +00:00
|
|
|
if chat_public_1.chat_element_by_text(message_after_block_2).is_element_displayed():
|
2020-07-29 15:54:45 +00:00
|
|
|
self.errors.append("Message from blocked user '%s' is received after fetching new messages from offline"
|
2019-08-18 23:31:42 +00:00
|
|
|
% device_2.driver.number)
|
2019-04-19 15:29:35 +00:00
|
|
|
|
2020-07-29 15:54:45 +00:00
|
|
|
device_1.just_fyi("check that PNs are still enabled in profile after closing 'background notification centre' "
|
|
|
|
"message and relogin")
|
2020-08-11 16:10:53 +00:00
|
|
|
device_1.open_notification_bar()
|
|
|
|
if not device_1.element_by_text_part("Background notification service").is_element_displayed():
|
|
|
|
self.errors.append("Background notification service is not started after relogin")
|
2020-07-29 15:54:45 +00:00
|
|
|
|
2019-10-29 08:25:57 +00:00
|
|
|
self.errors.verify_no_errors()
|
2019-12-27 15:26:34 +00:00
|
|
|
|
|
|
|
@marks.testrail_id(6233)
|
|
|
|
@marks.medium
|
|
|
|
def test_reply_to_message_in_chats(self):
|
|
|
|
self.create_drivers(2)
|
|
|
|
device_1, device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
|
|
|
message_from_sender = "Message sender"
|
|
|
|
message_from_receiver = "Message receiver"
|
|
|
|
home_1, home_2 = device_1.create_user(), device_2.create_user()
|
|
|
|
|
|
|
|
device_1.just_fyi('Both devices join to 1-1 chat')
|
2020-04-10 10:25:46 +00:00
|
|
|
device_2_public_key = home_2.get_public_key_and_username()
|
2019-12-27 15:26:34 +00:00
|
|
|
device_1_profile = home_1.profile_button.click()
|
|
|
|
device_1_username = device_1_profile.default_username_text.text
|
|
|
|
home_1.home_button.click()
|
|
|
|
|
|
|
|
device_1.just_fyi("Sender adds receiver and quotes own message and sends")
|
|
|
|
device_1_chat = home_1.add_contact(device_2_public_key)
|
|
|
|
device_1_chat.send_message(message_from_sender)
|
|
|
|
device_1_chat.quote_message(message_from_sender)
|
2020-01-16 15:47:04 +00:00
|
|
|
if device_1_chat.quote_username_in_message_input.text != "↪ You":
|
2019-12-27 15:26:34 +00:00
|
|
|
self.errors.append("'You' is not displayed in reply quote snippet replying to own message")
|
|
|
|
reply_to_message_from_sender = message_from_sender + " reply"
|
|
|
|
device_1_chat.send_message(reply_to_message_from_sender)
|
|
|
|
|
|
|
|
device_1.just_fyi("Receiver verifies received reply...")
|
|
|
|
home_2.home_button.click()
|
2020-03-17 17:27:10 +00:00
|
|
|
device_2_chat_item = home_2.get_chat(device_1_username)
|
2019-12-27 15:26:34 +00:00
|
|
|
device_2_chat_item.wait_for_visibility_of_element(20)
|
|
|
|
device_2_chat = device_2_chat_item.click()
|
|
|
|
if device_2_chat.chat_element_by_text(reply_to_message_from_sender).replied_message_text != message_from_sender:
|
|
|
|
self.errors.append("No reply received in 1-1 chat")
|
|
|
|
|
|
|
|
device_1_chat.back_button.click()
|
|
|
|
device_2_chat.back_button.click()
|
|
|
|
|
|
|
|
device_1.just_fyi('both devices joining the same public chat and send messages')
|
2020-04-10 10:25:46 +00:00
|
|
|
chat_name = device_1.get_random_chat_name()
|
2019-12-27 15:26:34 +00:00
|
|
|
for home in home_1, home_2:
|
|
|
|
home.join_public_chat(chat_name)
|
|
|
|
chat_public_1, chat_public_2 = home_1.get_chat_view(), home_2.get_chat_view()
|
|
|
|
chat_public_1.send_message(message_from_sender)
|
|
|
|
chat_public_2.quote_message(message_from_sender)
|
2020-01-16 15:47:04 +00:00
|
|
|
if chat_public_2.quote_username_in_message_input.text != ("↪ " + device_1_username):
|
2019-12-27 15:26:34 +00:00
|
|
|
self.errors.append(" %s is not displayed in reply quote snippet replying to own message " % device_1_username)
|
|
|
|
|
|
|
|
device_1.just_fyi('Message receiver verifies reply is present in received message')
|
|
|
|
chat_public_2.send_message(message_from_receiver)
|
|
|
|
public_replied_message = chat_public_1.chat_element_by_text(message_from_receiver)
|
|
|
|
if public_replied_message.replied_message_text != message_from_sender:
|
|
|
|
self.errors.append("Reply is not present in message received in public chat")
|
|
|
|
|
|
|
|
self.errors.verify_no_errors()
|
2020-05-08 13:36:05 +00:00
|
|
|
|
2020-08-14 16:05:41 +00:00
|
|
|
@marks.testrail_id(6315)
|
|
|
|
@marks.critical
|
|
|
|
def test_reactions_to_message_in_chats(self):
|
|
|
|
self.create_drivers(2)
|
|
|
|
device_1, device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
|
|
|
message_from_sender = "Message sender"
|
|
|
|
home_1, home_2 = device_1.create_user(), device_2.create_user()
|
|
|
|
|
|
|
|
device_1.just_fyi('Both devices join to 1-1 chat')
|
|
|
|
device_2_public_key = home_2.get_public_key_and_username()
|
|
|
|
device_1_profile = home_1.profile_button.click()
|
|
|
|
device_1_username = device_1_profile.default_username_text.text
|
|
|
|
home_1.home_button.click()
|
|
|
|
|
|
|
|
device_1.just_fyi("Sender start 1-1 chat, set emoji and check counter")
|
|
|
|
device_1_chat = home_1.add_contact(device_2_public_key)
|
|
|
|
device_1_chat.send_message(message_from_sender)
|
|
|
|
device_1_chat.set_reaction(message_from_sender)
|
|
|
|
message_sender = device_1_chat.chat_element_by_text(message_from_sender)
|
|
|
|
if message_sender.emojis_below_message() != 1:
|
|
|
|
self.errors.append("Counter of reaction is not updated on your own message!")
|
|
|
|
|
|
|
|
device_2.just_fyi("Receiver set own emoji and verifies counter on received message in 1-1 chat")
|
|
|
|
home_2.home_button.click()
|
|
|
|
device_2_chat_item = home_2.get_chat(device_1_username)
|
|
|
|
device_2_chat_item.wait_for_visibility_of_element(20)
|
|
|
|
device_2_chat = device_2_chat_item.click()
|
|
|
|
message_receiver = device_2_chat.chat_element_by_text(message_from_sender)
|
|
|
|
if message_receiver.emojis_below_message(own=False) != 1:
|
|
|
|
self.errors.append("Counter of reaction is not updated on received message!")
|
|
|
|
device_2_chat.set_reaction(message_from_sender)
|
|
|
|
for counter in message_sender.emojis_below_message(), message_receiver.emojis_below_message():
|
|
|
|
if counter != 2:
|
|
|
|
self.errors.append('Counter is not updated after setting emoji from receiver!')
|
|
|
|
|
|
|
|
device_2.just_fyi("Receiver pick the same emoji and verify that counter will decrease for both users")
|
|
|
|
device_2_chat.set_reaction(message_from_sender)
|
|
|
|
for counter in message_sender.emojis_below_message(), message_receiver.emojis_below_message(own=False):
|
|
|
|
if counter != 1:
|
|
|
|
self.errors.append('Counter is not decreased after re-tapping emoji from receiver!')
|
|
|
|
[chat.get_back_to_home_view() for chat in (device_2_chat, device_1_chat)]
|
|
|
|
|
|
|
|
device_1.just_fyi('Both devices joining the same public chat, send messages and check counters')
|
|
|
|
chat_name = device_1.get_random_chat_name()
|
|
|
|
[home.join_public_chat(chat_name) for home in (home_1, home_2)]
|
|
|
|
chat_public_1, chat_public_2 = home_1.get_chat_view(), home_2.get_chat_view()
|
|
|
|
chat_public_1.send_message(message_from_sender)
|
|
|
|
|
|
|
|
device_1_chat.just_fyi('Set several emojis as sender and receiver and check counters in public chat')
|
|
|
|
message_sender = chat_public_1.chat_element_by_text(message_from_sender)
|
|
|
|
emojis_from_sender = ['thumbs-down', 'love', 'laugh']
|
|
|
|
[chat_public_1.set_reaction(message_from_sender, emoji) for emoji in emojis_from_sender]
|
|
|
|
emojis_from_receiver = ['angry', 'sad']
|
|
|
|
[chat_public_2.set_reaction(message_from_sender, emoji) for emoji in emojis_from_receiver]
|
|
|
|
message_receiver=chat_public_2.chat_element_by_text(message_from_sender)
|
|
|
|
for emoji in emojis_from_sender:
|
|
|
|
if message_sender.emojis_below_message(emoji) != 1:
|
|
|
|
self.errors.append('Counter is not updated on own message after tapping %s for sender in pub chat' % emoji)
|
|
|
|
if message_receiver.emojis_below_message(emoji, own=False) != 1:
|
|
|
|
self.errors.append('Counter is not updated on received message after tapping %s for receiver in pub chat' % emoji)
|
|
|
|
for emoji in emojis_from_receiver:
|
|
|
|
if message_sender.emojis_below_message(emoji, own=False) != 1:
|
|
|
|
self.errors.append('Counter is not updated on own message after tapping %s for receiver in pub chat' % emoji)
|
|
|
|
if message_receiver.emojis_below_message(emoji) != 1:
|
|
|
|
self.errors.append('Counter is not updated on received message after tapping %s for sender in pub chat' % emoji)
|
|
|
|
|
|
|
|
device_1_chat.just_fyi('Unset emoji and check that it is not shown anymore')
|
|
|
|
chat_public_1.set_reaction(message_from_sender, 'love')
|
|
|
|
if message_sender.emojis_below_message('love') != 0:
|
|
|
|
self.errors.append('Emoji is still shown on message after re-tapping last reaction')
|
|
|
|
|
|
|
|
self.errors.verify_no_errors()
|
|
|
|
|
2020-05-08 13:36:05 +00:00
|
|
|
@marks.testrail_id(6267)
|
|
|
|
@marks.medium
|
|
|
|
def test_open_user_profile_long_press_on_message(self):
|
|
|
|
self.create_drivers(2)
|
|
|
|
device_1, device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
|
|
|
|
message_from_sender = "Message sender"
|
|
|
|
message_from_receiver = "Message receiver"
|
|
|
|
home_1, home_2 = device_1.create_user(), device_2.create_user()
|
|
|
|
|
|
|
|
device_1.just_fyi('Both devices join to 1-1 chat')
|
|
|
|
device_2_public_key = home_2.get_public_key_and_username()
|
|
|
|
device_1_profile = home_1.profile_button.click()
|
|
|
|
device_1_username = device_1_profile.default_username_text.text
|
|
|
|
home_1.home_button.click()
|
|
|
|
|
|
|
|
device_1.just_fyi("1-1 chat: sender adds receiver and send a message")
|
|
|
|
device_1_chat = home_1.add_contact(device_2_public_key)
|
|
|
|
device_1_chat.send_message(message_from_sender)
|
|
|
|
device_1_chat.chat_element_by_text(message_from_sender).long_press_element()
|
2020-07-30 14:35:34 +00:00
|
|
|
if device_1_chat.view_profile_by_avatar_button.is_element_displayed():
|
|
|
|
self.errors.append('Member photo is shown on long tap on sent message from 1-1 chat')
|
|
|
|
device_1_chat.click_system_back_button(2)
|
2020-05-08 13:36:05 +00:00
|
|
|
|
|
|
|
device_2.just_fyi("1-1 chat: receiver verifies that can open sender profile on long tap on message")
|
|
|
|
home_2.home_button.click()
|
|
|
|
device_2_chat_item = home_2.get_chat(device_1_username)
|
|
|
|
device_2_chat_item.wait_for_visibility_of_element(20)
|
|
|
|
device_2_chat = device_2_chat_item.click()
|
2020-07-30 14:35:34 +00:00
|
|
|
device_2_chat.chat_element_by_text(message_from_sender).long_press_element()
|
|
|
|
if device_2_chat.view_profile_by_avatar_button.is_element_displayed():
|
|
|
|
self.errors.append('1-1 chat: another user profile is opened on long tap on received message')
|
|
|
|
device_2_chat.click_system_back_button(2)
|
2020-05-08 13:36:05 +00:00
|
|
|
|
|
|
|
device_1.just_fyi('Public chat: send message and verify that user profile can be opened on long press on message')
|
|
|
|
chat_name = device_1.get_random_chat_name()
|
|
|
|
for home in home_1, home_2:
|
|
|
|
home.join_public_chat(chat_name)
|
|
|
|
chat_public_1, chat_public_2 = home_1.get_chat_view(), home_2.get_chat_view()
|
|
|
|
chat_public_2.send_message(message_from_receiver)
|
|
|
|
chat_public_2.chat_element_by_text(message_from_receiver).long_press_element()
|
2020-07-30 14:35:34 +00:00
|
|
|
if chat_public_2.view_profile_by_avatar_button.is_element_displayed():
|
2020-05-08 13:36:05 +00:00
|
|
|
self.errors.append('Public chat: "view profile" is shown on long tap on sent message')
|
|
|
|
chat_public_1.view_profile_long_press(message_from_receiver)
|
|
|
|
if not chat_public_1.remove_from_contacts.is_element_displayed():
|
|
|
|
self.errors.append('Public chat: another user profile is not opened on long tap on received message')
|
|
|
|
|
|
|
|
self.errors.verify_no_errors()
|