2025-03-16 04:45:05 +08:00
|
|
|
import sys
|
2025-03-23 01:16:13 +08:00
|
|
|
from typing import Generator
|
2025-03-16 04:45:05 +08:00
|
|
|
from unittest.mock import patch
|
|
|
|
|
|
|
|
import pytest
|
2025-03-20 21:00:10 +08:00
|
|
|
import scservo_sdk as scs
|
2025-03-16 04:45:05 +08:00
|
|
|
|
2025-03-22 08:19:51 +08:00
|
|
|
from lerobot.common.motors import Motor
|
2025-03-16 06:43:26 +08:00
|
|
|
from lerobot.common.motors.feetech import FeetechMotorsBus
|
2025-03-20 21:00:10 +08:00
|
|
|
from tests.mocks.mock_feetech import MockMotors, MockPortHandler
|
2025-03-16 04:45:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
2025-03-20 21:00:10 +08:00
|
|
|
def patch_port_handler():
|
|
|
|
if sys.platform == "darwin":
|
|
|
|
with patch.object(scs, "PortHandler", MockPortHandler):
|
|
|
|
yield
|
|
|
|
else:
|
2025-03-16 04:45:05 +08:00
|
|
|
yield
|
|
|
|
|
|
|
|
|
2025-03-23 01:16:13 +08:00
|
|
|
@pytest.fixture
|
|
|
|
def mock_motors() -> Generator[MockMotors, None, None]:
|
|
|
|
motors = MockMotors()
|
|
|
|
motors.open()
|
|
|
|
yield motors
|
|
|
|
motors.close()
|
|
|
|
|
|
|
|
|
2025-03-22 08:19:51 +08:00
|
|
|
@pytest.fixture
|
|
|
|
def dummy_motors() -> dict[str, Motor]:
|
|
|
|
return {
|
|
|
|
"dummy_1": Motor(id=1, model="sts3215"),
|
|
|
|
"dummy_2": Motor(id=2, model="sts3215"),
|
|
|
|
"dummy_3": Motor(id=3, model="sts3215"),
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-03-20 21:00:10 +08:00
|
|
|
@pytest.mark.skipif(sys.platform != "darwin", reason=f"No patching needed on {sys.platform=}")
|
|
|
|
def test_autouse_patch():
|
|
|
|
"""Ensures that the autouse fixture correctly patches scs.PortHandler with MockPortHandler."""
|
|
|
|
assert scs.PortHandler is MockPortHandler
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"value, n_bytes, expected",
|
|
|
|
[
|
|
|
|
(0x12, 1, [0x12]),
|
|
|
|
(0x1234, 2, [0x34, 0x12]),
|
|
|
|
(0x12345678, 4, [0x78, 0x56, 0x34, 0x12]),
|
|
|
|
(0, 1, [0x00]),
|
|
|
|
(0, 2, [0x00, 0x00]),
|
|
|
|
(0, 4, [0x00, 0x00, 0x00, 0x00]),
|
|
|
|
(255, 1, [0xFF]),
|
|
|
|
(65535, 2, [0xFF, 0xFF]),
|
|
|
|
(4294967295, 4, [0xFF, 0xFF, 0xFF, 0xFF]),
|
|
|
|
],
|
|
|
|
ids=[
|
|
|
|
"1 byte",
|
|
|
|
"2 bytes",
|
|
|
|
"4 bytes",
|
|
|
|
"0 with 1 byte",
|
|
|
|
"0 with 2 bytes",
|
|
|
|
"0 with 4 bytes",
|
|
|
|
"max single byte",
|
|
|
|
"max two bytes",
|
|
|
|
"max four bytes",
|
|
|
|
],
|
|
|
|
) # fmt: skip
|
|
|
|
def test_split_int_bytes(value, n_bytes, expected):
|
|
|
|
assert FeetechMotorsBus.split_int_bytes(value, n_bytes) == expected
|
|
|
|
|
|
|
|
|
|
|
|
def test_split_int_bytes_invalid_n_bytes():
|
|
|
|
with pytest.raises(NotImplementedError):
|
|
|
|
FeetechMotorsBus.split_int_bytes(100, 3)
|
|
|
|
|
|
|
|
|
|
|
|
def test_split_int_bytes_negative_numbers():
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
neg = FeetechMotorsBus.split_int_bytes(-1, 1)
|
|
|
|
print(neg)
|
|
|
|
|
|
|
|
|
|
|
|
def test_split_int_bytes_large_number():
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
FeetechMotorsBus.split_int_bytes(2**32, 4) # 4-byte max is 0xFFFFFFFF
|
2025-03-16 04:45:05 +08:00
|
|
|
|
|
|
|
|
2025-03-22 08:19:51 +08:00
|
|
|
def test_abc_implementation(dummy_motors):
|
2025-03-20 21:00:10 +08:00
|
|
|
"""Instantiation should raise an error if the class doesn't implement abstract methods/properties."""
|
2025-03-22 08:19:51 +08:00
|
|
|
FeetechMotorsBus(port="/dev/dummy-port", motors=dummy_motors)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skip("TODO")
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"idx, model_nb",
|
|
|
|
[
|
|
|
|
[1, 1190],
|
|
|
|
[2, 1200],
|
|
|
|
[3, 1120],
|
|
|
|
],
|
|
|
|
)
|
2025-03-23 01:16:13 +08:00
|
|
|
def test_ping(idx, model_nb, mock_motors, dummy_motors):
|
2025-03-23 01:53:57 +08:00
|
|
|
stub_name = mock_motors.build_ping_stub(idx, model_nb)
|
2025-03-22 08:19:51 +08:00
|
|
|
motors_bus = FeetechMotorsBus(
|
|
|
|
port=mock_motors.port,
|
|
|
|
motors=dummy_motors,
|
|
|
|
)
|
|
|
|
motors_bus.connect()
|
|
|
|
|
|
|
|
ping_model_nb = motors_bus.ping(idx)
|
|
|
|
|
|
|
|
assert ping_model_nb == model_nb
|
2025-03-23 01:53:57 +08:00
|
|
|
assert mock_motors.stubs[stub_name].called
|
2025-03-22 08:19:51 +08:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skip("TODO")
|
2025-03-23 01:16:13 +08:00
|
|
|
def test_broadcast_ping(mock_motors, dummy_motors):
|
2025-03-22 08:19:51 +08:00
|
|
|
expected_pings = {
|
|
|
|
1: [1060, 50],
|
|
|
|
2: [1120, 30],
|
|
|
|
3: [1190, 10],
|
|
|
|
}
|
2025-03-23 01:53:57 +08:00
|
|
|
stub_name = mock_motors.build_broadcast_ping_stub(expected_pings)
|
2025-03-22 08:19:51 +08:00
|
|
|
motors_bus = FeetechMotorsBus(
|
|
|
|
port=mock_motors.port,
|
|
|
|
motors=dummy_motors,
|
|
|
|
)
|
|
|
|
motors_bus.connect()
|
|
|
|
|
|
|
|
ping_list = motors_bus.broadcast_ping()
|
|
|
|
|
|
|
|
assert ping_list == expected_pings
|
2025-03-23 01:53:57 +08:00
|
|
|
assert mock_motors.stubs[stub_name].called
|
2025-03-16 05:19:50 +08:00
|
|
|
|
|
|
|
|
2025-03-20 21:00:10 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"motors",
|
|
|
|
[
|
|
|
|
None,
|
|
|
|
[1, 2, 3],
|
|
|
|
["dummy_1", "dummy_2", "dummy_3"],
|
|
|
|
[1, "dummy_2", 3],
|
|
|
|
],
|
|
|
|
ids=["None", "by ids", "by names", "mixed"],
|
|
|
|
)
|
2025-03-23 01:16:13 +08:00
|
|
|
def test_read_all_motors(motors, mock_motors, dummy_motors):
|
2025-03-22 08:19:51 +08:00
|
|
|
expected_positions = {
|
|
|
|
1: 1337,
|
|
|
|
2: 42,
|
|
|
|
3: 4016,
|
|
|
|
}
|
|
|
|
stub_name = mock_motors.build_sync_read_stub("Present_Position", expected_positions)
|
2025-03-20 21:00:10 +08:00
|
|
|
motors_bus = FeetechMotorsBus(
|
|
|
|
port=mock_motors.port,
|
2025-03-22 08:19:51 +08:00
|
|
|
motors=dummy_motors,
|
2025-03-20 21:00:10 +08:00
|
|
|
)
|
|
|
|
motors_bus.connect()
|
|
|
|
|
2025-03-22 08:19:51 +08:00
|
|
|
positions_read = motors_bus.read("Present_Position", motors=motors)
|
2025-03-20 21:00:10 +08:00
|
|
|
|
2025-03-22 08:19:51 +08:00
|
|
|
motors = ["dummy_1", "dummy_2", "dummy_3"] if motors is None else motors
|
|
|
|
assert mock_motors.stubs[stub_name].called
|
|
|
|
assert positions_read == dict(zip(motors, expected_positions.values(), strict=True))
|
2025-03-16 05:19:50 +08:00
|
|
|
|
2025-03-20 21:00:10 +08:00
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"idx, pos",
|
|
|
|
[
|
|
|
|
[1, 1337],
|
|
|
|
[2, 42],
|
|
|
|
[3, 4016],
|
|
|
|
],
|
|
|
|
)
|
2025-03-23 01:16:13 +08:00
|
|
|
def test_read_single_motor_by_name(idx, pos, mock_motors, dummy_motors):
|
2025-03-22 08:19:51 +08:00
|
|
|
expected_position = {idx: pos}
|
|
|
|
stub_name = mock_motors.build_sync_read_stub("Present_Position", expected_position)
|
2025-03-20 21:00:10 +08:00
|
|
|
motors_bus = FeetechMotorsBus(
|
|
|
|
port=mock_motors.port,
|
2025-03-22 08:19:51 +08:00
|
|
|
motors=dummy_motors,
|
2025-03-20 21:00:10 +08:00
|
|
|
)
|
|
|
|
motors_bus.connect()
|
|
|
|
|
|
|
|
pos_dict = motors_bus.read("Present_Position", f"dummy_{idx}")
|
|
|
|
|
2025-03-22 08:19:51 +08:00
|
|
|
assert mock_motors.stubs[stub_name].called
|
2025-03-20 21:00:10 +08:00
|
|
|
assert pos_dict == {f"dummy_{idx}": pos}
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"idx, pos",
|
|
|
|
[
|
|
|
|
[1, 1337],
|
|
|
|
[2, 42],
|
|
|
|
[3, 4016],
|
|
|
|
],
|
|
|
|
)
|
2025-03-23 01:16:13 +08:00
|
|
|
def test_read_single_motor_by_id(idx, pos, mock_motors, dummy_motors):
|
2025-03-22 08:19:51 +08:00
|
|
|
expected_position = {idx: pos}
|
|
|
|
stub_name = mock_motors.build_sync_read_stub("Present_Position", expected_position)
|
2025-03-20 21:00:10 +08:00
|
|
|
motors_bus = FeetechMotorsBus(
|
|
|
|
port=mock_motors.port,
|
2025-03-22 08:19:51 +08:00
|
|
|
motors=dummy_motors,
|
2025-03-20 21:00:10 +08:00
|
|
|
)
|
2025-03-16 05:19:50 +08:00
|
|
|
motors_bus.connect()
|
|
|
|
|
2025-03-20 21:00:10 +08:00
|
|
|
pos_dict = motors_bus.read("Present_Position", idx)
|
|
|
|
|
2025-03-22 08:19:51 +08:00
|
|
|
assert mock_motors.stubs[stub_name].called
|
|
|
|
assert pos_dict == {idx: pos}
|
2025-03-20 21:00:10 +08:00
|
|
|
|
2025-03-16 05:19:50 +08:00
|
|
|
|
2025-03-20 21:00:10 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"num_retry, num_invalid_try, pos",
|
|
|
|
[
|
2025-03-22 08:19:51 +08:00
|
|
|
[0, 2, 1337],
|
2025-03-20 21:00:10 +08:00
|
|
|
[2, 3, 42],
|
|
|
|
[3, 2, 4016],
|
|
|
|
[2, 1, 999],
|
|
|
|
],
|
|
|
|
)
|
2025-03-23 01:16:13 +08:00
|
|
|
def test_read_num_retry(num_retry, num_invalid_try, pos, mock_motors, dummy_motors):
|
2025-03-22 08:19:51 +08:00
|
|
|
expected_position = {1: pos}
|
|
|
|
stub_name = mock_motors.build_sync_read_stub(
|
|
|
|
"Present_Position", expected_position, num_invalid_try=num_invalid_try
|
2025-03-20 21:00:10 +08:00
|
|
|
)
|
|
|
|
motors_bus = FeetechMotorsBus(
|
|
|
|
port=mock_motors.port,
|
2025-03-22 08:19:51 +08:00
|
|
|
motors=dummy_motors,
|
2025-03-20 21:00:10 +08:00
|
|
|
)
|
2025-03-16 05:19:50 +08:00
|
|
|
motors_bus.connect()
|
2025-03-20 21:00:10 +08:00
|
|
|
|
|
|
|
if num_retry >= num_invalid_try:
|
|
|
|
pos_dict = motors_bus.read("Present_Position", 1, num_retry=num_retry)
|
2025-03-22 08:19:51 +08:00
|
|
|
assert pos_dict == {1: pos}
|
2025-03-20 21:00:10 +08:00
|
|
|
else:
|
|
|
|
with pytest.raises(ConnectionError):
|
|
|
|
_ = motors_bus.read("Present_Position", 1, num_retry=num_retry)
|
|
|
|
|
2025-03-22 08:19:51 +08:00
|
|
|
expected_calls = min(1 + num_retry, 1 + num_invalid_try)
|
|
|
|
assert mock_motors.stubs[stub_name].calls == expected_calls
|
2025-03-23 00:02:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"motors",
|
|
|
|
[
|
|
|
|
[1, 2, 3],
|
|
|
|
["dummy_1", "dummy_2", "dummy_3"],
|
|
|
|
[1, "dummy_2", 3],
|
|
|
|
],
|
|
|
|
ids=["by ids", "by names", "mixed"],
|
|
|
|
)
|
2025-03-23 01:16:13 +08:00
|
|
|
def test_write_all_motors(motors, mock_motors, dummy_motors):
|
2025-03-23 00:02:01 +08:00
|
|
|
goal_positions = {
|
|
|
|
1: 1337,
|
|
|
|
2: 42,
|
|
|
|
3: 4016,
|
|
|
|
}
|
|
|
|
stub_name = mock_motors.build_sync_write_stub("Goal_Position", goal_positions)
|
|
|
|
motors_bus = FeetechMotorsBus(
|
|
|
|
port=mock_motors.port,
|
|
|
|
motors=dummy_motors,
|
|
|
|
)
|
|
|
|
motors_bus.connect()
|
|
|
|
|
|
|
|
values = dict(zip(motors, goal_positions.values(), strict=True))
|
|
|
|
motors_bus.write("Goal_Position", values)
|
|
|
|
|
|
|
|
assert mock_motors.stubs[stub_name].wait_called()
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"data_name, value",
|
|
|
|
[
|
|
|
|
["Torque_Enable", 0],
|
|
|
|
["Torque_Enable", 1],
|
|
|
|
],
|
|
|
|
)
|
2025-03-23 01:16:13 +08:00
|
|
|
def test_write_all_motors_single_value(data_name, value, mock_motors, dummy_motors):
|
2025-03-23 00:02:01 +08:00
|
|
|
values = {m.id: value for m in dummy_motors.values()}
|
|
|
|
stub_name = mock_motors.build_sync_write_stub(data_name, values)
|
|
|
|
motors_bus = FeetechMotorsBus(
|
|
|
|
port=mock_motors.port,
|
|
|
|
motors=dummy_motors,
|
|
|
|
)
|
|
|
|
motors_bus.connect()
|
|
|
|
|
|
|
|
motors_bus.write(data_name, value)
|
|
|
|
|
|
|
|
assert mock_motors.stubs[stub_name].wait_called()
|