mithi/hexapod-robot-simulator

View on GitHub
tests/test_kinematics.py

Summary

Maintainability
A
0 mins
Test Coverage
from hexapod.models import VirtualHexapod
from tests.kinematics_cases import case1, case2
from tests.helpers import assert_hexapod_points_equal

CASES = [case1, case2]


def assert_kinematics(case, assume_ground_targets):
    hexapod = VirtualHexapod(case.given_dimensions)
    hexapod.update(case.given_poses, assume_ground_targets)
    assert_hexapod_points_equal(
        hexapod, case.correct_body_points, case.correct_leg_points, case.description
    )


def test_sample_kinematics():
    for case in CASES:
        assert_kinematics(case, True)
        assert_kinematics(case, False)