• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python test.unit_test_filesystem函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中webkitpy.layout_tests.port.test.unit_test_filesystem函数的典型用法代码示例。如果您正苦于以下问题:Python unit_test_filesystem函数的具体用法?Python unit_test_filesystem怎么用?Python unit_test_filesystem使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了unit_test_filesystem函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: make_generator

 def make_generator(self, files, tests):
     options = mocktool.MockOptions(configuration=None, html_directory="/tmp")
     host_port = port.get("test", options, filesystem=unit_test_filesystem(files))
     generator = rebaseline_chromium_webkit_tests.HtmlGenerator(
         host_port, target_port=None, options=options, platforms=["test-mac-leopard"], rebaselining_tests=tests
     )
     return generator, host_port
开发者ID:nizovn,项目名称:luna-sysmgr,代码行数:7,代码来源:rebaseline_chromium_webkit_tests_unittest.py


示例2: test_missing_results

 def test_missing_results(self):
     # Test that we update expectations in place. If the expectation
     # is missing, update the expected generic location.
     fs = unit_test_filesystem()
     res, out, err, _ = logging_run(
         [
             "--no-show-results",
             "failures/unexpected/missing_text.html",
             "failures/unexpected/missing_image.html",
             "failures/unexpected/missing_audio.html",
             "failures/unexpected/missing_render_tree_dump.html",
         ],
         tests_included=True,
         filesystem=fs,
         new_results=True,
     )
     file_list = fs.written_files.keys()
     file_list.remove("/tmp/layout-test-results/tests_run0.txt")
     self.assertEquals(res, 0)
     self.assertFalse(out.empty())
     self.assertEqual(len(file_list), 6)
     self.assertBaselines(file_list, "/failures/unexpected/missing_text", [".txt"], err)
     self.assertBaselines(file_list, "/platform/test-mac-leopard/failures/unexpected/missing_image", [".png"], err)
     self.assertBaselines(
         file_list, "/platform/test-mac-leopard/failures/unexpected/missing_render_tree_dump", [".txt"], err
     )
开发者ID:jparound30,项目名称:webkit,代码行数:26,代码来源:run_webkit_tests_integrationtest.py


示例3: test_host_port_and_filesystem

def test_host_port_and_filesystem(options, expectations):
    filesystem = unit_test_filesystem()
    host_port_obj = port.get("test", options, filesystem=filesystem, user=mocktool.MockUser())

    expectations_path = host_port_obj.path_to_test_expectations_file()
    filesystem.write_text_file(expectations_path, expectations)
    return (host_port_obj, filesystem)
开发者ID:nizovn,项目名称:luna-sysmgr,代码行数:7,代码来源:rebaseline_chromium_webkit_tests_unittest.py


示例4: test_single_file

 def test_single_file(self):
     # FIXME: We should consider replacing more of the get_tests_run()-style tests
     # with tests that read the tests_run* files, like this one.
     fs = unit_test_filesystem()
     tests_run = passing_run(['passes/text.html'], tests_included=True, filesystem=fs)
     self.assertEquals(fs.read_text_file('/tmp/layout-test-results/tests_run0.txt'),
                       'passes/text.html\n')
开发者ID:jboylee,项目名称:preprocessor-parser,代码行数:7,代码来源:run_webkit_tests_integrationtest.py


示例5: test_test_list_with_prefix

 def test_test_list_with_prefix(self):
     fs = unit_test_filesystem()
     filename = "/tmp/foo.txt"
     fs.write_text_file(filename, "LayoutTests/passes/text.html")
     tests_run = get_tests_run(
         ["--test-list=%s" % filename], tests_included=True, flatten_batches=True, filesystem=fs
     )
     self.assertEquals(["passes/text.html"], tests_run)
开发者ID:jparound30,项目名称:webkit,代码行数:8,代码来源:run_webkit_tests_integrationtest.py


