!REDIRECT “https://docs.px4.io/master/zh/test_and_ci/integration_testing.html

集成测试

这是关于端到端集成测试。 测试自动执行(Jenkins CI

ROS / MAVROS 测试

系统必备组件:

执行测试

要运行完整的 MAVROS 测试套件:

  1. cd <PX4-Autopilot_clone>
  2. source integrationtests/setup_gazebo_ros.bash $(pwd)
  3. rostest px4 mavros_posix_tests_iris.launch

或者使用 GUI 来查看发生的情况:

  1. rostest px4 mavros_posix_tests_iris.launch gui:=true headless:=false

写一个新的 MAVROS 测试(Python)

Note 目前处于早期阶段,更加精简的测试支持(辅助类/方法等)即将到来。

1.)创建一个新的测试脚本

测试脚本位于 integrationtests/python_src/px4_it/mavros/ 中。 有关示例,请参阅其他现有脚本 另请参阅官方 ROS 文档,了解如何使用 unittest

空白测试骨架:

  1. #!/usr/bin/env python
  2. # [... LICENSE ...]
  3. #
  4. # @author Example Author <author@example.com>
  5. #
  6. PKG = 'px4'
  7. import unittest
  8. import rospy
  9. import rosbag
  10. from sensor_msgs.msg import NavSatFix
  11. class MavrosNewTest(unittest.TestCase):
  12. """
  13. Test description
  14. """
  15. def setUp(self):
  16. rospy.init_node('test_node', anonymous=True)
  17. rospy.wait_for_service('mavros/cmd/arming', 30)
  18. rospy.Subscriber("mavros/global_position/global", NavSatFix, self.global_position_callback)
  19. self.rate = rospy.Rate(10) # 10hz
  20. self.has_global_pos = False
  21. def tearDown(self):
  22. pass
  23. #
  24. # General callback functions used in tests
  25. #
  26. def global_position_callback(self, data):
  27. self.has_global_pos = True
  28. def test_method(self):
  29. """Test method description"""
  30. # FIXME: hack to wait for simulation to be ready
  31. while not self.has_global_pos:
  32. self.rate.sleep()
  33. # TODO: execute test
  34. if __name__ == '__main__':
  35. import rostest
  36. rostest.rosrun(PKG, 'mavros_new_test', MavrosNewTest)

2.)仅运行新测试

  1. # Start simulation
  2. cd <PX4-Autopilot_clone>
  3. source integrationtests/setup_gazebo_ros.bash $(pwd)
  4. roslaunch px4 mavros_posix_sitl.launch
  5. # Run test (in a new shell):
  6. cd <PX4-Autopilot_clone>
  7. source integrationtests/setup_gazebo_ros.bash $(pwd)
  8. rosrun px4 mavros_new_test.py

3.)添加新测试节点以启动文件

launch/mavros_posix_tests_irisl.launch 中添加测试组中的新条目:

  1. <group ns="$(arg ns)">
  2. [...]
  3. <test test-name="mavros_new_test" pkg="px4" type="mavros_new_test.py" />
  4. </group>

如上所述运行完整的测试套件。