예제 #1
0
 def test_runner_cms_exception(self):
     try:
         import cms
         raise unittest.SkipTest('django CMS available, skipping test')
     except ImportError:
         pass
     from djangocms_helper.test_utils.runners import CapturedOutputRunner
     with patch('django.test.runner.DiscoverRunner', CapturedOutputRunner):
         with work_in(self.basedir):
             with captured_output() as (out, err):
                 with self.assertRaises(ImportError) as exit:
                     args = list()
                     args.append('djangocms_helper')
                     runner.cms('example1', args)
예제 #2
0
 def test_runner_cms_exception(self):
     try:
         import cms
         raise unittest.SkipTest('django CMS available, skipping test')
     except ImportError:
         pass
     from djangocms_helper.test_utils.runners import CapturedOutputRunner
     with patch('django.test.runner.DiscoverRunner', CapturedOutputRunner):
         with work_in(self.basedir):
             with captured_output() as (out, err):
                 with self.assertRaises(ImportError) as exit:
                     args = list()
                     args.append('djangocms_helper')
                     runner.cms('example1', args)
예제 #3
0
 def test_runner(self):
     try:
         import cms
     except ImportError:
         raise unittest.SkipTest('django CMS not available, skipping test')
     with work_in(self.basedir):
         with captured_output() as (out, err):
             with self.assertRaises(SystemExit) as exit:
                 args = list()
                 args.append('djangocms_helper')
                 args.append('example1')
                 args.append('test')
                 args.append('--runner=runners.CapturedOutputRunner')
                 runner.cms('example1', args)
     self.assertTrue('Ran 6 tests in' in err.getvalue())
     self.assertEqual(exit.exception.code, 0)
예제 #4
0
 def test_runner(self):
     try:
         import cms
     except ImportError:
         raise unittest.SkipTest('django CMS not available, skipping test')
     with work_in(self.basedir):
         with captured_output() as (out, err):
             with self.assertRaises(SystemExit) as exit:
                 args = list()
                 args.append('djangocms_helper')
                 args.append('example1')
                 args.append('test')
                 args.append('--runner=runners.CapturedOutputRunner')
                 runner.cms('example1', args)
     self.assertTrue('Ran 6 tests in' in err.getvalue())
     self.assertEqual(exit.exception.code, 0)
예제 #5
0
 def test_runner_simple(self):
     try:
         import cms
     except ImportError:
         raise unittest.SkipTest('django CMS not available, skipping test')
     from djangocms_helper.test_utils.runners import CapturedOutputSimpleRunner
     with patch('django.test.simple.DjangoTestSuiteRunner', CapturedOutputSimpleRunner):
         with work_in(self.basedir):
             with captured_output() as (out, err):
                 with self.assertRaises(SystemExit) as exit:
                     args = list()
                     args.append('djangocms_helper')
                     args.append('test')
                     args.append('example1')
                     args.append('--simple-runner')
                     args.append('example1.FakeTests')
                     runner.cms('example1', args)
     self.assertTrue('Ran 12 tests in' in err.getvalue())
     self.assertEqual(exit.exception.code, 0)
예제 #6
0
 def test_runner(self):
     try:
         import cms
     except ImportError:
         raise unittest.SkipTest('django CMS not available, skipping test')
     from djangocms_helper.test_utils.runners import CapturedOutputRunner
     with patch('django.test.runner.DiscoverRunner', CapturedOutputRunner):
         with work_in(self.basedir):
             with captured_output() as (out, err):
                 with self.assertRaises(SystemExit) as exit:
                     args = list()
                     args.append('djangocms_helper')
                     args.append('test')
                     args.append('example1')
                     runner.cms('example1', args)
     self.assertTrue('visible string' in out.getvalue())
     self.assertFalse('hidden string' in out.getvalue())
     self.assertFalse('hidden string' in err.getvalue())
     self.assertTrue('Ran 12 tests in' in err.getvalue())
     self.assertEqual(exit.exception.code, 0)