示例6: test_results_directory_relative

 def test_results_directory_relative(self):
     # We run a configuration that should fail, to generate output, then
     # look for what the output results url was.
     fs = unit_test_filesystem()
     fs.maybe_make_directory("/tmp/cwd")
     fs.chdir("/tmp/cwd")
     res, out, err, user = logging_run(["--results-directory=foo"], tests_included=True, filesystem=fs)
     self.assertEqual(user.opened_urls, ["/tmp/cwd/foo/results.html"])
开发者ID:jparound30,项目名称:webkit,代码行数:8,代码来源:run_webkit_tests_integrationtest.py


示例7: test_exit_after_n_failures_upload

 def test_exit_after_n_failures_upload(self):
     fs = unit_test_filesystem()
     res, buildbot_output, regular_output, user = logging_run(
         ["failures/unexpected/text-image-checksum.html", "passes/text.html", "--exit-after-n-failures", "1"],
         tests_included=True,
         record_results=True,
         filesystem=fs,
     )
     self.assertTrue("/tmp/layout-test-results/incremental_results.json" in fs.files)
开发者ID:jparound30,项目名称:webkit,代码行数:9,代码来源:run_webkit_tests_integrationtest.py


示例8: test_results_directory_absolute

    def test_results_directory_absolute(self):
        # We run a configuration that should fail, to generate output, then
        # look for what the output results url was.

        fs = unit_test_filesystem()
        with fs.mkdtemp() as tmpdir:
            res, out, err, user = logging_run(['--results-directory=' + str(tmpdir)],
                                              tests_included=True, filesystem=fs)
            self.assertEqual(user.opened_urls, [fs.join(tmpdir, 'results.html')])
开发者ID:jboylee,项目名称:preprocessor-parser,代码行数:9,代码来源:run_webkit_tests_integrationtest.py


示例9: test_no_image_failure_with_image_diff

 def test_no_image_failure_with_image_diff(self):
     fs = unit_test_filesystem()
     res, buildbot_output, regular_output, user = logging_run([
             'failures/unexpected/checksum-with-matching-image.html',
         ],
         tests_included=True,
         record_results=True,
         filesystem=fs)
     self.assertTrue(fs.read_text_file('/tmp/layout-test-results/full_results.json').find('"num_regressions":0') != -1)
开发者ID:jboylee,项目名称:preprocessor-parser,代码行数:9,代码来源:run_webkit_tests_integrationtest.py


示例10: test_crash_with_stderr

 def test_crash_with_stderr(self):
     fs = unit_test_filesystem()
     res, buildbot_output, regular_output, user = logging_run([
             'failures/unexpected/crash-with-stderr.html',
         ],
         tests_included=True,
         record_results=True,
         filesystem=fs)
     self.assertTrue(fs.read_text_file('/tmp/layout-test-results/full_results.json').find('{"crash-with-stderr.html":{"expected":"PASS","actual":"CRASH","has_stderr":true}}') != -1)
开发者ID:jboylee,项目名称:preprocessor-parser,代码行数:9,代码来源:run_webkit_tests_integrationtest.py


示例11: test_test_list

 def test_test_list(self):
     fs = unit_test_filesystem()
     filename = '/tmp/foo.txt'
     fs.write_text_file(filename, 'passes/text.html')
     tests_run = get_tests_run(['--test-list=%s' % filename], tests_included=True, flatten_batches=True, filesystem=fs)
     self.assertEquals(['passes/text.html'], tests_run)
     fs.remove(filename)
     res, out, err, user = logging_run(['--test-list=%s' % filename],
                                       tests_included=True, filesystem=fs)
     self.assertEqual(res, -1)
     self.assertFalse(err.empty())
开发者ID:jboylee,项目名称:preprocessor-parser,代码行数:11,代码来源:run_webkit_tests_integrationtest.py


