status-react/test/appium/tests/medium/test_activity_center.py

344 lines
20 KiB
Python
Raw Normal View History

2022-05-16 09:07:23 +00:00
import pytest
from selenium.common.exceptions import TimeoutException
2022-05-16 09:07:23 +00:00
from tests import marks, run_in_parallel
2022-05-16 09:07:23 +00:00
from tests.base_test_case import MultipleSharedDeviceTestCase, create_shared_drivers
from views.sign_in_view import SignInView
2022-12-29 13:49:00 +00:00
2023-03-13 13:29:18 +00:00
@pytest.mark.xdist_group(name="new_two_2")
2022-12-29 13:49:00 +00:00
@marks.new_ui_critical
2023-03-09 11:06:03 +00:00
class TestActivityCenterContactRequestMultipleDevicePR(MultipleSharedDeviceTestCase):
2022-12-29 13:49:00 +00:00
def prepare_devices(self):
self.drivers, self.loop = create_shared_drivers(2)
self.device_1, self.device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
self.username_1, self.username_2 = 'sender', 'receiver'
self.loop.run_until_complete(run_in_parallel(((self.device_1.create_user, {'enable_notifications': True,
'username': self.username_1}),
(self.device_2.create_user, {'username': self.username_2}))))
self.homes = self.home_1, self.home_2 = self.device_1.get_home_view(), self.device_2.get_home_view()
2022-12-29 13:49:00 +00:00
self.profile_1, self.profile_2 = self.home_1.get_profile_view(), self.home_2.get_profile_view()
self.public_key_1, self.public_key_2 = (home.get_public_key() for home in self.homes)
[home.click_system_back_button_until_element_is_shown() for home in self.homes]
[home.chats_tab.click() for home in self.homes]
2022-12-29 13:49:00 +00:00
2023-03-22 17:09:36 +00:00
@marks.testrail_id(702850)
def test_activity_center_contact_request_decline(self):
2022-12-29 13:49:00 +00:00
self.device_1.put_app_to_background()
2023-03-22 17:09:36 +00:00
self.device_2.just_fyi('Device2 sends a contact request to Device1 via Paste button and check user details')
self.home_2.driver.set_clipboard_text(self.public_key_1)
self.home_2.new_chat_button.click_until_presence_of_element(self.home_2.add_a_contact_chat_bottom_sheet_button)
self.home_2.add_a_contact_chat_bottom_sheet_button.click()
self.home_2.element_by_translation_id("paste").click()
self.home_2.element_by_translation_id("user-found").wait_for_visibility_of_element(10)
2023-05-12 12:24:13 +00:00
# TODO: Blocked by 15500
# if not self.home_2.element_by_text(self.username_1).is_element_displayed():
# self.errors.append("Username is not shown on 'Add contact' page after entering valid public key")
2023-03-22 17:09:36 +00:00
chat = self.home_2.get_chat_view()
chat.view_profile_new_contact_button.click_until_presence_of_element(chat.profile_block_contact_button)
chat.profile_add_to_contacts_button.click()
self.home_2.click_system_back_button_until_element_is_shown()
self.device_1.just_fyi("Device 1: check there is no PN when receiving new message to activity centre")
2022-12-29 13:49:00 +00:00
self.device_1.open_notification_bar()
if self.home_1.element_by_text_part("Please add me to your contacts").is_element_displayed():
self.errors.append("Push notification with text was received for new message in activity centre")
self.device_1.click_system_back_button(2)
self.device_1.just_fyi('Device1 verifies pending contact request')
self.home_1.contacts_tab.click()
for indicator in (self.home_1.notifications_unread_badge, self.home_1.contact_new_badge):
if not indicator.is_element_displayed():
2023-06-19 11:13:23 +00:00
self.errors.append(
"Unread indicator on contacts tab or on activity center is not shown for incoming CR!")
2022-12-29 13:49:00 +00:00
if self.home_1.pending_contact_request_text.text != '1':
2023-03-01 11:33:58 +00:00
self.errors.append("The amount of contact requests is not shown for incoming CR!")
2022-12-29 13:49:00 +00:00
self.device_1.just_fyi('Device1 declines pending contact request')
self.home_1.handle_contact_request(username=self.username_2, action='decline')
2023-06-19 11:13:23 +00:00
for indicator in (self.home_1.notifications_unread_badge, self.home_1.contact_new_badge,
self.home_1.pending_contact_request_text):
2022-12-29 13:49:00 +00:00
if indicator.is_element_displayed():
2023-06-19 11:13:23 +00:00
self.errors.append(
"Unread indicator on contacts tab or on activity center is shown after declining contact request!")
2022-12-29 13:49:00 +00:00
2023-03-22 17:09:36 +00:00
self.device_1.just_fyi("Check that it is still pending contact after declining on sender device")
self.home_2.jump_to_messages_home()
self.home_2.open_activity_center_button.click()
self.home_2.activity_unread_filter_button.click()
activity_center_element = self.home_2.get_element_from_activity_center_view(self.username_1)
2023-06-19 11:13:23 +00:00
message_element = activity_center_element.message_body
message_element.wait_for_element(30)
message_text = message_element.text
if message_text != self.home_2.get_translation_by_key("add-me-to-your-contacts"):
self.errors.append(
"Pending contact request is not shown on unread notification element on Activity center!,"
" actual is '%s'" % message_text)
self.home_2.close_activity_centre.click()
2023-03-22 17:09:36 +00:00
2022-12-29 13:49:00 +00:00
self.errors.verify_no_errors()
@marks.testrail_id(702851)
2023-03-20 12:58:09 +00:00
def test_activity_center_contact_request_accept_swipe_mark_all_as_read(self):
2023-02-24 19:05:30 +00:00
self.device_2.just_fyi('Device2 re-sends a contact request to Device1')
2023-06-19 11:13:23 +00:00
self.home_2.click_system_back_button_until_element_is_shown()
2023-03-01 11:33:58 +00:00
self.home_2.add_contact(self.public_key_1, remove_from_contacts=True)
2022-12-29 13:49:00 +00:00
2023-03-20 12:58:09 +00:00
self.device_1.just_fyi('Device1 accepts pending contact request by swiping')
2022-12-29 13:49:00 +00:00
self.home_1.chats_tab.click()
2023-03-20 12:58:09 +00:00
self.home_1.notifications_unread_badge.wait_for_visibility_of_element(30)
self.home_1.open_activity_center_button.click()
self.home_1.just_fyi("Mark all as read")
cr_element = self.home_1.get_element_from_activity_center_view(self.username_2)
2023-03-20 12:58:09 +00:00
self.home_1.more_options_activity_button.click()
self.home_1.mark_all_read_activity_button.click()
if cr_element.is_element_displayed():
self.errors.append("Contact request is still shown in activity centre after marking all messages as read!")
self.home_1.just_fyi("Check that can accept contact request from read notifications")
self.home_1.activity_unread_filter_button.click()
cr_element.swipe_right_on_element()
self.home_1.activity_notification_swipe_button.click()
self.home_1.close_activity_centre.click()
2022-12-29 13:49:00 +00:00
self.home_1.contacts_tab.click()
2023-06-26 09:59:29 +00:00
if not self.home_1.contact_details_row(username=self.username_2).is_element_displayed(20):
2023-03-09 11:06:03 +00:00
self.errors.append("Contact was not added to contact list after accepting contact request (as receiver)")
self.device_2.just_fyi('Device1 check that contact appeared in contact list mutually')
self.home_2.chats_tab.click()
self.home_2.contacts_tab.click()
2023-06-26 09:59:29 +00:00
if not self.home_2.contact_details_row(username=self.username_1).is_element_displayed(20):
2023-03-09 11:06:03 +00:00
self.errors.append("Contact was not added to contact list after accepting contact request (as sender)")
self.errors.verify_no_errors()
2023-03-13 13:29:18 +00:00
@pytest.mark.xdist_group(name="new_one_3")
2023-03-09 11:06:03 +00:00
@marks.new_ui_critical
class TestActivityMultipleDevicePR(MultipleSharedDeviceTestCase):
def prepare_devices(self):
self.drivers, self.loop = create_shared_drivers(2)
self.device_1, self.device_2 = SignInView(self.drivers[0]), SignInView(self.drivers[1])
self.username_1, self.username_2 = 'user1', 'user2'
2023-03-09 11:06:03 +00:00
self.loop.run_until_complete(
run_in_parallel(((self.device_1.create_user, {'username': self.username_1}),
(self.device_2.create_user, {'username': self.username_2}))))
self.homes = self.home_1, self.home_2 = self.device_1.get_home_view(), self.device_2.get_home_view()
2023-03-09 11:06:03 +00:00
self.profile_1, self.profile_2 = self.home_1.get_profile_view(), self.home_2.get_profile_view()
self.public_key_2 = self.home_2.get_public_key()
self.home_2.click_system_back_button_until_element_is_shown()
[home.chats_tab.click() for home in self.homes]
2023-03-09 11:06:03 +00:00
self.home_1.add_contact(self.public_key_2)
self.home_2.handle_contact_request(self.username_1)
2023-03-09 11:06:03 +00:00
self.text_message = 'hello'
self.one_to_one_message = 'one-t-one message'
self.home_2.just_fyi("Send message to contact (need for jump to) test")
self.chat_1 = self.home_1.get_chat(self.username_2).click()
2023-03-09 11:06:03 +00:00
self.chat_1.send_message(self.one_to_one_message)
self.chat_2 = self.home_2.get_chat(self.username_1).click()
2023-03-09 11:06:03 +00:00
self.chat_2.send_message(self.text_message)
[home.click_system_back_button_until_element_is_shown() for home in self.homes]
2022-12-29 13:49:00 +00:00
2023-03-09 11:06:03 +00:00
self.home_1.just_fyi("Open community to message")
self.home_1.communities_tab.click()
2022-12-29 13:49:00 +00:00
self.community_name = self.home_1.get_random_chat_name()
2023-03-24 10:06:20 +00:00
self.channel_name = 'general'
2022-12-29 13:49:00 +00:00
self.home_1.create_community(name=self.community_name, description='community to test', require_approval=False)
self.channel_1 = self.home_1.get_to_community_channel_from_home(self.community_name)
2023-03-24 10:06:20 +00:00
self.channel_1.send_message(self.text_message)
self.community_1, self.community_2 = self.home_1.get_community_view(), self.home_2.get_community_view()
self.community_1.send_invite_to_community(self.community_name, self.username_2)
self.home_1.get_to_community_channel_from_home(self.community_name)
self.chat_2 = self.home_2.get_chat(self.username_1).click()
2022-12-29 13:49:00 +00:00
self.chat_2.element_by_text_part('View').click()
2023-03-24 10:06:20 +00:00
self.community_2.join_community()
self.channel_2 = self.community_2.get_channel(self.channel_name).click()
2023-03-09 11:06:03 +00:00
@marks.testrail_id(702936)
def test_navigation_jump_to(self):
self.community_1.just_fyi("Check Jump to screen and redirect on tap")
self.community_1.jump_to_button.click()
for card in (self.community_name, self.username_2):
2023-03-09 11:06:03 +00:00
if not self.community_1.element_by_text_part(card).is_element_displayed(20):
2022-12-29 13:49:00 +00:00
self.errors.append("Card %s is not shown on Jump to screen!" % card)
2023-03-09 11:06:03 +00:00
self.community_1.element_by_translation_id("community-channel").click()
if not self.channel_1.chat_element_by_text(self.text_message).is_element_displayed(20):
self.errors.append("User was not redirected to community channel after tapping on community channel card!")
self.channel_1.click_system_back_button()
self.community_1.jump_to_button.click()
self.community_1.element_by_text_part(self.username_2).click()
2023-03-09 11:06:03 +00:00
if not self.chat_1.chat_element_by_text(self.one_to_one_message).is_element_displayed(20):
2022-12-29 13:49:00 +00:00
self.errors.append("User was not redirected to 1-1 chat after tapping card!")
self.errors.verify_no_errors()
2023-03-13 13:29:18 +00:00
@marks.testrail_id(702947)
2023-03-20 12:58:09 +00:00
def test_activity_center_reply_read_unread_delete_filter_swipe(self):
2023-03-13 13:29:18 +00:00
message_to_reply, reply_to_message_from_sender = 'something to reply to', 'this is a reply'
self.home_1.jump_to_communities_home()
self.home_1.get_chat(self.community_name, community=True).click()
self.community_1.get_channel(self.channel_name).click()
self.channel_1.send_message(message_to_reply)
self.home_1.jump_to_communities_home()
2023-06-19 11:13:23 +00:00
self.channel_2.chat_element_by_text(message_to_reply).wait_for_visibility_of_element(120)
2023-03-13 13:29:18 +00:00
self.channel_2.quote_message(message_to_reply)
self.channel_2.send_message(reply_to_message_from_sender)
self.home_1.just_fyi("Checking unread indicators")
2023-03-15 15:44:13 +00:00
self.home_1.notifications_unread_badge.wait_for_visibility_of_element(120)
2023-03-13 13:29:18 +00:00
community_element_1 = self.home_1.get_chat(self.community_name, community=True)
for unread_counter in community_element_1.new_messages_counter, self.home_1.communities_tab.counter:
if not unread_counter.is_element_displayed(60):
self.errors.append('New message counter badge is not shown!')
2023-03-15 15:44:13 +00:00
if int(unread_counter.text) != 1:
2023-03-13 13:29:18 +00:00
self.errors.append('New message counter badge is not 1, it is %s!' % unread_counter.text)
self.home_1.just_fyi("Checking reply attributes in activity center")
self.home_1.open_activity_center_button.click()
reply_element = self.home_1.get_element_from_activity_center_view(reply_to_message_from_sender)
if reply_element.title.text != 'Reply':
self.errors.append("Expected title is not shown, '%s' is instead!" % reply_element.title)
if not reply_element.unread_indicator.is_element_displayed():
self.errors.append("No unread dot is shown on activity center element!")
self.home_1.just_fyi("Swiping to 'Replies' on activity center and check unread there")
self.home_1.mention_activity_tab_button.click()
if reply_element.is_element_displayed(2):
self.errors.append("Filter on mentions is not working in Activity centre!")
self.home_1.reply_activity_tab_button.click()
if not self.home_1.reply_activity_tab_button.counter.is_element_displayed(2):
self.errors.append("No unread dot is shown on activity center tab element!")
if not reply_element.is_element_displayed():
self.errors.append("Filter on replies tab is not working in Activity centre!")
self.home_1.just_fyi("Mark it as read and check filter")
reply_element.swipe_right_on_element()
Swipe gestures for Activity Center notifications with CTA (#15284) Implements swipe actions for notifications with call to action (e.g. pending contact requests, unverified identity verifications, etc). Fixes https://github.com/status-im/status-mobile/issues/15118 According to the Design team, the goal is to deliver a consistent experience to users, so whenever the user sees a notification with buttons, the same actions can be taken via the swipe buttons. Note: swipe buttons are using placeholder icons while the Design team works out which ones to use Additionally, a bunch of fixes: - Fix: outgoing pending contact requests were not being removed from the UI when cancelled. - Fix: Membership tab not showing unread indicator. - Fix: dismissed membership notification not marked as read. - Fix: dismissed membership notification was displaying decline/accept buttons. Regression came from changes in status-go related to soft deletion of notifications. - Fix: incorrect check for the pending state of a contact request. - Fixed lots of bugs for identity verification notifications, as it was completely broken. Unfortunately, somebody made lots of changes without actually testing the flows. - Add basic error handling and log if accepting, declining or canceling contact requests fail. The demo shows an identity verification with swipe actions to reply or decline. [identity-verification-swipe-to-reply.webm](https://user-images.githubusercontent.com/46027/223565755-b2ca3f68-12e2-4e1e-9e52-edd52cfcc971.webm) Out of scope: The old quo input is still in use in the identity verification notification. This will eventually be solved by issue https://github.com/status-im/status-mobile/issues/14364 ### Steps to test Notifications with one or more buttons (actions) are affected by this change, because now the user can also swipe left/right to act on them. - Membership notifications: private group chat. The following PR explains how to generate them https://github.com/status-im/status-mobile/pull/14785 - Contact requests, and community gated requests to join (Admin tab). - Identity verifications. I believe the only way to test identity verification flows at the moment is to use the Desktop app, since initiating the challenge is not implemented in Mobile yet. - Mentions and replies don't have new swipe buttons because they don't have call to action buttons throughout their lifecycle. Steps to test identity verification flows: #### Identity verification flow 1 - `A` and `B` are mutual contacts. - `A` sends a verification request to `B`. - `A` should not see any notification yet. - `B` should receive an identity verification notification. `B` can either decline or reply. - `B` declines and the status `Declined` is shown instead of buttons. - `B` can now either swipe to toggle read/unread or swipe delete the notification. - `A` should not receive any notification after `A` declined. #### Identity verification flow 2 - `A` and `B` are mutual contacts. - `A` sends a verification request to `B`. - `A` should not see any notification yet. - `B` should receive an identity verification notification. `B` can either decline or reply. - `B` press `Reply` and a bottom sheet is displayed with a text input. - `B` sends the reply/answer message and the status `Replied` is shown instead of buttons. - `B` can now either swipe to toggle read/unread or swipe to delete the notification. - `A` should receive a notification with the reply from `B`. - `A` can either mark the answer as untrustworthy or accept it (trust it) via the normal buttons, as well as via the swipe left/right buttons. - If `A` accepts the answer, then the status `Confirmed` is shown instead of buttons. On the other hand, if `A` marks as untrustworthy, then the status `Untrustworthy` is shown instead of buttons. - `B` should receive no further notifications due to `A`s actions. - `A` can now either swipe to toggle read/unread or swipe delete the notification.
2023-03-14 15:34:13 +00:00
self.home_1.activity_notification_swipe_button.click()
2023-03-13 13:29:18 +00:00
if reply_element.is_element_displayed(2):
self.errors.append("Message is not marked as read!")
self.home_1.activity_unread_filter_button.click()
if not reply_element.is_element_displayed(2):
self.errors.append("Read filter is not displayed read message!")
self.home_1.just_fyi("Mark it as unread and check filter via right swipe")
reply_element.swipe_right_on_element()
Swipe gestures for Activity Center notifications with CTA (#15284) Implements swipe actions for notifications with call to action (e.g. pending contact requests, unverified identity verifications, etc). Fixes https://github.com/status-im/status-mobile/issues/15118 According to the Design team, the goal is to deliver a consistent experience to users, so whenever the user sees a notification with buttons, the same actions can be taken via the swipe buttons. Note: swipe buttons are using placeholder icons while the Design team works out which ones to use Additionally, a bunch of fixes: - Fix: outgoing pending contact requests were not being removed from the UI when cancelled. - Fix: Membership tab not showing unread indicator. - Fix: dismissed membership notification not marked as read. - Fix: dismissed membership notification was displaying decline/accept buttons. Regression came from changes in status-go related to soft deletion of notifications. - Fix: incorrect check for the pending state of a contact request. - Fixed lots of bugs for identity verification notifications, as it was completely broken. Unfortunately, somebody made lots of changes without actually testing the flows. - Add basic error handling and log if accepting, declining or canceling contact requests fail. The demo shows an identity verification with swipe actions to reply or decline. [identity-verification-swipe-to-reply.webm](https://user-images.githubusercontent.com/46027/223565755-b2ca3f68-12e2-4e1e-9e52-edd52cfcc971.webm) Out of scope: The old quo input is still in use in the identity verification notification. This will eventually be solved by issue https://github.com/status-im/status-mobile/issues/14364 ### Steps to test Notifications with one or more buttons (actions) are affected by this change, because now the user can also swipe left/right to act on them. - Membership notifications: private group chat. The following PR explains how to generate them https://github.com/status-im/status-mobile/pull/14785 - Contact requests, and community gated requests to join (Admin tab). - Identity verifications. I believe the only way to test identity verification flows at the moment is to use the Desktop app, since initiating the challenge is not implemented in Mobile yet. - Mentions and replies don't have new swipe buttons because they don't have call to action buttons throughout their lifecycle. Steps to test identity verification flows: #### Identity verification flow 1 - `A` and `B` are mutual contacts. - `A` sends a verification request to `B`. - `A` should not see any notification yet. - `B` should receive an identity verification notification. `B` can either decline or reply. - `B` declines and the status `Declined` is shown instead of buttons. - `B` can now either swipe to toggle read/unread or swipe delete the notification. - `A` should not receive any notification after `A` declined. #### Identity verification flow 2 - `A` and `B` are mutual contacts. - `A` sends a verification request to `B`. - `A` should not see any notification yet. - `B` should receive an identity verification notification. `B` can either decline or reply. - `B` press `Reply` and a bottom sheet is displayed with a text input. - `B` sends the reply/answer message and the status `Replied` is shown instead of buttons. - `B` can now either swipe to toggle read/unread or swipe to delete the notification. - `A` should receive a notification with the reply from `B`. - `A` can either mark the answer as untrustworthy or accept it (trust it) via the normal buttons, as well as via the swipe left/right buttons. - If `A` accepts the answer, then the status `Confirmed` is shown instead of buttons. On the other hand, if `A` marks as untrustworthy, then the status `Untrustworthy` is shown instead of buttons. - `B` should receive no further notifications due to `A`s actions. - `A` can now either swipe to toggle read/unread or swipe delete the notification.
2023-03-14 15:34:13 +00:00
self.home_1.activity_notification_swipe_button.click()
2023-03-13 13:29:18 +00:00
if not reply_element.unread_indicator.is_element_displayed():
self.errors.append("No unread dot is shown on activity center element after marking it as unread!")
self.home_1.just_fyi("Tap on it and check it marked as read")
reply_element.click()
if not self.channel_1.chat_element_by_text(reply_to_message_from_sender).is_element_displayed():
self.errors.append("Was not redirected to chat after tapping on reply!")
self.home_1.jump_to_communities_home()
if self.home_1.notifications_unread_badge.is_element_displayed():
self.errors.append("Notification was not marked as read after opening it in community channel!")
self.home_1.just_fyi("Delete it from unread via left swipe")
self.home_1.open_activity_center_button.click()
reply_element.swipe_left_on_element()
Swipe gestures for Activity Center notifications with CTA (#15284) Implements swipe actions for notifications with call to action (e.g. pending contact requests, unverified identity verifications, etc). Fixes https://github.com/status-im/status-mobile/issues/15118 According to the Design team, the goal is to deliver a consistent experience to users, so whenever the user sees a notification with buttons, the same actions can be taken via the swipe buttons. Note: swipe buttons are using placeholder icons while the Design team works out which ones to use Additionally, a bunch of fixes: - Fix: outgoing pending contact requests were not being removed from the UI when cancelled. - Fix: Membership tab not showing unread indicator. - Fix: dismissed membership notification not marked as read. - Fix: dismissed membership notification was displaying decline/accept buttons. Regression came from changes in status-go related to soft deletion of notifications. - Fix: incorrect check for the pending state of a contact request. - Fixed lots of bugs for identity verification notifications, as it was completely broken. Unfortunately, somebody made lots of changes without actually testing the flows. - Add basic error handling and log if accepting, declining or canceling contact requests fail. The demo shows an identity verification with swipe actions to reply or decline. [identity-verification-swipe-to-reply.webm](https://user-images.githubusercontent.com/46027/223565755-b2ca3f68-12e2-4e1e-9e52-edd52cfcc971.webm) Out of scope: The old quo input is still in use in the identity verification notification. This will eventually be solved by issue https://github.com/status-im/status-mobile/issues/14364 ### Steps to test Notifications with one or more buttons (actions) are affected by this change, because now the user can also swipe left/right to act on them. - Membership notifications: private group chat. The following PR explains how to generate them https://github.com/status-im/status-mobile/pull/14785 - Contact requests, and community gated requests to join (Admin tab). - Identity verifications. I believe the only way to test identity verification flows at the moment is to use the Desktop app, since initiating the challenge is not implemented in Mobile yet. - Mentions and replies don't have new swipe buttons because they don't have call to action buttons throughout their lifecycle. Steps to test identity verification flows: #### Identity verification flow 1 - `A` and `B` are mutual contacts. - `A` sends a verification request to `B`. - `A` should not see any notification yet. - `B` should receive an identity verification notification. `B` can either decline or reply. - `B` declines and the status `Declined` is shown instead of buttons. - `B` can now either swipe to toggle read/unread or swipe delete the notification. - `A` should not receive any notification after `A` declined. #### Identity verification flow 2 - `A` and `B` are mutual contacts. - `A` sends a verification request to `B`. - `A` should not see any notification yet. - `B` should receive an identity verification notification. `B` can either decline or reply. - `B` press `Reply` and a bottom sheet is displayed with a text input. - `B` sends the reply/answer message and the status `Replied` is shown instead of buttons. - `B` can now either swipe to toggle read/unread or swipe to delete the notification. - `A` should receive a notification with the reply from `B`. - `A` can either mark the answer as untrustworthy or accept it (trust it) via the normal buttons, as well as via the swipe left/right buttons. - If `A` accepts the answer, then the status `Confirmed` is shown instead of buttons. On the other hand, if `A` marks as untrustworthy, then the status `Untrustworthy` is shown instead of buttons. - `B` should receive no further notifications due to `A`s actions. - `A` can now either swipe to toggle read/unread or swipe delete the notification.
2023-03-14 15:34:13 +00:00
self.home_1.activity_notification_swipe_button.click()
2023-03-13 13:29:18 +00:00
if reply_element.is_element_displayed():
self.errors.append("Reply is still shown after removing from activity centre!")
2023-03-20 12:58:09 +00:00
self.home_1.just_fyi("Reset filter to show all AC notifications again")
self.home_1.reply_activity_tab_button.click()
self.home_1.mention_activity_tab_button.click()
self.home_1.all_activity_tab_button.click()
self.home_1.close_activity_centre.click()
2023-03-13 13:29:18 +00:00
self.errors.verify_no_errors()
2023-03-20 12:58:09 +00:00
@marks.testrail_id(702957)
def test_activity_center_mentions(self):
2023-06-13 16:54:39 +00:00
if not self.channel_2.chat_message_input.is_element_displayed():
self.home_2.click_system_back_button_until_element_is_shown()
self.home_2.communities_tab.click()
self.home_2.get_chat(self.community_name, community=True).click()
self.community_2.get_channel(self.channel_name).click()
2023-03-20 12:58:09 +00:00
self.home_1.jump_to_communities_home()
self.device_2.just_fyi("Invited member sends a message with a mention")
self.channel_2.mention_user(self.username_1)
2023-03-20 12:58:09 +00:00
self.channel_2.send_message_button.click()
self.home_1.just_fyi("Checking unread indicators")
self.home_1.notifications_unread_badge.wait_for_visibility_of_element(120)
community_element_1 = self.home_1.get_chat(self.community_name, community=True)
for unread_counter in community_element_1.new_messages_counter, self.home_1.communities_tab.counter:
if not unread_counter.is_element_displayed(60):
self.errors.append('New message counter badge is not shown while mentioned!')
if int(unread_counter.text) != 1:
self.errors.append('New message counter badge is not 1, it is %s!' % unread_counter.text)
self.home_1.just_fyi("Checking mention attributes in activity center")
self.home_1.open_activity_center_button.click()
mention_element = self.home_1.get_element_from_activity_center_view('@%s' % self.username_1)
2023-03-20 12:58:09 +00:00
if mention_element.title.text != 'Mention':
self.errors.append("Expected title is not shown, '%s' is instead!" % mention_element.title)
if not mention_element.unread_indicator.is_element_displayed():
self.errors.append("No unread dot is shown on activity center element (mention)!")
if mention_element.message_body.text != '@%s' % self.username_1:
2023-06-19 11:13:23 +00:00
self.errors.append(
"Mention body in activity center does not match expected, it is %s!" % mention_element.message_body.text)
2023-03-20 12:58:09 +00:00
self.home_1.just_fyi("Tap on it and check redirect to channel")
mention_element.click()
if not self.channel_1.chat_element_by_text(self.username_1).is_element_displayed():
2023-03-20 12:58:09 +00:00
self.errors.append("Was not redirected to chat after tapping on mention!")
self.errors.verify_no_errors()
@marks.testrail_id(702958)
def test_activity_center_admin_notification_accept_swipe(self):
self.home_2.just_fyi("Clearing history")
2023-06-13 16:54:39 +00:00
self.home_2.click_system_back_button_until_element_is_shown()
self.home_2.chats_tab.click()
self.home_2.clear_chat_long_press(self.username_1)
2023-03-20 12:58:09 +00:00
[home.jump_to_communities_home() for home in (self.home_1, self.home_2)]
self.home_1.just_fyi("Open community to message")
self.home_1.communities_tab.click()
community_name = 'commun_to_check_notif'
self.channel_name = self.home_1.get_random_chat_name()
self.home_1.create_community(name=community_name, description='community to test', require_approval=True)
2023-03-24 10:06:20 +00:00
self.home_1.reopen_app()
2023-03-20 12:58:09 +00:00
community_element = self.home_1.get_chat(community_name, community=True)
self.community_1.share_community(community_element, self.username_2)
2023-03-20 12:58:09 +00:00
2023-03-30 13:14:27 +00:00
self.home_2.just_fyi("Request access to community")
2023-03-20 12:58:09 +00:00
self.home_2.jump_to_messages_home()
self.chat_2 = self.home_2.get_chat(self.username_1).click()
2023-06-29 12:05:13 +00:00
self.chat_2.element_by_text_part('View').wait_and_click(sec=60)
2023-03-24 10:06:20 +00:00
self.community_2.join_community()
[home.jump_to_communities_home() for home in (self.home_1, self.home_2)]
2023-03-20 12:58:09 +00:00
self.home_1.just_fyi("Checking unread indicators")
try:
self.home_1.notifications_unread_badge.wait_for_visibility_of_element(120)
except TimeoutException:
self.errors.append("Unread indicator is not shown in notifications")
2023-03-20 12:58:09 +00:00
self.home_1.open_activity_center_button.click()
reply_element = self.home_1.get_element_from_activity_center_view(self.username_2)
2023-03-20 12:58:09 +00:00
if reply_element.title.text != 'Join request':
self.errors.append("Expected title is not shown, '%s' is instead!" % reply_element.title)
if not reply_element.unread_indicator.is_element_displayed():
self.errors.append("No unread dot is shown on activity center element!")
reply_element.swipe_right_on_element()
self.home_1.activity_notification_swipe_button.click()
self.home_1.close_activity_centre.click()
self.home_2.just_fyi("Checking that community appeared on the list")
2023-03-20 12:58:09 +00:00
if not self.home_2.element_by_text_part(community_name).is_element_displayed(30):
2023-06-19 11:13:23 +00:00
self.errors.append(
"Community is not appeared in the list after accepting admin request from activity centre")
2023-03-20 12:58:09 +00:00
self.errors.verify_no_errors()