예제 #7
0
 def test_runner_simple(self):
     try:
         import cms
     except ImportError:
         raise unittest.SkipTest('django CMS not available, skipping test')
     from djangocms_helper.test_utils.runners import CapturedOutputSimpleRunner
     with patch('django.test.simple.DjangoTestSuiteRunner',
                CapturedOutputSimpleRunner):
         with work_in(self.basedir):
             with captured_output() as (out, err):
                 with self.assertRaises(SystemExit) as exit:
                     args = list()
                     args.append('djangocms_helper')
                     args.append('test')
                     args.append('example1')
                     args.append('--simple-runner')
                     args.append('example1.FakeTests')
                     runner.cms('example1', args)
     self.assertTrue('Ran 12 tests in' in err.getvalue())
     self.assertEqual(exit.exception.code, 0)
예제 #8
0
 def test_runner_wrong(self):
     try:
         import cms
     except ImportError:
         raise unittest.SkipTest('django CMS not available, skipping test')
     with work_in(self.basedir):
         if sys.version_info < (3, 5):
             exception = ImportError
         else:
             exception = SystemExit
         with captured_output() as (out, err):
             with self.assertRaises(exception) as exit:
                 args = list()
                 args.append('djangocms_helper')
                 args.append('test')
                 args.append('example1')
                 args.append('--runner=runners.CapturedOutputRunner')
                 args.append('whatever')
                 runner.cms('example1', args)
     if sys.version_info >= (3, 5):
         self.assertEqual(exit.exception.code, 1)
예제 #9
0
 def test_runner_wrong(self):
     try:
         import cms
     except ImportError:
         raise unittest.SkipTest('django CMS not available, skipping test')
     with work_in(self.basedir):
         with captured_output():
             if sys.version_info < (3, 5):
                 exception = ImportError
             else:
                 exception = SystemExit
             with self.assertRaises(exception) as exit:
                 args = list()
                 args.append('djangocms_helper')
                 args.append('test')
                 args.append('example1')
                 args.append('--runner=runners.CapturedOutputRunner')
                 args.append('whatever')
                 runner.cms('example1', args)
     if sys.version_info >= (3, 5):
         self.assertEqual(exit.exception.code, 1)
예제 #10
0
 def test_runner(self):
     try:
         import cms
     except ImportError:
         raise unittest.SkipTest('django CMS not available, skipping test')
     from djangocms_helper.test_utils.runners import CapturedOutputRunner
     with patch('django.test.runner.DiscoverRunner', CapturedOutputRunner):
         with work_in(self.basedir):
             with captured_output() as (out, err):
                 with self.assertRaises(SystemExit) as exit:
                     args = list()
                     args.append('djangocms_helper')
                     args.append('test')
                     args.append('--extra-settings=cms_helper.py')
                     args.append('example1')
                     runner.cms('example1', args)
     self.assertTrue('visible string' in out.getvalue())
     self.assertFalse('hidden string' in out.getvalue())
     self.assertFalse('hidden string' in err.getvalue())
     self.assertTrue('Ran 14 tests in' in err.getvalue())
     self.assertEqual(exit.exception.code, 0)
예제 #11
0
    def test_runner_cms_argv(self):
        try:
            import cms
        except ImportError:
            raise unittest.SkipTest('django CMS not available, skipping test')

        def fake_runner(argv):
            return argv

        from djangocms_helper.test_utils.runners import CapturedOutputRunner
        with patch('django.test.runner.DiscoverRunner', CapturedOutputRunner):
            with work_in(self.basedir):
                with captured_output() as (out, err):
                    args = list()
                    args.append('djangocms_helper')
                    with patch('djangocms_helper.runner.runner', fake_runner):
                        data = runner.cms('example1', args)
                    self.assertEqual(data, ['djangocms_helper', 'example1', 'test', '--cms'])
예제 #12
0
    def test_runner_cms_argv(self):
        try:
            import cms
        except ImportError:
            raise unittest.SkipTest('django CMS not available, skipping test')

        def fake_runner(argv):
            return argv

        from djangocms_helper.test_utils.runners import CapturedOutputRunner
        with patch('django.test.runner.DiscoverRunner', CapturedOutputRunner):
            with work_in(self.basedir):
                with captured_output() as (out, err):
                    args = list()
                    args.append('djangocms_helper')
                    with patch('djangocms_helper.runner.runner', fake_runner):
                        data = runner.cms('example1', args)
                    self.assertEqual(data, ['djangocms_helper', 'example1', 'test', '--cms'])
