You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							56 lines
						
					
					
						
							1.9 KiB
						
					
					
				
			
		
		
	
	
							56 lines
						
					
					
						
							1.9 KiB
						
					
					
				| #!/usr/bin/env python3
 | |
| import unittest
 | |
| from unittest.mock import Mock, patch
 | |
| from parameterized import parameterized
 | |
| 
 | |
| from openpilot.selfdrive.thermald.fan_controller import TiciFanController
 | |
| 
 | |
| ALL_CONTROLLERS = [(TiciFanController,)]
 | |
| 
 | |
| def patched_controller(controller_class):
 | |
|   with patch("os.system", new=Mock()):
 | |
|     return controller_class()
 | |
| 
 | |
| class TestFanController(unittest.TestCase):
 | |
|   def wind_up(self, controller, ignition=True):
 | |
|     for _ in range(1000):
 | |
|       controller.update(100, ignition)
 | |
| 
 | |
|   def wind_down(self, controller, ignition=False):
 | |
|     for _ in range(1000):
 | |
|       controller.update(10, ignition)
 | |
| 
 | |
|   @parameterized.expand(ALL_CONTROLLERS)
 | |
|   def test_hot_onroad(self, controller_class):
 | |
|     controller = patched_controller(controller_class)
 | |
|     self.wind_up(controller)
 | |
|     self.assertGreaterEqual(controller.update(100, True), 70)
 | |
| 
 | |
|   @parameterized.expand(ALL_CONTROLLERS)
 | |
|   def test_offroad_limits(self, controller_class):
 | |
|     controller = patched_controller(controller_class)
 | |
|     self.wind_up(controller)
 | |
|     self.assertLessEqual(controller.update(100, False), 30)
 | |
| 
 | |
|   @parameterized.expand(ALL_CONTROLLERS)
 | |
|   def test_no_fan_wear(self, controller_class):
 | |
|     controller = patched_controller(controller_class)
 | |
|     self.wind_down(controller)
 | |
|     self.assertEqual(controller.update(10, False), 0)
 | |
| 
 | |
|   @parameterized.expand(ALL_CONTROLLERS)
 | |
|   def test_limited(self, controller_class):
 | |
|     controller = patched_controller(controller_class)
 | |
|     self.wind_up(controller, True)
 | |
|     self.assertEqual(controller.update(100, True), 100)
 | |
| 
 | |
|   @parameterized.expand(ALL_CONTROLLERS)
 | |
|   def test_windup_speed(self, controller_class):
 | |
|     controller = patched_controller(controller_class)
 | |
|     self.wind_down(controller, True)
 | |
|     for _ in range(10):
 | |
|       controller.update(90, True)
 | |
|     self.assertGreaterEqual(controller.update(90, True), 60)
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|   unittest.main()
 | |
| 
 |