123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- #!/usr/bin/env python
- # Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved.
- #
- # Redistribution and use in source and binary forms, with or without
- # modification, are permitted provided that the following conditions
- # are met:
- #
- # 1. Redistributions of source code must retain the above
- # copyright notice, this list of conditions and the following
- # disclaimer.
- # 2. Redistributions in binary form must reproduce the above
- # copyright notice, this list of conditions and the following
- # disclaimer in the documentation and/or other materials
- # provided with the distribution.
- #
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER "AS IS" AND ANY
- # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
- # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
- # OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
- # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
- # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- # SUCH DAMAGE.
- import os
- import unittest2 as unittest
- from webkitpy.common.system.outputcapture import OutputCapture
- from webkitpy.w3c.test_parser import TestParser
- options = {'all': False, 'no_overwrite': False}
- class TestParserTest(unittest.TestCase):
- def test_analyze_test_reftest_one_match(self):
- test_html = """<head>
- <link rel="match" href="green-box-ref.xht" />
- </head>
- """
- test_path = '/some/madeup/path/'
- parser = TestParser(options, test_path + 'somefile.html')
- test_info = parser.analyze_test(test_contents=test_html)
- self.assertNotEqual(test_info, None, 'did not find a test')
- self.assertTrue('test' in test_info.keys(), 'did not find a test file')
- self.assertTrue('reference' in test_info.keys(), 'did not find a reference file')
- self.assertTrue(test_info['reference'].startswith(test_path), 'reference path is not correct')
- self.assertFalse('refsupport' in test_info.keys(), 'there should be no refsupport files for this test')
- self.assertFalse('jstest' in test_info.keys(), 'test should not have been analyzed as a jstest')
- def test_analyze_test_reftest_multiple_matches(self):
- test_html = """<head>
- <link rel="match" href="green-box-ref.xht" />
- <link rel="match" href="blue-box-ref.xht" />
- <link rel="match" href="orange-box-ref.xht" />
- </head>
- """
- oc = OutputCapture()
- oc.capture_output()
- try:
- test_path = '/some/madeup/path/'
- parser = TestParser(options, test_path + 'somefile.html')
- test_info = parser.analyze_test(test_contents=test_html)
- finally:
- output, _, _ = oc.restore_output()
- self.assertNotEqual(test_info, None, 'did not find a test')
- self.assertTrue('test' in test_info.keys(), 'did not find a test file')
- self.assertTrue('reference' in test_info.keys(), 'did not find a reference file')
- self.assertTrue(test_info['reference'].startswith(test_path), 'reference path is not correct')
- self.assertFalse('refsupport' in test_info.keys(), 'there should be no refsupport files for this test')
- self.assertFalse('jstest' in test_info.keys(), 'test should not have been analyzed as a jstest')
- self.assertTrue(output.startswith('Warning'), 'no warning about multiple matches')
- def test_analyze_test_reftest_match_and_mismatch(self):
- test_html = """<head>
- <link rel="match" href="green-box-ref.xht" />
- <link rel="match" href="blue-box-ref.xht" />
- <link rel="mismatch" href="orange-box-notref.xht" />
- </head>
- """
- oc = OutputCapture()
- oc.capture_output()
- try:
- test_path = '/some/madeup/path/'
- parser = TestParser(options, test_path + 'somefile.html')
- test_info = parser.analyze_test(test_contents=test_html)
- finally:
- output, _, _ = oc.restore_output()
- self.assertNotEqual(test_info, None, 'did not find a test')
- self.assertTrue('test' in test_info.keys(), 'did not find a test file')
- self.assertTrue('reference' in test_info.keys(), 'did not find a reference file')
- self.assertTrue(test_info['reference'].startswith(test_path), 'reference path is not correct')
- self.assertFalse('refsupport' in test_info.keys(), 'there should be no refsupport files for this test')
- self.assertFalse('jstest' in test_info.keys(), 'test should not have been analyzed as a jstest')
- warnings = output.splitlines()
- self.assertEquals(warnings, ["Warning: Webkit does not support multiple references. Importing the first ref defined in somefile.html"])
- def test_analyze_test_reftest_with_ref_support_Files(self):
- """ Tests analyze_test() using a reftest that has refers to a reference file outside of the tests directory and the reference file has paths to other support files """
- test_html = """<html>
- <head>
- <link rel="match" href="../reference/green-box-ref.xht" />
- </head>
- """
- ref_html = """<head>
- <link href="support/css/ref-stylesheet.css" rel="stylesheet" type="text/css">
- <style type="text/css">
- background-image: url("../../support/some-image.png")
- </style>
- </head>
- <body>
- <div><img src="../support/black96x96.png" alt="Image download support must be enabled" /></div>
- </body>
- </html>
- """
- test_path = '/some/madeup/path/'
- parser = TestParser(options, test_path + 'somefile.html')
- test_info = parser.analyze_test(test_contents=test_html, ref_contents=ref_html)
- self.assertNotEqual(test_info, None, 'did not find a test')
- self.assertTrue('test' in test_info.keys(), 'did not find a test file')
- self.assertTrue('reference' in test_info.keys(), 'did not find a reference file')
- self.assertTrue(test_info['reference'].startswith(test_path), 'reference path is not correct')
- self.assertTrue('refsupport' in test_info.keys(), 'there should be refsupport files for this test')
- self.assertEquals(len(test_info['refsupport']), 3, 'there should be 3 support files in this reference')
- self.assertFalse('jstest' in test_info.keys(), 'test should not have been analyzed as a jstest')
- def test_analyze_jstest(self):
- """ Tests analyze_test() using a jstest """
- test_html = """<head>
- <link href="/resources/testharness.css" rel="stylesheet" type="text/css">
- <script src="/resources/testharness.js"></script>
- </head>
- """
- test_path = '/some/madeup/path/'
- parser = TestParser(options, test_path + 'somefile.html')
- test_info = parser.analyze_test(test_contents=test_html)
- self.assertNotEqual(test_info, None, 'test_info is None')
- self.assertTrue('test' in test_info.keys(), 'did not find a test file')
- self.assertFalse('reference' in test_info.keys(), 'shold not have found a reference file')
- self.assertFalse('refsupport' in test_info.keys(), 'there should be no refsupport files for this test')
- self.assertTrue('jstest' in test_info.keys(), 'test should be a jstest')
- def test_analyze_pixel_test_all_true(self):
- """ Tests analyze_test() using a test that is neither a reftest or jstest with all=False """
- test_html = """<html>
- <head>
- <title>CSS Test: DESCRIPTION OF TEST</title>
- <link rel="author" title="NAME_OF_AUTHOR" />
- <style type="text/css"><![CDATA[
- CSS FOR TEST
- ]]></style>
- </head>
- <body>
- CONTENT OF TEST
- </body>
- </html>
- """
- # Set options to 'all' so this gets found
- options['all'] = True
- test_path = '/some/madeup/path/'
- parser = TestParser(options, test_path + 'somefile.html')
- test_info = parser.analyze_test(test_contents=test_html)
- self.assertNotEqual(test_info, None, 'test_info is None')
- self.assertTrue('test' in test_info.keys(), 'did not find a test file')
- self.assertFalse('reference' in test_info.keys(), 'shold not have found a reference file')
- self.assertFalse('refsupport' in test_info.keys(), 'there should be no refsupport files for this test')
- self.assertFalse('jstest' in test_info.keys(), 'test should not be a jstest')
- def test_analyze_pixel_test_all_false(self):
- """ Tests analyze_test() using a test that is neither a reftest or jstest, with -all=False """
- test_html = """<html>
- <head>
- <title>CSS Test: DESCRIPTION OF TEST</title>
- <link rel="author" title="NAME_OF_AUTHOR" />
- <style type="text/css"><![CDATA[
- CSS FOR TEST
- ]]></style>
- </head>
- <body>
- CONTENT OF TEST
- </body>
- </html>
- """
- # Set all to false so this gets skipped
- options['all'] = False
- test_path = '/some/madeup/path/'
- parser = TestParser(options, test_path + 'somefile.html')
- test_info = parser.analyze_test(test_contents=test_html)
- self.assertEqual(test_info, None, 'test should have been skipped')
- def test_analyze_non_html_file(self):
- """ Tests analyze_test() with a file that has no html"""
- # FIXME: use a mock filesystem
- parser = TestParser(options, os.path.join(os.path.dirname(__file__), 'test_parser.py'))
- test_info = parser.analyze_test()
- self.assertEqual(test_info, None, 'no tests should have been found in this file')
|