Salome HOME
093e6b4ee5be68db529e1441ef571bbd620c2a81
[modules/shaper.git] / test.squish / suite_FEATURE_PARAMETERS / shared / scripts / bdd_hooks.py
1 # Copyright (C) 2014-2023  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # This file contains hook functions to run as the .feature file is executed.
21 #
22 # A common use-case is to use the OnScenarioStart/OnScenarioEnd hooks to
23 # start and stop an AUT, e.g.
24 #
25 # @OnScenarioStart
26 # def hook(context):
27 #     startApplication("addressbook")
28 #
29 # @OnScenarioEnd
30 # def hook(context):
31 #     currentApplicationContext().detach()
32 #
33 # See the section 'Performing Actions During Test Execution Via Hooks' in the Squish
34 # manual for a complete reference of the available API.
35
36 import builtins
37
38 # Detach (i.e. potentially terminate) all AUTs at the end of a scenario
39 @OnScenarioEnd
40 def hook(context):
41     source(findFile("scripts", "common.py"))
42     close_application()
43
44     for ctx in applicationContextList():
45         ctx.detach()
46