ehmaldonado | 4fb9746 | 2017-01-30 05:27:22 -0800 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | # Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
| 4 | # |
| 5 | # Use of this source code is governed by a BSD-style license |
| 6 | # that can be found in the LICENSE file in the root of the source |
| 7 | # tree. An additional intellectual property rights grant can be found |
| 8 | # in the file PATENTS. All contributing project authors may |
| 9 | # be found in the AUTHORS file in the root of the source tree. |
| 10 | |
| 11 | import ast |
| 12 | import os |
| 13 | import unittest |
| 14 | |
| 15 | from check_package_boundaries import CheckPackageBoundaries |
| 16 | |
| 17 | |
| 18 | MSG_FORMAT = 'ERROR:check_package_boundaries.py: Unexpected %s.' |
| 19 | TESTDATA_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), |
| 20 | 'testdata') |
| 21 | |
| 22 | |
| 23 | def ReadPylFile(file_path): |
| 24 | with open(file_path) as f: |
| 25 | return ast.literal_eval(f.read()) |
| 26 | |
| 27 | |
| 28 | class Logger(object): |
| 29 | def __init__(self, test_dir): |
| 30 | self.messages = [] |
| 31 | self.test_dir = test_dir |
| 32 | |
kjellander | 94f4d9e | 2017-03-09 06:09:33 -0800 | [diff] [blame^] | 33 | def log(self, build_file_path, line_number, target_name, source_file, |
ehmaldonado | 4fb9746 | 2017-01-30 05:27:22 -0800 | [diff] [blame] | 34 | subpackage): |
| 35 | build_file_path = os.path.relpath(build_file_path, self.test_dir) |
ehmaldonado | f6ddbe7 | 2017-02-13 05:18:02 -0800 | [diff] [blame] | 36 | build_file_path = build_file_path.replace(os.path.sep, '/') |
ehmaldonado | 4fb9746 | 2017-01-30 05:27:22 -0800 | [diff] [blame] | 37 | self.messages.append([build_file_path, line_number, target_name, |
| 38 | source_file, subpackage]) |
| 39 | |
| 40 | |
| 41 | class UnitTest(unittest.TestCase): |
| 42 | def RunTest(self, test_dir, check_all_build_files=False): |
| 43 | logger = Logger(test_dir) |
| 44 | build_files = [os.path.join(test_dir, 'BUILD.gn')] |
| 45 | if check_all_build_files: |
| 46 | build_files = None |
| 47 | CheckPackageBoundaries(test_dir, logger, build_files) |
| 48 | expected_messages = ReadPylFile(os.path.join(test_dir, 'expected.pyl')) |
| 49 | self.assertListEqual(sorted(expected_messages), sorted(logger.messages)) |
| 50 | |
kjellander | 94f4d9e | 2017-03-09 06:09:33 -0800 | [diff] [blame^] | 51 | def test_no_errors(self): |
ehmaldonado | 4fb9746 | 2017-01-30 05:27:22 -0800 | [diff] [blame] | 52 | self.RunTest(os.path.join(TESTDATA_DIR, 'no_errors')) |
| 53 | |
kjellander | 94f4d9e | 2017-03-09 06:09:33 -0800 | [diff] [blame^] | 54 | def test_multiple_errors_single_target(self): |
ehmaldonado | 4fb9746 | 2017-01-30 05:27:22 -0800 | [diff] [blame] | 55 | self.RunTest(os.path.join(TESTDATA_DIR, 'multiple_errors_single_target')) |
| 56 | |
kjellander | 94f4d9e | 2017-03-09 06:09:33 -0800 | [diff] [blame^] | 57 | def test_multiple_errors_multiple_targets(self): |
ehmaldonado | 4fb9746 | 2017-01-30 05:27:22 -0800 | [diff] [blame] | 58 | self.RunTest(os.path.join(TESTDATA_DIR, 'multiple_errors_multiple_targets')) |
| 59 | |
kjellander | 94f4d9e | 2017-03-09 06:09:33 -0800 | [diff] [blame^] | 60 | def test_common_prefix(self): |
ehmaldonado | 4fb9746 | 2017-01-30 05:27:22 -0800 | [diff] [blame] | 61 | self.RunTest(os.path.join(TESTDATA_DIR, 'common_prefix')) |
| 62 | |
kjellander | 94f4d9e | 2017-03-09 06:09:33 -0800 | [diff] [blame^] | 63 | def test_all_build_files(self): |
ehmaldonado | 4fb9746 | 2017-01-30 05:27:22 -0800 | [diff] [blame] | 64 | self.RunTest(os.path.join(TESTDATA_DIR, 'all_build_files'), True) |
| 65 | |
| 66 | |
| 67 | if __name__ == '__main__': |
| 68 | unittest.main() |