2023-08-29 14:43:00 +00:00
|
|
|
from datetime import datetime
|
|
|
|
|
|
|
|
import allure
|
|
|
|
import pytest
|
|
|
|
from allure_commons._allure import step
|
2023-12-07 16:47:34 +00:00
|
|
|
from . import marks
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
import configs.testpath
|
2023-09-11 18:24:13 +00:00
|
|
|
import constants
|
2023-08-29 14:43:00 +00:00
|
|
|
from gui.main_window import MainWindow
|
|
|
|
|
2023-12-07 16:47:34 +00:00
|
|
|
pytestmark = marks
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703084', 'Create community')
|
|
|
|
@pytest.mark.case(703084)
|
2023-09-11 18:24:13 +00:00
|
|
|
@pytest.mark.parametrize('params', [constants.community_params])
|
2023-09-04 18:36:48 +00:00
|
|
|
def test_create_community(user_account, main_screen: MainWindow, params):
|
2023-08-29 14:43:00 +00:00
|
|
|
with step('Create community'):
|
|
|
|
communities_portal = main_screen.left_panel.open_communities_portal()
|
|
|
|
create_community_form = communities_portal.open_create_community_popup()
|
2023-09-04 18:36:48 +00:00
|
|
|
community_screen = create_community_form.create(params)
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
with step('Verify community parameters in community overview'):
|
|
|
|
with step('Name is correct'):
|
2023-09-04 18:36:48 +00:00
|
|
|
assert community_screen.left_panel.name == params['name']
|
2023-08-29 14:43:00 +00:00
|
|
|
with step('Members count is correct'):
|
|
|
|
assert '1' in community_screen.left_panel.members
|
|
|
|
|
|
|
|
with step('Verify community parameters in community settings view'):
|
|
|
|
community_setting = community_screen.left_panel.open_community_settings()
|
|
|
|
overview_setting = community_setting.left_panel.open_overview()
|
|
|
|
with step('Name is correct'):
|
2023-09-04 18:36:48 +00:00
|
|
|
assert overview_setting.name == params['name']
|
2023-08-29 14:43:00 +00:00
|
|
|
with step('Description is correct'):
|
2023-09-04 18:36:48 +00:00
|
|
|
assert overview_setting.description == params['description']
|
2023-08-29 14:43:00 +00:00
|
|
|
with step('Members count is correct'):
|
|
|
|
members_settings = community_setting.left_panel.open_members()
|
|
|
|
assert user_account.name in members_settings.members
|
|
|
|
|
|
|
|
with step('Verify community parameters in community settings screen'):
|
|
|
|
settings_screen = main_screen.left_panel.open_settings()
|
2023-09-11 18:24:13 +00:00
|
|
|
community_settings = settings_screen.left_panel.open_communities_settings()
|
2023-09-04 18:36:48 +00:00
|
|
|
community = community_settings.get_community_info(params['name'])
|
|
|
|
assert community.name == params['name']
|
|
|
|
assert community.description == params['description']
|
2023-10-25 12:38:48 +00:00
|
|
|
# assert '1' in community.members TODO: Test on linux, members label is not visible
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703056', 'Edit community separately')
|
|
|
|
@pytest.mark.case(703056)
|
2023-09-04 18:36:48 +00:00
|
|
|
@pytest.mark.parametrize('community_params', [
|
2023-09-11 18:24:13 +00:00
|
|
|
{
|
|
|
|
'name': f'Name_{datetime.now():%H%M%S}',
|
|
|
|
'description': f'Description_{datetime.now():%H%M%S}',
|
|
|
|
'color': '#ff7d46',
|
|
|
|
},
|
2023-09-04 18:36:48 +00:00
|
|
|
])
|
2023-09-11 18:24:13 +00:00
|
|
|
def test_edit_community_separately(main_screen, community_params):
|
|
|
|
main_screen.create_community(constants.community_params)
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
with step('Edit community name'):
|
2023-09-11 18:24:13 +00:00
|
|
|
community_screen = main_screen.left_panel.select_community(constants.community_params['name'])
|
2023-08-29 14:43:00 +00:00
|
|
|
community_setting = community_screen.left_panel.open_community_settings()
|
|
|
|
edit_community_form = community_setting.left_panel.open_overview().open_edit_community_view()
|
2023-09-04 18:36:48 +00:00
|
|
|
edit_community_form.edit({'name': community_params['name']})
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
with step('Name is correct'):
|
|
|
|
overview_setting = community_setting.left_panel.open_overview()
|
2023-09-04 18:36:48 +00:00
|
|
|
assert overview_setting.name == community_params['name']
|
2023-08-29 14:43:00 +00:00
|
|
|
with step('Description is correct'):
|
2023-09-11 18:24:13 +00:00
|
|
|
assert overview_setting.description == constants.community_params['description']
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
with step('Edit community name'):
|
|
|
|
edit_community_form = overview_setting.open_edit_community_view()
|
2023-09-04 18:36:48 +00:00
|
|
|
edit_community_form.edit({'description': community_params['description']})
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
with step('Name is correct'):
|
|
|
|
overview_setting = community_setting.left_panel.open_overview()
|
2023-09-04 18:36:48 +00:00
|
|
|
assert overview_setting.name == community_params['name']
|
2023-08-29 14:43:00 +00:00
|
|
|
with step('Description is correct'):
|
2023-09-04 18:36:48 +00:00
|
|
|
assert overview_setting.description == community_params['description']
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703057', 'Edit community')
|
|
|
|
@pytest.mark.case(703057)
|
2023-09-04 18:36:48 +00:00
|
|
|
@pytest.mark.parametrize('params', [
|
2023-10-09 17:04:29 +00:00
|
|
|
{
|
|
|
|
'name': 'Updated Name',
|
|
|
|
'description': 'Updated Description',
|
|
|
|
'logo': {'fp': configs.testpath.TEST_FILES / 'banner.png', 'zoom': None, 'shift': None},
|
|
|
|
'banner': {'fp': configs.testpath.TEST_FILES / 'tv_signal.png', 'zoom': None, 'shift': None},
|
|
|
|
'color': '#ff7d46',
|
|
|
|
'tags': ['Ethereum'],
|
|
|
|
'intro': 'Updated Intro',
|
|
|
|
'outro': 'Updated Outro'
|
|
|
|
}
|
2023-09-04 18:36:48 +00:00
|
|
|
])
|
2023-09-11 18:24:13 +00:00
|
|
|
def test_edit_community(main_screen: MainWindow, params):
|
|
|
|
main_screen.create_community(constants.community_params)
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
with step('Edit community'):
|
2023-09-11 18:24:13 +00:00
|
|
|
community_screen = main_screen.left_panel.select_community(constants.community_params['name'])
|
2023-08-29 14:43:00 +00:00
|
|
|
community_setting = community_screen.left_panel.open_community_settings()
|
|
|
|
edit_community_form = community_setting.left_panel.open_overview().open_edit_community_view()
|
2023-09-04 18:36:48 +00:00
|
|
|
edit_community_form.edit(params)
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
with step('Verify community parameters on settings overview'):
|
|
|
|
overview_setting = community_setting.left_panel.open_overview()
|
|
|
|
with step('Name is correct'):
|
2023-09-04 18:36:48 +00:00
|
|
|
assert overview_setting.name == params['name']
|
2023-08-29 14:43:00 +00:00
|
|
|
with step('Description is correct'):
|
2023-09-04 18:36:48 +00:00
|
|
|
assert overview_setting.description == params['description']
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
with step('Verify community parameters in community screen'):
|
|
|
|
community_setting.left_panel.back_to_community()
|
|
|
|
with step('Name is correct'):
|
2023-09-04 18:36:48 +00:00
|
|
|
assert community_screen.left_panel.name == params['name']
|
2023-08-29 14:43:00 +00:00
|
|
|
|
|
|
|
with step('Verify community parameters in community settings screen'):
|
|
|
|
settings_screen = main_screen.left_panel.open_settings()
|
2023-09-11 18:24:13 +00:00
|
|
|
community_settings = settings_screen.left_panel.open_communities_settings()
|
2023-09-04 18:36:48 +00:00
|
|
|
community_info = community_settings.communities[0]
|
|
|
|
assert community_info.name == params['name']
|
|
|
|
assert community_info.description == params['description']
|
2023-12-08 07:20:15 +00:00
|
|
|
# TODO after https://github.com/status-im/status-desktop/issues/12967 will be fixed
|
|
|
|
# assert '1' in community_info.members
|