1# Copyright 2023 The Bazel Authors. All rights reserved. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15import unittest 16from pathlib import Path 17 18from python.runfiles import runfiles 19 20RUNFILES = runfiles.Create() 21 22 23class TestPyWheelLibrary(unittest.TestCase): 24 def setUp(self): 25 self.extraction_dir = Path( 26 RUNFILES.Rlocation("rules_python/tests/pycross/extracted_wheel_for_testing") 27 ) 28 self.assertTrue(self.extraction_dir.exists(), self.extraction_dir) 29 self.assertTrue(self.extraction_dir.is_dir(), self.extraction_dir) 30 31 def test_file_presence(self): 32 """Validate that the basic file layout looks good.""" 33 for path in ( 34 "bin/f2py", 35 "site-packages/numpy.libs/libgfortran-daac5196.so.5.0.0", 36 "site-packages/numpy/dtypes.py", 37 "site-packages/numpy/core/_umath_tests.cpython-311-aarch64-linux-gnu.so", 38 ): 39 print(self.extraction_dir / path) 40 self.assertTrue( 41 (self.extraction_dir / path).exists(), f"{path} does not exist" 42 ) 43 44 45if __name__ == "__main__": 46 unittest.main() 47