chore: add validation for emoji hash across screens
This commit is contained in:
parent
b59590aa1f
commit
0e96fd0e57
|
@ -53,8 +53,8 @@ class ProfilePopup(BasePopup):
|
|||
|
||||
@property
|
||||
@allure.step('Get emoji hash image')
|
||||
def emoji_hash(self) -> Image:
|
||||
return self._emoji_hash.image
|
||||
def get_emoji_hash(self) -> str:
|
||||
return str(getattr(self._emoji_hash.object, 'publicKey'))
|
||||
|
||||
@property
|
||||
@allure.step('Copy chat key')
|
||||
|
|
|
@ -76,7 +76,7 @@ mainWindow_clear_icon_StatusIcon = {"container": mainWindow_StatusWindow, "objec
|
|||
# Your emojihash and identicon ring
|
||||
mainWindow_welcomeScreenUserProfileImage_StatusSmartIdenticon = {"container": mainWindow_InsertDetailsView, "objectName": "welcomeScreenUserProfileImage", "type": "StatusSmartIdenticon", "visible": True}
|
||||
mainWindow_insertDetailsViewChatKeyTxt_StyledText = {"container": mainWindow_InsertDetailsView, "objectName": "insertDetailsViewChatKeyTxt", "type": "StyledText", "visible": True}
|
||||
mainWindow_EmojiHash = {"container": mainWindow_InsertDetailsView, "type": "EmojiHash", "unnamed": 1, "visible": True}
|
||||
mainWindow_EmojiHash = {"container": statusDesktop_mainWindow, "objectName": "publicKeyEmojiHash", "type": "EmojiHash", "visible": True}
|
||||
mainWindow_userImageCopy_StatusSmartIdenticon = {"container": mainWindow_InsertDetailsView, "id": "userImageCopy", "type": "StatusSmartIdenticon", "unnamed": 1, "visible": True}
|
||||
|
||||
|
||||
|
|
|
@ -360,8 +360,8 @@ class YourEmojihashAndIdenticonRingView(OnboardingView):
|
|||
|
||||
@property
|
||||
@allure.step('Get emoji hash image')
|
||||
def get_emoji_hash(self) -> Image:
|
||||
return self._emoji_hash.image
|
||||
def get_emoji_hash(self) -> str:
|
||||
return str(getattr(self._emoji_hash.object, 'publicKey'))
|
||||
|
||||
@property
|
||||
@allure.step('Verify: Identicon ring visible')
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
import logging
|
||||
import os
|
||||
import pathlib
|
||||
import random
|
||||
import string
|
||||
import glob
|
||||
|
||||
import allure
|
||||
import pytest
|
||||
|
@ -73,7 +70,7 @@ def test_generate_new_keys(main_window, keys_screen, user_name: str, password, u
|
|||
details_view = profile_view.next()
|
||||
chat_key = details_view.get_chat_key
|
||||
# TODO: replace with the public key value verification
|
||||
# emoji_hash = details_view.get_emoji_hash
|
||||
emoji_hash_public_key = details_view.get_emoji_hash
|
||||
assert details_view.is_identicon_ring_visible, f'Identicon ring is not present when it should'
|
||||
details_view.back().next()
|
||||
|
||||
|
@ -99,8 +96,8 @@ def test_generate_new_keys(main_window, keys_screen, user_name: str, password, u
|
|||
assert BiometricsView().is_touch_id_button_visible(), f"TouchID button is not found"
|
||||
BiometricsView().wait_until_appears().prefer_password()
|
||||
SplashScreen().wait_until_appears().wait_until_hidden()
|
||||
#if not configs.system.TEST_MODE:
|
||||
# BetaConsentPopup().confirm()
|
||||
if not configs.system.TEST_MODE:
|
||||
BetaConsentPopup().confirm()
|
||||
|
||||
with step('Open online identifier and check the data'):
|
||||
online_identifier = main_window.left_panel.open_online_identifier()
|
||||
|
@ -110,6 +107,7 @@ def test_generate_new_keys(main_window, keys_screen, user_name: str, password, u
|
|||
f'Identicon ring is not present when it should'
|
||||
assert online_identifier.object.pubkey is not None, \
|
||||
f'Public key is not present'
|
||||
assert online_identifier.object.pubkey == emoji_hash_public_key, f'Public keys should match when they dont'
|
||||
|
||||
with step('Open user profile from online identifier and check the data'):
|
||||
profile_popup = online_identifier.open_profile_popup_from_online_identifier()
|
||||
|
@ -117,3 +115,5 @@ def test_generate_new_keys(main_window, keys_screen, user_name: str, password, u
|
|||
f'Display name in user profile is wrong, current: {profile_popup.user_name}, expected: {user_name}'
|
||||
assert profile_popup.get_chat_key_from_profile_link == chat_key, \
|
||||
f'Chat key in user profile is wrong, current: {profile_popup.get_chat_key_from_profile_link}, expected: {chat_key}'
|
||||
assert profile_popup.get_emoji_hash == emoji_hash_public_key, \
|
||||
f'Public keys should match when they dont'
|
||||
|
|
Loading…
Reference in New Issue