| # Copyright 2019 The Pigweed Authors |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| # use this file except in compliance with the License. You may obtain a copy of |
| # the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| # License for the specific language governing permissions and limitations under |
| # the License. |
| |
| import logging |
| import pathlib |
| import shutil |
| import tempfile |
| import unittest |
| |
| import pw_module.check |
| |
| _LOG = logging.getLogger(__name__) |
| |
| class TestWithTempDirectory(unittest.TestCase): |
| def setUp(self): |
| # Create a temporary directory for the test. |
| self.test_dir = tempfile.mkdtemp() |
| |
| def tearDown(self): |
| # Remove it after the test. |
| shutil.rmtree(self.test_dir) |
| |
| def create_file(self, path, contents=''): |
| """Create a file and any directories assuming '/' path separator""" |
| full_file_path = pathlib.Path(self.test_dir, path) |
| if full_file_path.exists(): |
| raise Exception(f'File exists already: {path}') |
| |
| # Make parent directories if they don't exsit. |
| full_file_path.parent.mkdir(parents=True, exist_ok=True) |
| |
| with open(full_file_path, 'w') as fd: |
| fd.write(contents) |
| |
| def assert_no_issues(self, checker): |
| return self.assertFalse(list(checker(self.test_dir))) |
| |
| def assert_issue(self, checker, match): |
| issues = list(checker(self.test_dir)) |
| self.assertTrue(any((match in issue.message) for issue in issues)) |
| |
| # Have Python code --> have setup.py. |
| def test_PWCK001_have_setup_py(self): |
| # Python files; no setup --> error. |
| self.create_file('pw_foo/py/pw_foo/__init__.py') |
| self.create_file('pw_foo/py/pw_foo/bar.py') |
| self.assert_issue(pw_module.check.check_python_proper_module, 'setup.py') |
| |
| # Python files; have setup.py --> ok. |
| self.create_file('pw_foo/py/setup.py') |
| self.assert_no_issues(pw_module.check.check_python_proper_module) |
| |
| # Have C++ code --> have C++ tests. |
| def test_PWCK002_have_python_tests(self): |
| self.create_file('pw_foo/public/foo.h') |
| self.create_file('pw_foo/foo.cc') |
| self.assert_issue(pw_module.check.check_have_cc_tests, 'tests') |
| |
| self.create_file('pw_foo/foo_test.cc') |
| self.assert_no_issues(pw_module.check.check_have_cc_tests) |
| |
| # Have Python code --> have Python tests. |
| def test_PWCK003_have_python_tests(self): |
| self.create_file('pw_foo/py/pw_foo/__init__.py') |
| self.create_file('pw_foo/py/setup.py') |
| self.assert_issue(pw_module.check.check_have_python_tests, 'tests') |
| |
| self.create_file('pw_foo/py/foo_test.py') |
| self.assert_no_issues(pw_module.check.check_have_python_tests) |
| |
| if __name__ == '__main__': |
| import sys |
| logging.basicConfig(stream=sys.stderr, level=logging.DEBUG) |
| unittest.main() |