Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor some quo2 components to use best practices #16817

Merged
merged 9 commits into from Aug 10, 2023
Merged

Conversation

J-Son89
Copy link
Member

@J-Son89 J-Son89 commented Jul 31, 2023

Updated a few quo2 components to use view as their exported name,
to use style and view namespaces and to wrap some components in with-theme context HOC.

To test - see pages using tabs, dynamic-button and group tag, banner and step

There should really be minimal changes here as it's all just internal refactoring to code formatting more than anything else

@status-im-auto
Copy link
Member

status-im-auto commented Jul 31, 2023

Jenkins Builds

Click to see older builds (24)
Commit #️⃣ Finished (UTC) Duration Platform Result
8e2a091 #2 2023-07-31 10:32:02 ~3 min tests 📄log
✔️ 8e2a091 #2 2023-07-31 10:34:35 ~5 min android 🤖apk 📲
✔️ 8e2a091 #2 2023-07-31 10:34:59 ~6 min android-e2e 🤖apk 📲
✔️ 8e2a091 #2 2023-07-31 10:35:53 ~7 min ios 📱ipa 📲
ad45dbc #3 2023-08-07 13:24:03 ~3 min tests 📄log
✔️ ad45dbc #3 2023-08-07 13:27:32 ~6 min android-e2e 🤖apk 📲
✔️ ad45dbc #3 2023-08-07 13:27:34 ~6 min android 🤖apk 📲
✔️ ad45dbc #3 2023-08-07 13:27:58 ~7 min ios 📱ipa 📲
92152ff #4 2023-08-07 13:55:43 ~5 min tests 📄log
✔️ 92152ff #4 2023-08-07 13:59:27 ~9 min android-e2e 🤖apk 📲
✔️ 92152ff #4 2023-08-07 14:02:35 ~12 min android 🤖apk 📲
✔️ 92152ff #4 2023-08-07 14:07:17 ~17 min ios 📱ipa 📲
✔️ 9177ee0 #5 2023-08-08 05:55:12 ~7 min ios 📱ipa 📲
✔️ 9177ee0 #5 2023-08-08 05:56:52 ~9 min android 🤖apk 📲
✔️ 9177ee0 #5 2023-08-08 05:57:04 ~9 min android-e2e 🤖apk 📲
✔️ 9177ee0 #5 2023-08-08 05:57:51 ~10 min tests 📄log
✔️ 938752e #7 2023-08-09 10:46:16 ~6 min android 🤖apk 📲
✔️ 938752e #7 2023-08-09 10:46:18 ~5 min ios 📱ipa 📲
✔️ 938752e #7 2023-08-09 10:46:22 ~6 min android-e2e 🤖apk 📲
✔️ 938752e #7 2023-08-09 10:49:18 ~8 min tests 📄log
✔️ 9baf340 #8 2023-08-09 13:07:02 ~6 min ios 📱ipa 📲
✔️ 9baf340 #8 2023-08-09 13:07:07 ~6 min android 🤖apk 📲
✔️ 9baf340 #8 2023-08-09 13:08:08 ~7 min android-e2e 🤖apk 📲
✔️ 9baf340 #8 2023-08-09 13:10:18 ~9 min tests 📄log
Commit #️⃣ Finished (UTC) Duration Platform Result
✔️ 057a31d #9 2023-08-09 13:59:34 ~6 min android-e2e 🤖apk 📲
✔️ 057a31d #9 2023-08-09 13:59:40 ~6 min android 🤖apk 📲
✔️ 057a31d #9 2023-08-09 14:00:15 ~6 min ios 📱ipa 📲
✔️ 057a31d #9 2023-08-09 14:01:41 ~8 min tests 📄log
✔️ f30e5c6 #10 2023-08-10 10:53:08 ~5 min android 🤖apk 📲
✔️ f30e5c6 #10 2023-08-10 10:54:38 ~6 min ios 📱ipa 📲
✔️ f30e5c6 #10 2023-08-10 10:55:00 ~7 min android-e2e 🤖apk 📲
✔️ f30e5c6 #10 2023-08-10 10:57:00 ~9 min tests 📄log

@J-Son89 J-Son89 self-assigned this Jul 31, 2023
@@ -13,20 +15,17 @@

