| OLD | NEW |
| 1 # Copyright (C) 2010 Google Inc. All rights reserved. | 1 # Copyright (C) 2010 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | 28 |
| 29 """Checks WebKit style for test_expectations files.""" | 29 """Checks WebKit style for test_expectations files.""" |
| 30 | 30 |
| 31 import logging | 31 import logging |
| 32 | 32 |
| 33 from common import TabChecker | |
| 34 from webkitpy.common.host import Host | 33 from webkitpy.common.host import Host |
| 35 from webkitpy.layout_tests.models.test_expectations import TestExpectationParser | 34 from webkitpy.layout_tests.models.test_expectations import TestExpectationParser |
| 35 from webkitpy.style.checkers.common import TabChecker |
| 36 | 36 |
| 37 | 37 |
| 38 class TestExpectationsChecker(object): | 38 class TestExpectationsChecker(object): |
| 39 """Processes TestExpectations lines for validating the syntax.""" | 39 """Processes TestExpectations lines for validating the syntax.""" |
| 40 | 40 |
| 41 categories = set(['test/expectations']) | 41 categories = set(['test/expectations']) |
| 42 | 42 |
| 43 def __init__(self, file_path, handle_style_error, host=None): | 43 def __init__(self, file_path, handle_style_error, host=None): |
| 44 self._file_path = file_path | 44 self._file_path = file_path |
| 45 self._handle_style_error = handle_style_error | 45 self._handle_style_error = handle_style_error |
| (...skipping 23 matching lines...) Expand all Loading... |
| 69 def check_tabs(self, lines): | 69 def check_tabs(self, lines): |
| 70 self._tab_checker.check(lines) | 70 self._tab_checker.check(lines) |
| 71 | 71 |
| 72 def check(self, lines): | 72 def check(self, lines): |
| 73 expectations = '\n'.join(lines) | 73 expectations = '\n'.join(lines) |
| 74 if self._port_obj: | 74 if self._port_obj: |
| 75 self.check_test_expectations(expectations_str=expectations, tests=No
ne) | 75 self.check_test_expectations(expectations_str=expectations, tests=No
ne) |
| 76 | 76 |
| 77 # Warn tabs in lines as well | 77 # Warn tabs in lines as well |
| 78 self.check_tabs(lines) | 78 self.check_tabs(lines) |
| OLD | NEW |