mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 01:53:57 +08:00
* run test_models on route
* clean up a bit
clean up a bit
clean up a bit
* remove
remove
* make route positional
* fixes from merge
* not working as I expected
* finally working, easiest way seems to make a new subclass dynamically
* bring back routes
* remove comments
* revert skiptest
* fix subclass name
* car first
* this should be here...
* this should work
* comment
* pytest doesn't support dynamically loading with load_tests
* minimize test_models.py diff, and make new file for running on a route
* fix static analysis
* remove print
* clean up a tiny bit
* rename and make required
* auto detect car fingerprint if not given
* move to location that makes more sense
* Add ci argument for running route from routes.py
old-commit-hash: e5b189416d
37 lines
1.5 KiB
Python
Executable File
37 lines
1.5 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
import argparse
|
|
import sys
|
|
from typing import List, Tuple
|
|
import unittest
|
|
|
|
from selfdrive.car.tests.routes import TestRoute
|
|
from selfdrive.car.tests.test_models import TestCarModel
|
|
|
|
|
|
def create_test_models_suite(routes: List[Tuple[str, TestRoute]], ci=False) -> unittest.TestSuite:
|
|
test_suite = unittest.TestSuite()
|
|
for car_model, test_route in routes:
|
|
# create new test case and discover tests
|
|
test_case_args = {"car_model": car_model, "test_route": test_route, "ci": ci}
|
|
CarModelTestCase = type("CarModelTestCase", (TestCarModel,), test_case_args)
|
|
test_suite.addTest(unittest.TestLoader().loadTestsFromTestCase(CarModelTestCase))
|
|
return test_suite
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser(description="Test any route against common issues with a new car port. " +
|
|
"Uses selfdrive/car/tests/test_models.py")
|
|
parser.add_argument("route", help="Specify route to run tests on")
|
|
parser.add_argument("--car", help="Specify car model for test route")
|
|
parser.add_argument("--segment", type=int, nargs="?", help="Specify segment of route to test")
|
|
parser.add_argument("--ci", action="store_true", help="Attempt to get logs using openpilotci, need to specify car")
|
|
args = parser.parse_args()
|
|
if len(sys.argv) == 1:
|
|
parser.print_help()
|
|
sys.exit()
|
|
|
|
test_route = TestRoute(args.route, args.car, segment=args.segment)
|
|
test_suite = create_test_models_suite([(args.car, test_route)], ci=args.ci)
|
|
|
|
unittest.TextTestRunner().run(test_suite)
|