summaryrefslogtreecommitdiff
path: root/tests/environment.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/environment.py')
-rw-r--r--tests/environment.py47
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/environment.py b/tests/environment.py
new file mode 100644
index 00000000..08dc06db
--- /dev/null
+++ b/tests/environment.py
@@ -0,0 +1,47 @@
+# -*- coding: UTF-8 -*-
+
+from time import sleep
+from dogtail.utils import isA11yEnabled, enableA11y
+if not isA11yEnabled():
+ enableA11y(True)
+
+from common_steps import App, cleanup
+from dogtail.config import config
+
+
+def before_all(context):
+ """Setup eog stuff
+ Being executed before all features
+ """
+
+ try:
+ # Skip dogtail actions to print to stdout
+ config.logDebugToStdOut = False
+ config.typingDelay = 0.2
+
+ context.app_class = App('eog')
+
+ except Exception as e:
+ print("Error in before_all: %s" % e.message)
+
+def before_scenario(context, scenario):
+ """ Cleanup previous settings and make sure we have test files in /tmp """
+ try:
+ cleanup()
+ except Exception as e:
+ print("Error in before_scenario: %s" % e.message)
+
+
+def after_scenario(context, scenario):
+ """Teardown for each scenario
+ Kill eog (in order to make this reliable we send sigkill)
+ """
+ try:
+ # Stop gnome-calculator
+ context.app_class.kill()
+
+ # Make some pause after scenario
+ sleep(1)
+ except Exception as e:
+ # Stupid behave simply crashes in case exception has occurred
+ print("Error in after_scenario: %s" % e.message)