示例12: test_main

 def test_main(self):
     filesystem = test.unit_test_filesystem()
     stdin = newstringio.StringIO()
     stdout = newstringio.StringIO()
     stderr = newstringio.StringIO()
     res = mock_drt.main(['--platform', 'test'] + self.extra_args(False),
                         filesystem, stdin, stdout, stderr)
     self.assertEqual(res, 0)
     self.assertEqual(stdout.getvalue(), '')
     self.assertEqual(stderr.getvalue(), '')
     self.assertEqual(filesystem.written_files, {})
开发者ID:0x4d52,项目名称:JavaScriptCore-X,代码行数:11,代码来源:mock_drt_unittest.py


示例13: test_pixeltest__fails

 def test_pixeltest__fails(self):
     filesystem = test.unit_test_filesystem()
     self.assertTest('failures/expected/checksum.html', pixel_tests=True,
         expected_checksum='wrong-checksum',
         drt_output=['#URL:file:///test.checkout/LayoutTests/failures/expected/checksum.html\n',
                     '#MD5:checksum-checksum\n',
                     'checksum-txt',
                     '\n',
                     '#EOF\n'],
         filesystem=filesystem)
     self.assertEquals(filesystem.written_files,
         {'/tmp/png_result0.png': 'checksum\x8a-png'})
开发者ID:0x4d52,项目名称:JavaScriptCore-X,代码行数:12,代码来源:mock_drt_unittest.py


示例14: test_end_to_end

    def test_end_to_end(self):
        fs = unit_test_filesystem()
        res, out, err, user = logging_run(record_results=True, tests_included=True, filesystem=fs)

        self.assertEquals(res, unexpected_tests_count)
        results = self.parse_full_results(fs.files["/tmp/layout-test-results/full_results.json"])

        # Check to ensure we're passing back image diff %age correctly.
        self.assertEquals(results["tests"]["failures"]["expected"]["image.html"]["image_diff_percent"], 1)

        # Check that we attempted to display the results page in a browser.
        self.assertTrue(user.opened_urls)
开发者ID:jparound30,项目名称:webkit,代码行数:12,代码来源:run_webkit_tests_integrationtest.py


示例15: passing_run

def passing_run(extra_args=None, port_obj=None, record_results=False, tests_included=False, filesystem=None):
    options, parsed_args = parse_args(extra_args, record_results, tests_included)
    filesystem = filesystem or unit_test_filesystem()
    if not port_obj:
        host = MockHost()
        port_obj = host.port_factory.get(port_name=options.platform, options=options, filesystem=filesystem)
    buildbot_output = array_stream.ArrayStream()
    regular_output = array_stream.ArrayStream()
    res = run_webkit_tests.run(
        port_obj, options, parsed_args, buildbot_output=buildbot_output, regular_output=regular_output
    )
    return res == 0 and regular_output.empty() and buildbot_output.empty()
开发者ID:jparound30,项目名称:webkit,代码行数:12,代码来源:run_webkit_tests_integrationtest.py


示例16: test_end_to_end

    def test_end_to_end(self):
        fs = unit_test_filesystem()
        res, out, err, user = logging_run(record_results=True, tests_included=True, filesystem=fs)

        # Six tests should fail, so the return code should be 6.
        self.assertEquals(res, 6)
        results = self.parse_full_results(fs.files['/tmp/layout-test-results/full_results.json'])

        # Check to ensure we're passing back image diff %age correctly.
        self.assertEquals(results['tests']['failures']['expected']['image.html']['image_diff_percent'], 1)

        # Check that we attempted to display the results page in a browser.
        self.assertTrue(user.opened_urls)
开发者ID:jboylee,项目名称:preprocessor-parser,代码行数:13,代码来源:run_webkit_tests_integrationtest.py


