2024-03-12 04:41:40 +00:00
|
|
|
import time
|
|
|
|
from datetime import datetime
|
|
|
|
from copy import deepcopy
|
|
|
|
|
2023-10-06 11:32:08 +00:00
|
|
|
import allure
|
|
|
|
import pytest
|
|
|
|
from allure import step
|
|
|
|
|
2024-03-12 04:41:40 +00:00
|
|
|
import configs
|
2023-10-06 11:32:08 +00:00
|
|
|
import constants
|
2024-03-12 04:41:40 +00:00
|
|
|
import driver
|
2024-07-11 10:04:32 +00:00
|
|
|
from constants import UserAccount, ColorCodes
|
2024-03-07 10:48:41 +00:00
|
|
|
from gui.components.changes_detected_popup import ChangesDetectedToastMessage
|
2023-10-06 11:32:08 +00:00
|
|
|
from gui.main_window import MainWindow
|
2023-12-13 16:16:35 +00:00
|
|
|
from . import marks
|
2023-10-06 11:32:08 +00:00
|
|
|
|
2023-12-13 16:16:35 +00:00
|
|
|
pytestmark = marks
|
2023-10-06 11:32:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703007',
|
2023-10-06 13:13:04 +00:00
|
|
|
'Change own display name from online identifier')
|
2023-10-06 11:32:08 +00:00
|
|
|
@pytest.mark.case(703007)
|
2024-03-28 11:37:24 +00:00
|
|
|
@pytest.mark.parametrize('user_account', [constants.user.user_with_random_attributes_1])
|
2023-10-06 11:32:08 +00:00
|
|
|
@pytest.mark.parametrize('new_name', [pytest.param('NewUserName')])
|
|
|
|
def test_change_own_display_name(main_screen: MainWindow, user_account, new_name):
|
|
|
|
with step('Open own profile popup and check name of user is correct'):
|
2023-12-13 08:20:56 +00:00
|
|
|
profile = main_screen.left_panel.open_online_identifier()
|
2023-12-12 15:43:22 +00:00
|
|
|
profile_popup = profile.open_profile_popup_from_online_identifier()
|
2023-10-06 11:32:08 +00:00
|
|
|
assert profile_popup.user_name == user_account.name
|
|
|
|
|
|
|
|
with step('Go to edit profile settings and change the name of the user'):
|
|
|
|
profile_popup.edit_profile().set_name(new_name)
|
2024-03-07 10:48:41 +00:00
|
|
|
ChangesDetectedToastMessage().click_save_changes_button()
|
2024-03-15 07:28:40 +00:00
|
|
|
assert ChangesDetectedToastMessage().is_visible is False, f'Changes detected popup is not hidden when save changes button clicked'
|
2023-10-06 11:32:08 +00:00
|
|
|
|
|
|
|
with step('Open own profile popup and check name of user is correct'):
|
2023-12-13 08:20:56 +00:00
|
|
|
assert main_screen.left_panel.open_online_identifier().open_profile_popup_from_online_identifier().user_name == new_name
|
2023-10-06 11:32:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703002', 'Switch state to offline')
|
2024-03-12 04:41:40 +00:00
|
|
|
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703003', 'Switch state to online')
|
2023-10-06 11:32:08 +00:00
|
|
|
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703004', 'Switch state to automatic')
|
2024-03-12 04:41:40 +00:00
|
|
|
@pytest.mark.case(703002, 703003, 703004)
|
2024-06-28 05:26:36 +00:00
|
|
|
@pytest.mark.parametrize('user_data_one, user_data_two', [
|
|
|
|
(configs.testpath.TEST_USER_DATA / 'squisher', configs.testpath.TEST_USER_DATA / 'athletic')
|
|
|
|
])
|
|
|
|
def test_switch_state_to_offline_online_automatic(multiple_instances, user_data_one, user_data_two):
|
|
|
|
user_one: UserAccount = constants.user_account_one
|
|
|
|
user_two: UserAccount = constants.user_account_two
|
2024-03-12 04:41:40 +00:00
|
|
|
main_screen = MainWindow()
|
|
|
|
|
2024-07-11 10:04:32 +00:00
|
|
|
with (multiple_instances(user_data=user_data_one) as aut_one, multiple_instances(
|
|
|
|
user_data=user_data_two) as aut_two):
|
2024-03-12 04:41:40 +00:00
|
|
|
with step(f'Launch multiple instances with authorized users {user_one.name} and {user_two.name}'):
|
|
|
|
for aut, account in zip([aut_one, aut_two], [user_one, user_two]):
|
|
|
|
aut.attach()
|
|
|
|
main_screen.wait_until_appears(configs.timeouts.APP_LOAD_TIMEOUT_MSEC).prepare()
|
|
|
|
main_screen.authorize_user(account)
|
|
|
|
main_screen.hide()
|
|
|
|
|
|
|
|
with step(f'User {user_two.name}, switch state to offline'):
|
|
|
|
aut_two.attach()
|
|
|
|
main_screen.prepare()
|
2024-06-28 05:26:36 +00:00
|
|
|
main_screen.left_panel.set_user_to_offline()
|
2024-03-12 04:41:40 +00:00
|
|
|
main_screen.hide()
|
|
|
|
|
|
|
|
with step(f'User {user_one.name}, sees {user_two.name} as offline'):
|
|
|
|
aut_one.attach()
|
|
|
|
main_screen.prepare()
|
2024-06-28 05:26:36 +00:00
|
|
|
community_screen = main_screen.left_panel.select_community('Community with 2 users')
|
2024-07-11 10:04:32 +00:00
|
|
|
time.sleep(2)
|
|
|
|
assert driver.waitFor(
|
|
|
|
lambda: community_screen.right_panel.member_state(user_two.name) == ColorCodes.GRAY.value,
|
|
|
|
configs.timeouts.UI_LOAD_TIMEOUT_MSEC), f'Actual state is {community_screen.right_panel.member_state(user_two.name)}'
|
2024-03-12 04:41:40 +00:00
|
|
|
main_screen.hide()
|
|
|
|
|
|
|
|
with step(f'User {user_two.name}, switch state to online'):
|
|
|
|
aut_two.attach()
|
|
|
|
main_screen.prepare()
|
2024-06-28 05:26:36 +00:00
|
|
|
main_screen.left_panel.set_user_to_online()
|
2024-03-12 04:41:40 +00:00
|
|
|
main_screen.hide()
|
|
|
|
|
|
|
|
with step(f'User {user_one.name}, sees {user_two.name} as online'):
|
|
|
|
aut_one.attach()
|
|
|
|
main_screen.prepare()
|
|
|
|
time.sleep(2)
|
2024-07-11 10:04:32 +00:00
|
|
|
assert driver.waitFor(
|
|
|
|
lambda: community_screen.right_panel.member_state(user_two.name) == ColorCodes.GREEN.value,
|
|
|
|
configs.timeouts.UI_LOAD_TIMEOUT_MSEC), f'Actual state is {community_screen.right_panel.member_state(user_two.name)}'
|
2024-03-12 04:41:40 +00:00
|
|
|
main_screen.hide()
|
|
|
|
|
|
|
|
with step(f'User {user_two.name}, switch state to automatic'):
|
|
|
|
aut_two.attach()
|
|
|
|
main_screen.prepare()
|
|
|
|
settings = main_screen.left_panel
|
|
|
|
settings.set_user_to_automatic()
|
|
|
|
|
|
|
|
with step('Verify user status set automatically to online'):
|
|
|
|
assert settings.user_is_online()
|
|
|
|
main_screen.hide()
|
|
|
|
|
|
|
|
with step(f'User {user_one.name}, sees {user_two.name} as online'):
|
|
|
|
aut_one.attach()
|
|
|
|
main_screen.prepare()
|
2024-07-11 10:04:32 +00:00
|
|
|
assert driver.waitFor(
|
|
|
|
lambda: community_screen.right_panel.member_state(user_two.name) == ColorCodes.GREEN.value,
|
|
|
|
configs.timeouts.UI_LOAD_TIMEOUT_MSEC), f'Actual state is {community_screen.right_panel.member_state(user_two.name)}'
|
2024-03-12 04:41:40 +00:00
|
|
|
main_screen.hide()
|