Beispiel #1
0
def _execute_before_scenario_hook(request, response, _socket):
    execution_info = create_execution_context_from(
        request.scenarioExecutionStartingRequest.currentExecutionInfo)
    tags = list(execution_info.scenario.tags) + list(
        execution_info.specification.tags)
    run_hook(request, response, registry.before_scenario(tags), execution_info)
    response.executionStatusResponse.executionResult.message.extend(
        MessagesStore.pending_messages())
Beispiel #2
0
def process_scenario_execution_starting_request(request):
    execution_info = create_execution_context_from(
        request.currentExecutionInfo)
    tags = list(execution_info.scenario.tags) + \
        list(execution_info.specification.tags)
    response = run_hook(request, registry.before_scenario(tags),
                        execution_info)
    _add_message_and_screenshots(response)
    return response
def _execute_before_scenario_hook(request, response, _socket):
    execution_info = create_execution_context_from(
        request.scenarioExecutionStartingRequest.currentExecutionInfo)
    tags = list(execution_info.scenario.tags) + list(
        execution_info.specification.tags)
    run_hook(request, response, registry.before_scenario(tags), execution_info)
 def test_before_scenario_decorator(self):
     funcs = registry.before_scenario(['haha', 'hehe'])
     expected = ['before_scenario1', 'before_scenario2']
     self.assertEqual(expected, [func.__name__ for func in funcs])
Beispiel #5
0
 def test_before_scenario_decorator(self):
     funcs = registry.before_scenario(['haha', 'hehe'])
     expected = ['before_scenario1', 'before_scenario2']
     self.assertEqual(expected, [func.__name__ for func in funcs])
Beispiel #6
0
def _execute_before_scenario_hook(request, response, socket):
    execution_info = create_execution_context_from(request.scenarioExecutionStartingRequest.currentExecutionInfo)
    tags = list(execution_info.scenario.tags) + list(execution_info.specification.tags)
    run_hook(request, response, registry.before_scenario(tags), execution_info)