;; TODO: this implementation does not support group display picture (can only display default group
;; icon).
(defn group-avatar
(defn view-internal
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missing private method declaration defn-

@@ -6,7 +6,7 @@
[react-native.core :as rn]
[utils.number]))

(defn step-internal
(defn view-internal
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

defn-

:notification-up 2
:search-with-label 8
:search 6
:scroll-to-bottom 6)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Better have a fallback to nil in case.

@J-Son89 J-Son89 force-pushed the jc/best-practices branch 2 times, most recently from ad45dbc to 92152ff Compare August 7, 2023 13:49
@J-Son89 J-Son89 moved this from REVIEW to E2E Tests in Pipeline for QA Aug 7, 2023
@VolodLytvynenko VolodLytvynenko self-assigned this Aug 8, 2023
@VolodLytvynenko VolodLytvynenko moved this from E2E Tests to IN TESTING in Pipeline for QA Aug 8, 2023
@VolodLytvynenko VolodLytvynenko moved this from IN TESTING to Design review in Pipeline for QA Aug 8, 2023
@VolodLytvynenko VolodLytvynenko moved this from Design review to IN TESTING in Pipeline for QA Aug 8, 2023
@VolodLytvynenko VolodLytvynenko moved this from IN TESTING to E2E Tests in Pipeline for QA Aug 8, 2023
@VolodLytvynenko VolodLytvynenko moved this from E2E Tests to IN TESTING in Pipeline for QA Aug 8, 2023
@status-im-auto
Copy link
Member

78% of end-end tests have passed

Total executed tests: 41
Failed tests: 9
Passed tests: 32
IDs of failed tests: 702732,703133,702957,702783,702936,702786,702947,702731,702958 

Failed tests (9)

Click to expand
  • Rerun failed tests

  • Class TestCommunityMultipleDeviceMerged:

    1. test_community_mentions_push_notification, id: 702786

    # STEP: Admin gets push notification with the mention and tap it
    Device 1: Getting PN by 'user_1'

    critical/test_public_chat_browsing.py:1063: in test_community_mentions_push_notification
        self.errors.verify_no_errors()
    base_test_case.py:183: in verify_no_errors
        pytest.fail('\n '.join([self.errors.pop(0) for _ in range(len(self.errors))]))
     Push notification with the mention was not received by admin
    



    Device sessions

    Class TestCommunityOneDeviceMerged:

    1. test_restore_multiaccount_with_waku_backup_remove_switch, id: 703133

    Test is not run, e2e blocker  
    

    [[reason: [NOTRUN] Restoring communities issue: 16787; restoring contacts issue: 15500]]

    Class TestGroupChatMultipleDeviceMergedNewUI:

    1. test_group_chat_pin_messages, id: 702732

    Test is not run, e2e blocker  
    

    [[reason: [NOTRUN] Pin feature is in development]]

    Class TestOneToOneChatMultipleSharedDevicesNewUi:

    1. test_1_1_chat_is_shown_message_sent_delivered_from_offline, id: 702783

    Device 2: Find Text by xpath: //*[starts-with(@text,'test message')]/ancestor::android.view.ViewGroup[@content-desc='chat-item']//*[@content-desc='message-status']/android.widget.TextView
    Device 2: Text is Sent

    critical/chats/test_1_1_public_chats.py:1379: in test_1_1_chat_is_shown_message_sent_delivered_from_offline
        self.errors.verify_no_errors()
    base_test_case.py:183: in verify_no_errors
        pytest.fail('\n '.join([self.errors.pop(0) for _ in range(len(self.errors))]))
     Message status was not changed to Delivered, it's Sent after back up online!
    



    Device sessions

    2. test_1_1_chat_pin_messages, id: 702731

    Test is not run, e2e blocker  
    

    [[reason: [NOTRUN] Pin feature is in development]]

    Class TestActivityMultipleDevicePR:

    1. test_activity_center_mentions, id: 702957

    Test setup failed: medium/test_activity_center.py:157: in prepare_devices
        self.chat_1.send_message(self.one_to_one_message)
    ../views/chat_view.py:968: in send_message
        self.chat_message_input.wait_for_element(wait_chat_input_sec)
    ../views/base_element.py:117: in wait_for_element
        raise TimeoutException(
     Device `1`: `ChatMessageInput` by` accessibility id`: `chat-message-input` is not found on the screen after wait_for_element
    



    2. test_navigation_jump_to, id: 702936

    Device 1: ChatMessageInput element not found
    Device 1: Sending message 'one-t-one message'

    Test setup failed: medium/test_activity_center.py:157: in prepare_devices
        self.chat_1.send_message(self.one_to_one_message)
    ../views/chat_view.py:968: in send_message
        self.chat_message_input.wait_for_element(wait_chat_input_sec)
    ../views/base_element.py:117: in wait_for_element
        raise TimeoutException(
     Device `1`: `ChatMessageInput` by` accessibility id`: `chat-message-input` is not found on the screen after wait_for_element
    



    Device sessions

    3. test_activity_center_reply_read_unread_delete_filter_swipe, id: 702947

    Test setup failed: medium/test_activity_center.py:157: in prepare_devices
        self.chat_1.send_message(self.one_to_one_message)
    ../views/chat_view.py:968: in send_message
        self.chat_message_input.wait_for_element(wait_chat_input_sec)
    ../views/base_element.py:117: in wait_for_element
        raise TimeoutException(
     Device `1`: `ChatMessageInput` by` accessibility id`: `chat-message-input` is not found on the screen after wait_for_element
    



    4. test_activity_center_admin_notification_accept_swipe, id: 702958

    Test setup failed: medium/test_activity_center.py:157: in prepare_devices
        self.chat_1.send_message(self.one_to_one_message)
    ../views/chat_view.py:968: in send_message
        self.chat_message_input.wait_for_element(wait_chat_input_sec)
    ../views/base_element.py:117: in wait_for_element
        raise TimeoutException(
     Device `1`: `ChatMessageInput` by` accessibility id`: `chat-message-input` is not found on the screen after wait_for_element
    



    Passed tests (32)

    Click to expand

    Class TestCommunityMultipleDeviceMerged:

    1. test_community_markdown_support, id: 702809
    Device sessions

    2. test_community_several_images_send_reply, id: 703194
    Device sessions

    3. test_community_one_image_send_reply, id: 702859
    Device sessions

    4. test_community_emoji_send_copy_paste_reply, id: 702840
    Device sessions

    5. test_community_mark_all_messages_as_read, id: 703086
    Device sessions

    6. test_community_contact_block_unblock_offline, id: 702894
    Device sessions

    7. test_community_message_delete, id: 702839
    Device sessions

    8. test_community_message_send_check_timestamps_sender_username, id: 702838
    Device sessions

    9. test_community_links_with_previews_github_youtube_twitter_gif_send_enable, id: 702844
    Device sessions

    10. test_community_message_edit, id: 702843
    Device sessions

    11. test_community_leave, id: 702845
    Device sessions

    12. test_community_unread_messages_badge, id: 702841
    Device sessions

    Class TestActivityCenterContactRequestMultipleDevicePR:

    1. test_activity_center_contact_request_accept_swipe_mark_all_as_read, id: 702851
    Device sessions

    2. test_activity_center_contact_request_decline, id: 702850
    Device sessions

    Class TestCommunityOneDeviceMerged:

    1. test_community_copy_and_paste_message_in_chat_input, id: 702742
    Device sessions

    2. test_community_undo_delete_message, id: 702869
    Device sessions

    3. test_community_navigate_to_channel_when_relaunch, id: 702846
    Device sessions

    4. test_community_mute_community_and_channel, id: 703382
    Device sessions

    Class TestGroupChatMultipleDeviceMergedNewUI:

    1. test_group_chat_mute_chat, id: 703495
    Device sessions

    2. test_group_chat_send_image_save_and_share, id: 703297
    Device sessions

    3. test_group_chat_reactions, id: 703202
    Device sessions

    4. test_group_chat_join_send_text_messages_push, id: 702807
    Device sessions

    5. test_group_chat_offline_pn, id: 702808
    Device sessions

    Class TestOneToOneChatMultipleSharedDevicesNewUi:

    1. test_1_1_chat_emoji_send_reply_and_open_link, id: 702782
    Device sessions

    2. test_1_1_chat_text_message_delete_push_disappear, id: 702733
    Device sessions

    3. test_1_1_chat_delete_via_long_press_relogin, id: 702784
    Device sessions

    4. test_1_1_chat_push_emoji, id: 702813
    Device sessions

    5. test_1_1_chat_non_latin_messages_stack_update_profile_photo, id: 702745
    Device sessions

    6. test_1_1_chat_mute_chat, id: 703496
    Device sessions

    7. test_1_1_chat_edit_message, id: 702855
    Device sessions

    8. test_1_1_chat_send_image_save_and_share, id: 703391
    Device sessions

    9. test_1_1_chat_message_reaction, id: 702730
    Device sessions

    @VolodLytvynenko
    Copy link
    Contributor

    VolodLytvynenko commented Aug 9, 2023

    Hi @J-Son89 thank you for PR. Take a look a found issue:

    ISSUE 1: UI for 'Jump to' button is broken

    Steps:

    1. Login
    2. Check 'jump to' button

    Actual result:

    UI for 'Jump to' button is broken
    image

    Expected result:

    The collor for 'Jump to' corresponds to the selected color of the use

    @VolodLytvynenko
    Copy link
    Contributor

    VolodLytvynenko commented Aug 9, 2023

    @J-Son89 I've observed that this issue persists in the latest nightly build. If the current scope of the PR refactor includes addressing this issue, kindly make the necessary fixes. If not, I'm prepared to create a separate issue. Thank you!

    ISSUE 2: [Andorid] The scroll button remains visible after reopening a chat

    Steps to Reproduce:

    1. Open a chat.
    2. Scroll up to appear the scroll button.
    3. Close the chat.
    4. Reopen the same chat.

    Actual Result:

    Upon reopening the chat, the previously visible scroll button remains present even when the chat is opened in a manner that doesn't allow for scrolling downward.

    https://www.dropbox.com/scl/fi/wvm8oyjya6y7is9z0fg6x/scroll.mp4?rlkey=kkihxrdf2pzvj4yghidif8zv7&dl=0

    Expected Result:

    The scroll button should be hidden when the chat is reopened since the chat is displayed in a mode where scrolling down is not feasible.

    Device:

    real device: Pixel 7a, Android 13

    @VolodLytvynenko VolodLytvynenko moved this from IN TESTING to CONTRIBUTOR in Pipeline for QA Aug 9, 2023
    @J-Son89
    Copy link
    Member Author

    J-Son89 commented Aug 9, 2023

    Hi @VolodLytvynenko - sure I can take a look at both of these. Will let you know!

    @J-Son89 J-Son89 force-pushed the jc/best-practices branch 2 times, most recently from 2cbbd46 to 938752e Compare August 9, 2023 10:40
    @VolodLytvynenko VolodLytvynenko moved this from CONTRIBUTOR to E2E Tests in Pipeline for QA Aug 9, 2023
    @VolodLytvynenko VolodLytvynenko moved this from E2E Tests to IN TESTING in Pipeline for QA Aug 9, 2023
    @status-im-auto
    Copy link
    Member

    83% of end-end tests have passed

    Total executed tests: 41
    Failed tests: 7
    Passed tests: 34
    
    IDs of failed tests: 702809,702732,703133,702894,702783,702786,702731 
    

    Failed tests (7)

    Click to expand
  • Rerun failed tests

  • Class TestOneToOneChatMultipleSharedDevicesNewUi:

    1. test_1_1_chat_is_shown_message_sent_delivered_from_offline, id: 702783

    Device 2: Find `Text` by `xpath`: `//*[starts-with(@text,'test message')]/ancestor::android.view.ViewGroup[@content-desc='chat-item']//*[@content-desc='message-status']/android.widget.TextView`
    Device 2: `Text` is `Delivered`

    critical/chats/test_1_1_public_chats.py:1379: in test_1_1_chat_is_shown_message_sent_delivered_from_offline
        self.errors.verify_no_errors()
    base_test_case.py:183: in verify_no_errors
        pytest.fail('\n '.join([self.errors.pop(0) for _ in range(len(self.errors))]))
     Message was not delivered after resending from offline
    



    Device sessions

    2. test_1_1_chat_pin_messages, id: 702731

    Test is not run, e2e blocker  
    

    [[reason: [NOTRUN] Pin feature is in development]]

    Class TestGroupChatMultipleDeviceMergedNewUI:

    1. test_group_chat_pin_messages, id: 702732

    Test is not run, e2e blocker  
    

    [[reason: [NOTRUN] Pin feature is in development]]

    Class TestCommunityOneDeviceMerged:

    1. test_restore_multiaccount_with_waku_backup_remove_switch, id: 703133

    Test is not run, e2e blocker  
    

    [[reason: [NOTRUN] Restoring communities issue: 16787; restoring contacts issue: 15500]]

    Class TestCommunityMultipleDeviceMerged:

    1. test_community_markdown_support, id: 702809

    # STEP: Checking that "bold text in asterics" is applied (**) in 1-1 chat
    Device 1: Sending message 'bold text in asterics'

    critical/test_public_chat_browsing.py:1104: in test_community_markdown_support
        chat_1.send_message(message_to_send)
    ../views/chat_view.py:968: in send_message
        self.chat_message_input.wait_for_element(wait_chat_input_sec)
    ../views/base_element.py:117: in wait_for_element
        raise TimeoutException(
     Device `1`: `ChatMessageInput` by` accessibility id`: `chat-message-input` is not found on the screen after wait_for_element
    



    Device sessions

    2. test_community_contact_block_unblock_offline, id: 702894

    Device 1: Tap on found: Button
    Device 1: Looking for a message by text: Hurray! unblocked

    critical/test_public_chat_browsing.py:927: in test_community_contact_block_unblock_offline
        self.errors.verify_no_errors()
    base_test_case.py:183: in verify_no_errors
        pytest.fail('\n '.join([self.errors.pop(0) for _ in range(len(self.errors))]))
     Hurray! unblocked was not received in public chat after user unblock!
    



    Device sessions

    3. test_community_mentions_push_notification, id: 702786

    # STEP: Admin gets push notification with the mention and tap it
    Device 1: Getting PN by 'user_1'

    critical/test_public_chat_browsing.py:1063: in test_community_mentions_push_notification
        self.errors.verify_no_errors()
    base_test_case.py:183: in verify_no_errors
        pytest.fail('\n '.join([self.errors.pop(0) for _ in range(len(self.errors))]))
     Push notification with the mention was not received by admin
    



    Device sessions

    Passed tests (34)

    Click to expand

    Class TestOneToOneChatMultipleSharedDevicesNewUi:

    1. test_1_1_chat_emoji_send_reply_and_open_link, id: 702782
    Device sessions

    2. test_1_1_chat_text_message_delete_push_disappear, id: 702733
    Device sessions

    3. test_1_1_chat_delete_via_long_press_relogin, id: 702784
    Device sessions

    4. test_1_1_chat_push_emoji, id: 702813
    Device sessions

    5. test_1_1_chat_non_latin_messages_stack_update_profile_photo, id: 702745
    Device sessions

    6. test_1_1_chat_mute_chat, id: 703496
    Device sessions

    7. test_1_1_chat_edit_message, id: 702855
    Device sessions

    8. test_1_1_chat_send_image_save_and_share, id: 703391
    Device sessions

    9. test_1_1_chat_message_reaction, id: 702730
    Device sessions

    Class TestCommunityOneDeviceMerged:

    1. test_community_copy_and_paste_message_in_chat_input, id: 702742
    Device sessions

    2. test_community_undo_delete_message, id: 702869
    Device sessions

    3. test_community_navigate_to_channel_when_relaunch, id: 702846
    Device sessions

    4. test_community_mute_community_and_channel, id: 703382
    Device sessions

    Class TestCommunityMultipleDeviceMerged:

    1. test_community_several_images_send_reply, id: 703194
    Device sessions

    2. test_community_one_image_send_reply, id: 702859
    Device sessions

    3. test_community_emoji_send_copy_paste_reply, id: 702840
    Device sessions

    4. test_community_mark_all_messages_as_read, id: 703086
    Device sessions

    5. test_community_message_delete, id: 702839
    Device sessions

    6. test_community_message_send_check_timestamps_sender_username, id: 702838
    Device sessions

    7. test_community_links_with_previews_github_youtube_twitter_gif_send_enable, id: 702844
    Device sessions

    8. test_community_message_edit, id: 702843
    Device sessions

    9. test_community_leave, id: 702845
    Device sessions

    10. test_community_unread_messages_badge, id: 702841
    Device sessions

    Class TestActivityCenterContactRequestMultipleDevicePR:

    1. test_activity_center_contact_request_accept_swipe_mark_all_as_read, id: 702851
    Device sessions

    2. test_activity_center_contact_request_decline, id: 702850
    Device sessions

    Class TestGroupChatMultipleDeviceMergedNewUI:

    1. test_group_chat_mute_chat, id: 703495
    Device sessions

    2. test_group_chat_send_image_save_and_share, id: 703297
    Device sessions

    3. test_group_chat_reactions, id: 703202
    Device sessions

    4. test_group_chat_join_send_text_messages_push, id: 702807
    Device sessions

    5. test_group_chat_offline_pn, id: 702808
    Device sessions

    Class TestActivityMultipleDevicePR:

    1. test_activity_center_mentions, id: 702957
    Device sessions

    2. test_navigation_jump_to, id: 702936
    Device sessions

    3. test_activity_center_reply_read_unread_delete_filter_swipe, id: 702947
    Device sessions

    4. test_activity_center_admin_notification_accept_swipe, id: 702958
    Device sessions

    @VolodLytvynenko
    Copy link
    Contributor

    Hi @J-Son89 indeed, issue 1 is resolved after rebase. One additional issue related to jump to is found:

    ISSUE 3: 'Jump To' Button Appearance Inconsistent Between Light and Dark Themes

    Steps to Reproduce:

    1. Log in to the app.
    2. Observe the appearance of the 'Jump To' button.

    Actual Result:

    The 'Jump To' button is displayed with dark shades on the light theme and with a light appearance on the dark theme
    image

    Expected Result:

    The 'Jump To' button is displayed with light shades on the light theme and with a dark appearance on the dark theme

    ENVs:

    • IOS
    • Android

    @VolodLytvynenko VolodLytvynenko moved this from IN TESTING to CONTRIBUTOR in Pipeline for QA Aug 9, 2023
    @J-Son89
    Copy link
    Member Author

    J-Son89 commented Aug 9, 2023

    apologies @VolodLytvynenko - should be addressed now 👍

    @VolodLytvynenko VolodLytvynenko moved this from CONTRIBUTOR to E2E Tests in Pipeline for QA Aug 9, 2023
    @VolodLytvynenko VolodLytvynenko moved this from E2E Tests to IN TESTING in Pipeline for QA Aug 9, 2023
    @status-im-auto
    Copy link
    Member

    88% of end-end tests have passed

    Total executed tests: 41
    Failed tests: 5
    Passed tests: 36
    
    IDs of failed tests: 702732,703133,702783,702786,702731 
    

    Failed tests (5)

    Click to expand
  • Rerun failed tests

  • Class TestCommunityMultipleDeviceMerged:

    1. test_community_mentions_push_notification, id: 702786

    # STEP: Admin gets push notification with the mention and tap it
    Device 1: Getting PN by 'user_1'

    critical/test_public_chat_browsing.py:1063: in test_community_mentions_push_notification
        self.errors.verify_no_errors()
    base_test_case.py:183: in verify_no_errors
        pytest.fail('\n '.join([self.errors.pop(0) for _ in range(len(self.errors))]))
     Push notification with the mention was not received by admin
    



    Device sessions

    Class TestOneToOneChatMultipleSharedDevicesNewUi:

    1. test_1_1_chat_is_shown_message_sent_delivered_from_offline, id: 702783

    Device 2: Find Text by xpath: //*[starts-with(@text,'test message')]/ancestor::android.view.ViewGroup[@content-desc='chat-item']//*[@content-desc='message-status']/android.widget.TextView
    Device 2: Text is Delivered

    critical/chats/test_1_1_public_chats.py:1379: in test_1_1_chat_is_shown_message_sent_delivered_from_offline
        self.errors.verify_no_errors()
    base_test_case.py:183: in verify_no_errors
        pytest.fail('\n '.join([self.errors.pop(0) for _ in range(len(self.errors))]))
     Message was not delivered after resending from offline
    



    Device sessions

    2. test_1_1_chat_pin_messages, id: 702731

    Test is not run, e2e blocker  
    

    [[reason: [NOTRUN] Pin feature is in development]]

    Class TestGroupChatMultipleDeviceMergedNewUI:

    1. test_group_chat_pin_messages, id: 702732

    Test is not run, e2e blocker  
    

    [[reason: [NOTRUN] Pin feature is in development]]

    Class TestCommunityOneDeviceMerged:

    1. test_restore_multiaccount_with_waku_backup_remove_switch, id: 703133

    Test is not run, e2e blocker  
    

    [[reason: [NOTRUN] Restoring communities issue: 16787; restoring contacts issue: 15500]]

    Passed tests (36)

    Click to expand

    Class TestActivityMultipleDevicePR:

    1. test_activity_center_mentions, id: 702957
    Device sessions

    2. test_navigation_jump_to, id: 702936
    Device sessions

    3. test_activity_center_reply_read_unread_delete_filter_swipe, id: 702947
    Device sessions

    4. test_activity_center_admin_notification_accept_swipe, id: 702958
    Device sessions

    Class TestCommunityMultipleDeviceMerged:

    1. test_community_markdown_support, id: 702809
    Device sessions

    2. test_community_several_images_send_reply, id: 703194
    Device sessions

    3. test_community_one_image_send_reply, id: 702859
    Device sessions

    4. test_community_emoji_send_copy_paste_reply, id: 702840
    Device sessions

    5. test_community_mark_all_messages_as_read, id: 703086
    Device sessions

    6. test_community_contact_block_unblock_offline, id: 702894
    Device sessions

    7. test_community_message_delete, id: 702839
    Device sessions

    8. test_community_message_send_check_timestamps_sender_username, id: 702838
    Device sessions

    9. test_community_links_with_previews_github_youtube_twitter_gif_send_enable, id: 702844
    Device sessions

    10. test_community_message_edit, id: 702843
    Device sessions

    11. test_community_leave, id: 702845
    Device sessions

    12. test_community_unread_messages_badge, id: 702841
    Device sessions

    Class TestActivityCenterContactRequestMultipleDevicePR:

    1. test_activity_center_contact_request_accept_swipe_mark_all_as_read, id: 702851
    Device sessions

    2. test_activity_center_contact_request_decline, id: 702850
    Device sessions

    Class TestCommunityOneDeviceMerged:

    1. test_community_copy_and_paste_message_in_chat_input, id: 702742
    Device sessions

    2. test_community_undo_delete_message, id: 702869
    Device sessions

    3. test_community_navigate_to_channel_when_relaunch, id: 702846
    Device sessions

    4. test_community_mute_community_and_channel, id: 703382
    Device sessions

    Class TestOneToOneChatMultipleSharedDevicesNewUi:

    1. test_1_1_chat_emoji_send_reply_and_open_link, id: 702782
    Device sessions

    2. test_1_1_chat_text_message_delete_push_disappear, id: 702733
    Device sessions

    3. test_1_1_chat_delete_via_long_press_relogin, id: 702784
    Device sessions

    4. test_1_1_chat_push_emoji, id: 702813
    Device sessions

    5. test_1_1_chat_non_latin_messages_stack_update_profile_photo, id: 702745
    Device sessions

    6. test_1_1_chat_mute_chat, id: 703496
    Device sessions

    7. test_1_1_chat_edit_message, id: 702855
    Device sessions

    8. test_1_1_chat_send_image_save_and_share, id: 703391
    Device sessions

    9. test_1_1_chat_message_reaction, id: 702730
    Device sessions

    Class TestGroupChatMultipleDeviceMergedNewUI:

    1. test_group_chat_mute_chat, id: 703495
    Device sessions

    2. test_group_chat_send_image_save_and_share, id: 703297
    Device sessions

    3. test_group_chat_reactions, id: 703202
    Device sessions

    4. test_group_chat_join_send_text_messages_push, id: 702807
    Device sessions

    5. test_group_chat_offline_pn, id: 702808
    Device sessions

    @VolodLytvynenko
    Copy link
    Contributor

    @J-Son89 thank you for your work. PR is tested and ready to be merged

    @VolodLytvynenko VolodLytvynenko moved this from IN TESTING to MERGE in Pipeline for QA Aug 9, 2023
    @J-Son89 J-Son89 merged commit 302c54b into develop Aug 10, 2023
    6 checks passed
    Pipeline for QA automation moved this from MERGE to DONE Aug 10, 2023
    @J-Son89 J-Son89 deleted the jc/best-practices branch August 10, 2023 10:59
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    Development

    Successfully merging this pull request may close these issues.

    None yet

    8 participants