devtools/cwwindmill.py
changeset 7061 bb2080547722
parent 7059 1d65b235549f
parent 7052 9680cf108821
child 7075 4751d77394b1
--- a/devtools/cwwindmill.py	Fri Feb 18 15:26:00 2011 +0100
+++ b/devtools/cwwindmill.py	Tue Mar 08 18:32:19 2011 +0100
@@ -29,120 +29,133 @@
 import sys
 
 # imported by default to simplify further import statements
-from logilab.common.testlib import TestCase, unittest_main
+from logilab.common.testlib import TestCase, unittest_main, Tags
 
-import windmill
-from windmill.dep import functest
-from windmill.bin.admin_lib import configure_global_settings, setup, teardown
+try:
+    import windmill
+    from windmill.dep import functest
+    from windmill.bin.admin_lib import configure_global_settings, setup, teardown
+except ImportError, ex:
+    windmill = None
 
 from cubicweb.devtools.httptest import CubicWebServerTC, CubicWebServerConfig
 
+if windmill is None:
+    class CubicWebWindmillUseCase(CubicWebServerTC):
+        tags = CubicWebServerTC.tags & Tags(('windmill',))
 
-# Excerpt from :ref:`windmill.authoring.unit`
-class UnitTestReporter(functest.reports.FunctestReportInterface):
-    def summary(self, test_list, totals_dict, stdout_capture):
-        self.test_list = test_list
-
-unittestreporter = UnitTestReporter()
-functest.reports.register_reporter(unittestreporter)
+        def testWindmill(self):
+            self.skipTest("can't import windmill %s" % ex)
+else:
+    # Excerpt from :ref:`windmill.authoring.unit`
+    class UnitTestReporter(functest.reports.FunctestReportInterface):
+        def summary(self, test_list, totals_dict, stdout_capture):
+            self.test_list = test_list
 
-class CubicWebWindmillUseCase(CubicWebServerTC):
-    """basic class for Windmill use case tests
+    unittestreporter = UnitTestReporter()
+    functest.reports.register_reporter(unittestreporter)
+
+    class CubicWebWindmillUseCase(CubicWebServerTC):
+        """basic class for Windmill use case tests
 
-    If you want to change cubicweb test server parameters, define a new
-    :class:`CubicWebServerConfig` and override the :var:`configcls`
-    attribute:
+        If you want to change cubicweb test server parameters, define a new
+        :class:`CubicWebServerConfig` and override the :var:`configcls`
+        attribute:
 
-        configcls = CubicWebServerConfig
+            configcls = CubicWebServerConfig
 
-    From Windmill configuration:
+        From Windmill configuration:
 
-    .. attribute:: browser
-        identification string (firefox|ie|safari|chrome) (firefox by default)
-    .. attribute :: edit_test
-        load and edit test for debugging (False by default)
-    .. attribute:: test_dir (optional)
-        testing file path or directory (windmill directory under your unit case
-        file by default)
+        .. attribute:: browser
+            identification string (firefox|ie|safari|chrome) (firefox by default)
+        .. attribute :: edit_test
+            load and edit test for debugging (False by default)
+        .. attribute:: test_dir (optional)
+            testing file path or directory (windmill directory under your unit case
+            file by default)
+
+        Examples:
 
-    Examples:
+            browser = 'firefox'
+            test_dir = osp.join(__file__, 'windmill')
+            edit_test = False
 
+        If you prefer, you can put here the use cases recorded by windmill GUI
+        (services transformer) instead of the windmill sub-directory
+        You can change `test_dir` as following:
+
+            test_dir = __file__
+
+        Instead of toggle `edit_test` value, try `python <test script> -f`
+        """
         browser = 'firefox'
-        test_dir = osp.join(__file__, 'windmill')
-        edit_test = False
-
-    If you prefer, you can put here the use cases recorded by windmill GUI
-    (services transformer) instead of the windmill sub-directory
-    You can change `test_dir` as following:
+<<<<<<< /home/syt/src/fcubicweb/cubicweb/devtools/cwwindmill.py
 
-        test_dir = __file__
+        edit_test = "-i" in sys.argv # detection for pytest invocation
+        # Windmill use case are written with no anonymous user
+        anonymous_logged = False
 
-    Instead of toggle `edit_test` value, try `python <test script> -f`
-    """
-    browser = 'firefox'
-    edit_test = "-f" in sys.argv or "-i" in sys.argv # XXX pytest
-    # Windmill use case are written with no anonymous user
-    anonymous_logged = False
+        tags = CubicWebServerTC.tags & Tags(('windmill',))
 