예제 #13
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_multisite')
def run():
    from djangocms_helper import runner
    runner.cms('site_search')
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_text_ckeditor')
예제 #16
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_listyle')
예제 #17
0
def run():
    from djangocms_helper import runner
    runner.cms('aldryn_people')
예제 #18
0
def run():
    from djangocms_helper import runner
    runner.cms('aldryn_forms')
예제 #19
0
def run():
    from djangocms_helper import runner
    runner.cms('aldryn_newsblog')
예제 #20
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_page_meta')
예제 #21
0
def run():
    from djangocms_helper import runner
    runner.cms('aldryn_jobs', extra_args=[])
예제 #22
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_attributes_field')
예제 #23
0
def run():
    runner.cms('djangocms_contact')
예제 #24
0
def run():
    from djangocms_helper import runner
    runner.cms('aldryn_faq', extra_args=[])
def run():
    import sys
    from djangocms_helper import runner

    runner.cms("djangocms_text_ckeditor")
예제 #26
0
def run():
    from djangocms_helper import runner

    runner.cms("aldryn_video")
예제 #27
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_articles')
예제 #28
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_comments')
예제 #29
0
def run():
    from djangocms_helper import runner
    # --boilerplate option will ensure correct boilerplate settings are
    # added to settings
    runner.cms('aldryn_newsblog', extra_args=[])
def run():
    from djangocms_helper import runner

    runner.cms("djangocms_fil_bootstrap", extra_args=[])
예제 #31
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_highlightjs')
예제 #32
0
def run():
    from djangocms_helper import runner
    runner.cms('cmsplugin_filer_file')
예제 #33
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_versioning_filer', extra_args=[])
예제 #34
0
def run():
    from djangocms_helper import runner

    runner.cms("aldryn_events", extra_args=["--boilerplate"])
예제 #35
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_picture')
예제 #36
0
def run():
    from djangocms_helper import runner
    runner.cms('aldryn_newsblog')
예제 #37
0
def run():
    from djangocms_helper import runner
    runner.cms('aldryn_snippet')
예제 #38
0
def run():
    from djangocms_helper import runner
    runner.cms("djangocms_navigation", extra_args=[])
예제 #39
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_style')
예제 #40
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_bootstrap4')
예제 #41
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_blog')
예제 #42
0
def run():
    from djangocms_helper import runner
    runner.cms('aldryn_faq', extra_args=['--boilerplate'])
예제 #43
0
def run():
    from djangocms_helper import runner
    sys.argv.append('--nose-runner')
    runner.cms('djangocms_blog')
예제 #44
0
def run():
    from djangocms_helper import runner

    runner.cms("djangocms_url_manager", extra_args=[])
예제 #45
0
def run():
    import sys
    from djangocms_helper import runner
    runner.cms('djangocms_wow')
예제 #46
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_page_meta')
예제 #47
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_inline_comment')
예제 #48
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_blog')
예제 #49
0
def run():
    from djangocms_helper import runner
    runner.cms('aldryn_snippet')
예제 #50
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_page_sitemap')
예제 #51
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_page_sitemap')
예제 #52
0
def run():
    from djangocms_helper import runner
    runner.cms('djangocms_link_manager')
예제 #53
0
def run():
    from djangocms_helper import runner

    runner.cms("djangocms_versioning", extra_args=[])
예제 #54
0
def run():
    from djangocms_helper import runner
    runner.cms("djangocms_pageadmin", extra_args=[])
예제 #55
0
def run():
    from djangocms_helper import runner
    runner.cms('example1')
예제 #56
0
def run():
    from djangocms_helper import runner
    runner.cms('aldryn_tours')
예제 #57
0
def run():
    from djangocms_helper import runner
    runner.cms('example1')
예제 #58
0
def run():
    import sys
    from djangocms_helper import runner
    runner.cms('djangocms_scroll_smooth')
예제 #59
0
def run():
    from djangocms_helper import runner
    # --boilerplate option will ensure correct boilerplate settings are
    # added to settings
    runner.cms('aldryn_newsblog', extra_args=['--boilerplate'])