示例17: test_crash_log

 def test_crash_log(self):
     mock_crash_report = 'mock-crash-report'
     fs = unit_test_filesystem()
     fs.write_text_file('/Users/mock/Library/Logs/DiagnosticReports/DumpRenderTree_2011-06-13-150719_quadzen.crash', mock_crash_report)
     res, buildbot_output, regular_output, user = logging_run([
             'failures/unexpected/crash-with-stderr.html',
         ],
         tests_included=True,
         record_results=True,
         filesystem=fs)
     expected_crash_log = mock_crash_report
     # Currently CrashLog uploading only works on Darwin.
     if sys.platform != "darwin":
         expected_crash_log = "mock-std-error-output"
     self.assertEquals(fs.read_text_file('/tmp/layout-test-results/failures/unexpected/crash-with-stderr-crash-log.txt'), expected_crash_log)
开发者ID:jboylee,项目名称:preprocessor-parser,代码行数:15,代码来源:run_webkit_tests_integrationtest.py


示例18: test_reset_results

 def test_reset_results(self):
     # Test that we update expectations in place. If the expectation
     # is missing, update the expected generic location.
     fs = unit_test_filesystem()
     res, out, err, _ = logging_run(['--pixel-tests',
                     '--reset-results',
                     'passes/image.html',
                     'failures/expected/missing_image.html'],
                     tests_included=True, filesystem=fs, new_results=True)
     file_list = fs.written_files.keys()
     file_list.remove('/tmp/layout-test-results/tests_run0.txt')
     self.assertEquals(res, 0)
     self.assertTrue(out.empty())
     self.assertEqual(len(file_list), 4)
     self.assertBaselines(file_list, "/passes/image", [".txt", ".png"], err)
     self.assertBaselines(file_list, "/failures/expected/missing_image", [".txt", ".png"], err)
开发者ID:jboylee,项目名称:preprocessor-parser,代码行数:16,代码来源:run_webkit_tests_integrationtest.py


示例19: logging_run

def logging_run(
    extra_args=None, port_obj=None, record_results=False, tests_included=False, filesystem=None, new_results=False
):
    options, parsed_args = parse_args(
        extra_args=extra_args,
        record_results=record_results,
        tests_included=tests_included,
        print_nothing=False,
        new_results=new_results,
    )
    host = MockHost()
    filesystem = filesystem or unit_test_filesystem()
    if not port_obj:
        port_obj = host.port_factory.get(port_name=options.platform, options=options, filesystem=filesystem)

    res, buildbot_output, regular_output = run_and_capture(port_obj, options, parsed_args)
    return (res, buildbot_output, regular_output, host.user)
开发者ID:jparound30,项目名称:webkit,代码行数:17,代码来源:run_webkit_tests_integrationtest.py


示例20: test_missing_and_unexpected_results_with_custom_exit_code

    def test_missing_and_unexpected_results_with_custom_exit_code(self):
        # Test that we update expectations in place. If the expectation
        # is missing, update the expected generic location.
        fs = unit_test_filesystem()

        class CustomExitCodePort(TestPort):
            def exit_code_from_summarized_results(self, unexpected_results):
                return unexpected_results['num_regressions'] + unexpected_results['num_missing']

        options, parsed_args = run_webkit_tests.parse_args(['--pixel-tests', '--no-new-test-results'])
        test_port = CustomExitCodePort(options=options, user=mocktool.MockUser())
        res, out, err, _ = logging_run(['--no-show-results',
            'failures/expected/missing_image.html',
            'failures/unexpected/missing_text.html',
            'failures/unexpected/text-image-checksum.html'],
            tests_included=True, filesystem=fs, record_results=True, port_obj=test_port)
        self.assertEquals(res, 2)
开发者ID:jboylee,项目名称:preprocessor-parser,代码行数:17,代码来源:run_webkit_tests_integrationtest.py



注:本文中的webkitpy.layout_tests.port.test.unit_test_filesystem函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python test.TestPort类代码示例发布时间:2022-05-26
下一篇:
Python test.add_unit_tests_to_mock_filesystem函数代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap