2023-08-04 18:27:03 +00:00
|
|
|
import allure
|
2023-09-11 18:24:13 +00:00
|
|
|
import pyperclip
|
2023-08-04 18:27:03 +00:00
|
|
|
|
|
|
|
import constants
|
|
|
|
import driver
|
|
|
|
from gui.components.base_popup import BasePopup
|
2023-10-06 08:33:42 +00:00
|
|
|
from gui.elements.button import Button
|
|
|
|
from gui.elements.object import QObject
|
|
|
|
from gui.elements.text_label import TextLabel
|
2024-02-13 09:04:24 +00:00
|
|
|
from gui.objects_map import names
|
2023-10-13 15:55:44 +00:00
|
|
|
from gui.screens.settings_profile import ProfileSettingsView
|
2023-08-04 18:27:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ProfilePopup(BasePopup):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super(ProfilePopup, self).__init__()
|
2024-02-13 09:04:24 +00:00
|
|
|
self._profile_image = QObject(names.ProfileHeader_userImage)
|
|
|
|
self._user_name_label = TextLabel(names.ProfilePopup_displayName)
|
|
|
|
self._edit_profile_button = Button(names.ProfilePopup_editButton)
|
|
|
|
self._chat_key_text_label = TextLabel(names.https_status_app_StatusBaseText)
|
|
|
|
self._emoji_hash = QObject(names.profileDialog_userEmojiHash_EmojiHash)
|
|
|
|
self._chat_key_copy_button = Button(names.copy_icon_CopyButton)
|
2023-08-04 18:27:03 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
@allure.step('Get profile image')
|
|
|
|
def profile_image(self):
|
|
|
|
return self._profile_image.image
|
|
|
|
|
|
|
|
@property
|
|
|
|
@allure.step('Get image without identicon_ring')
|
|
|
|
def cropped_profile_image(self):
|
|
|
|
# Profile image without identicon_ring
|
|
|
|
self._profile_image.image.update_view()
|
|
|
|
self._profile_image.image.crop(
|
|
|
|
driver.UiTypes.ScreenRectangle(
|
2023-10-09 17:04:29 +00:00
|
|
|
15, 15, self._profile_image.image.width - 30, self._profile_image.image.height - 30
|
2023-08-04 18:27:03 +00:00
|
|
|
))
|
|
|
|
return self._profile_image.image
|
|
|
|
|
|
|
|
@property
|
|
|
|
@allure.step('Get user name')
|
|
|
|
def user_name(self) -> str:
|
|
|
|
return self._user_name_label.text
|
|
|
|
|
|
|
|
@property
|
|
|
|
@allure.step('Get chat key')
|
2023-12-20 15:19:13 +00:00
|
|
|
def get_chat_key_from_profile_link(self) -> str:
|
2023-08-04 18:27:03 +00:00
|
|
|
chat_key = self._chat_key_text_label.text.split('https://status.app/u/')[1].strip()
|
|
|
|
if '#' in chat_key:
|
|
|
|
chat_key = chat_key.split('#')[1]
|
|
|
|
return chat_key
|
|
|
|
|
|
|
|
@property
|
|
|
|
@allure.step('Get emoji hash image')
|
2023-12-21 18:14:17 +00:00
|
|
|
def get_emoji_hash(self) -> str:
|
|
|
|
return str(getattr(self._emoji_hash.object, 'publicKey'))
|
2023-08-04 18:27:03 +00:00
|
|
|
|
2023-09-11 18:24:13 +00:00
|
|
|
@property
|
2023-12-20 15:19:13 +00:00
|
|
|
@allure.step('Copy chat key')
|
|
|
|
def copy_chat_key(self) -> str:
|
2023-09-11 18:24:13 +00:00
|
|
|
self._chat_key_copy_button.click()
|
|
|
|
return pyperclip.paste()
|
|
|
|
|
2023-08-04 18:27:03 +00:00
|
|
|
@allure.step('Verify: user image contains text')
|
|
|
|
def is_user_image_contains(self, text: str):
|
|
|
|
# To remove all artifacts, the image cropped.
|
|
|
|
crop = driver.UiTypes.ScreenRectangle(
|
|
|
|
15, 15, self._profile_image.image.width - 30, self._profile_image.image.height - 30
|
|
|
|
)
|
|
|
|
return self.profile_image.has_text(text, constants.tesseract.text_on_profile_image, crop=crop)
|
2023-09-20 11:35:56 +00:00
|
|
|
|
|
|
|
@allure.step('Click edit profile button')
|
|
|
|
def edit_profile(self):
|
|
|
|
self._edit_profile_button.click()
|
|
|
|
return ProfileSettingsView()
|