-    def _test_dir(self):
-        """access to class attribute if possible or make assumption
-        of expected directory"""
-        try:
-            return getattr(self, 'test_dir')
-        except AttributeError:
-            if os.path.basename(sys.argv[0]) == "pytest":
-                test_dir = os.getcwd()
-            else:
-                import inspect
-                test_dir = os.path.dirname(inspect.stack()[-1][1])
-            return osp.join(test_dir, 'windmill')
+        def _test_dir(self):
+            """access to class attribute if possible or make assumption
+            of expected directory"""
+            try:
+                return getattr(self, 'test_dir')
+            except AttributeError:
+                if os.path.basename(sys.argv[0]) == "pytest":
+                    test_dir = os.getcwd()
+                else:
+                    import inspect
+                    test_dir = os.path.dirname(inspect.stack()[-1][1])
+                return osp.join(test_dir, 'windmill')
 
-    def setUp(self):
-        # Start CubicWeb session before running the server to populate self.vreg
-        super(CubicWebWindmillUseCase, self).setUp()
-        # XXX reduce log output (should be done in a cleaner way)
-        # windmill fu** up our logging configuration
-        for logkey in ('windmill', 'logilab', 'cubicweb'):
-            getLogger(logkey).setLevel(ERROR)
-        self.test_dir = self._test_dir()
-        msg = "provide a valid 'test_dir' as the given test file/dir (current: %s)"
-        assert os.path.exists(self.test_dir), (msg % self.test_dir)
-        # windmill setup
-        windmill.stdout, windmill.stdin = sys.stdout, sys.stdin
-        configure_global_settings()
-        windmill.settings['TEST_URL'] = self.config['base-url']
-        if hasattr(self,"windmill_settings"):
-            for (setting,value) in self.windmill_settings.iteritems():
-                windmill.settings[setting] = value
-        self.windmill_shell_objects = setup()
+        def setUp(self):
+            # Start CubicWeb session before running the server to populate self.vreg
+            CubicWebServerTC.setUp(self)
+            # XXX reduce log output (should be done in a cleaner way)
+            # windmill fu** up our logging configuration
+            for logkey in ('windmill', 'logilab', 'cubicweb'):
+                getLogger(logkey).setLevel(ERROR)
+            self.test_dir = self._test_dir()
+            msg = "provide a valid 'test_dir' as the given test file/dir (current: %s)"
+            assert os.path.exists(self.test_dir), (msg % self.test_dir)
+            # windmill setup
+            windmill.stdout, windmill.stdin = sys.stdout, sys.stdin
+            configure_global_settings()
+            windmill.settings['TEST_URL'] = self.config['base-url']
+            if hasattr(self,"windmill_settings"):
+                for (setting,value) in self.windmill_settings.iteritems():
+                    windmill.settings[setting] = value
+            self.windmill_shell_objects = setup()
 
-    def tearDown(self):
-        teardown(self.windmill_shell_objects)
-        super(CubicWebWindmillUseCase, self).tearDown()
+        def tearDown(self):
+            teardown(self.windmill_shell_objects)
+            CubicWebServerTC.tearDown(self)
 
-    def testWindmill(self):
-        if self.edit_test:
-            # see windmill.bin.admin_options.Firebug
-            windmill.settings['INSTALL_FIREBUG'] = 'firebug'
-            windmill.settings.setdefault('MOZILLA_PLUGINS', []).extend(
-                ['/usr/share/mozilla-extensions/',
-                 '/usr/share/xul-ext/'])
-        controller = self.windmill_shell_objects['start_' + self.browser]()
-        self.windmill_shell_objects['do_test'](self.test_dir,
-                                               load=self.edit_test,
-                                               threaded=False)
-        # set a breakpoint to be able to debug windmill test
-        if self.edit_test:
-            import pdb; pdb.set_trace()
-            return
+        def testWindmill(self):
+            if self.edit_test:
+                # see windmill.bin.admin_options.Firebug
+                windmill.settings['INSTALL_FIREBUG'] = 'firebug'
+                windmill.settings.setdefault('MOZILLA_PLUGINS', []).extend(
+                    ['/usr/share/mozilla-extensions/',
+                     '/usr/share/xul-ext/'])
+            controller = self.windmill_shell_objects['start_' + self.browser]()
+            self.windmill_shell_objects['do_test'](self.test_dir,
+                                                   load=self.edit_test,
+                                                   threaded=False)
+            # set a breakpoint to be able to debug windmill test
+            if self.edit_test:
+                import pdb; pdb.set_trace()
+                return
 
-        # reporter
-        for test in unittestreporter.test_list:
-            msg = ""
-            self._testMethodDoc = getattr(test, "__doc__", None)
-            self._testMethodName = test.__name__
-            # try to display a better message in case of failure
-            if hasattr(test, "tb"):
-                msg = '\n'.join(test.tb)
-            self.assertEqual(test.result, True, msg=msg)
+            # reporter
+            for test in unittestreporter.test_list:
+                msg = ""
+                self._testMethodDoc = getattr(test, "__doc__", None)
+                self._testMethodName = test.__name__
+                # try to display a better message in case of failure
+                if hasattr(test, "tb"):
+                    msg = '\n'.join(test.tb)
+                self.assertEqual(test.result, True, msg=msg)