mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-02 03:42:50 +08:00
Summary: Address black + isort fbsource linter warnings from D20558374 (previous diff) Reviewed By: nikhilaravi Differential Revision: D20558373 fbshipit-source-id: d3607de4a01fb24c0d5269634563a7914bddf1c8
67 lines
2.3 KiB
Python
67 lines
2.3 KiB
Python
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
import unittest
|
|
from collections import Counter
|
|
from pathlib import Path
|
|
|
|
|
|
# This file groups together tests which look at the code without running it.
|
|
|
|
|
|
class TestBuild(unittest.TestCase):
|
|
def test_name_clash(self):
|
|
# For setup.py, all translation units need distinct names, so we
|
|
# cannot have foo.cu and foo.cpp, even in different directories.
|
|
test_dir = Path(__file__).resolve().parent
|
|
source_dir = test_dir.parent / "pytorch3d"
|
|
|
|
stems = []
|
|
for extension in [".cu", ".cpp"]:
|
|
files = source_dir.glob(f"**/*{extension}")
|
|
stems.extend(f.stem for f in files)
|
|
|
|
counter = Counter(stems)
|
|
for k, v in counter.items():
|
|
self.assertEqual(v, 1, f"Too many files with stem {k}.")
|
|
|
|
def test_deprecated_usage(self):
|
|
# Check certain expressions do not occur in the csrc code
|
|
test_dir = Path(__file__).resolve().parent
|
|
source_dir = test_dir.parent / "pytorch3d" / "csrc"
|
|
|
|
files = sorted(source_dir.glob("**/*.*"))
|
|
self.assertGreater(len(files), 4)
|
|
|
|
patterns = [".type()", ".data()"]
|
|
|
|
for file in files:
|
|
with open(file) as f:
|
|
text = f.read()
|
|
for pattern in patterns:
|
|
found = pattern in text
|
|
msg = (
|
|
f"{pattern} found in {file.name}"
|
|
+ ", this has been deprecated."
|
|
)
|
|
self.assertFalse(found, msg)
|
|
|
|
def test_copyright(self):
|
|
test_dir = Path(__file__).resolve().parent
|
|
root_dir = test_dir.parent
|
|
|
|
extensions = ("py", "cu", "cuh", "cpp", "h", "hpp", "sh")
|
|
|
|
expect = (
|
|
"Copyright (c) Facebook, Inc. and its affiliates."
|
|
+ " All rights reserved.\n"
|
|
)
|
|
|
|
for extension in extensions:
|
|
for i in root_dir.glob(f"**/*.{extension}"):
|
|
with open(i) as f:
|
|
firstline = f.readline()
|
|
if firstline.startswith(("# -*-", "#!")):
|
|
firstline = f.readline()
|
|
self.assertTrue(
|
|
firstline.endswith(expect), f"{i} missing copyright header."
|
|
)
|