mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-24 04:28:58 +00:00
- Reviewed `suite_messaging/tst_ChatFlow` feature: Cleanup of duplicated steps and separation of action / validation applied. - Reviewed `suite_messaging/tst_groupChat` feature. - Added new tag to `Jenkins` file: `relyon-mailserver`. - Added new `StartupSteps` class to manage init / startup static methods outside bdd steps. It can be used as a util in `hooks` and `steps`. Closes #7931
31 lines
865 B
Python
31 lines
865 B
Python
# -*- coding: utf-8 -*-
|
|
# This file contains hook functions to run as the .feature file is executed
|
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), "../../../testSuites/global_shared/"))
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), "../../../src/"))
|
|
|
|
from steps.startupSteps import *
|
|
|
|
# Global properties for the specific feature
|
|
_user = "tester123"
|
|
_password = "TesTEr16843/!@00"
|
|
_chat_room = "test"
|
|
|
|
@OnFeatureStart
|
|
def hook(context):
|
|
context_init(context)
|
|
signs_up_process_steps(context, _user, _password)
|
|
when_the_user_joins_chat_room(_chat_room)
|
|
|
|
@OnFeatureEnd
|
|
def hook(context):
|
|
currentApplicationContext().detach()
|
|
snooze(_app_closure_timeout)
|
|
|
|
@OnScenarioStart
|
|
def hook(context):
|
|
when_the_user_opens_the_chat_section()
|
|
|
|
@OnStepEnd
|
|
def hook(context):
|
|
context.userData["step_name"] = context._data["text"] |