mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
128 lines
4.7 KiB
C++
128 lines
4.7 KiB
C++
/*
|
|
* Copyright (C) 2014 Pavel Kirienko <pavel.kirienko@gmail.com>
|
|
*/
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <uavcan/node/publisher.hpp>
|
|
#include <uavcan/mavlink/Message.hpp>
|
|
#include "../clock.hpp"
|
|
#include "../transport/can/can.hpp"
|
|
#include "test_node.hpp"
|
|
|
|
|
|
TEST(Publisher, Basic)
|
|
{
|
|
SystemClockMock clock_mock(100);
|
|
CanDriverMock can_driver(2, clock_mock);
|
|
TestNode node(can_driver, clock_mock, 1);
|
|
|
|
uavcan::Publisher<uavcan::mavlink::Message> publisher(node);
|
|
|
|
std::cout <<
|
|
"sizeof(uavcan::Publisher<uavcan::mavlink::Message>): " <<
|
|
sizeof(uavcan::Publisher<uavcan::mavlink::Message>) << std::endl;
|
|
|
|
// Manual type registration - we can't rely on the GDTR state
|
|
uavcan::GlobalDataTypeRegistry::instance().reset();
|
|
uavcan::DefaultDataTypeRegistrator<uavcan::mavlink::Message> _registrator;
|
|
|
|
/*
|
|
* Message layout:
|
|
* uint8 seq
|
|
* uint8 sysid
|
|
* uint8 compid
|
|
* uint8 msgid
|
|
* uint8[<256] payload
|
|
*/
|
|
uavcan::mavlink::Message msg;
|
|
msg.seq = 0x42;
|
|
msg.sysid = 0x72;
|
|
msg.compid = 0x08;
|
|
msg.msgid = 0xa5;
|
|
msg.payload = "Msg";
|
|
|
|
const uint8_t expected_transfer_payload[] = {0x42, 0x72, 0x08, 0xa5, 'M', 's', 'g'};
|
|
const uint64_t tx_timeout_usec = uint64_t(publisher.getDefaultTxTimeout().toUSec());
|
|
|
|
/*
|
|
* Broadcast
|
|
*/
|
|
{
|
|
ASSERT_LT(0, publisher.broadcast(msg));
|
|
|
|
// uint_fast16_t data_type_id, TransferType transfer_type, NodeID src_node_id, NodeID dst_node_id,
|
|
// uint_fast8_t frame_index, TransferID transfer_id, bool last_frame = false
|
|
uavcan::Frame expected_frame(uavcan::mavlink::Message::DefaultDataTypeID, uavcan::TransferTypeMessageBroadcast,
|
|
node.getNodeID(), uavcan::NodeID::Broadcast, 0, 0, true);
|
|
expected_frame.setPayload(expected_transfer_payload, 7);
|
|
|
|
uavcan::CanFrame expected_can_frame;
|
|
ASSERT_TRUE(expected_frame.compile(expected_can_frame));
|
|
|
|
ASSERT_TRUE(can_driver.ifaces[0].matchAndPopTx(expected_can_frame, tx_timeout_usec + 100));
|
|
ASSERT_TRUE(can_driver.ifaces[1].matchAndPopTx(expected_can_frame, tx_timeout_usec + 100));
|
|
ASSERT_TRUE(can_driver.ifaces[0].tx.empty());
|
|
ASSERT_TRUE(can_driver.ifaces[1].tx.empty());
|
|
|
|
// Second shot - checking the transfer ID
|
|
publisher.setPriority(uavcan::TransferPriorityLow);
|
|
ASSERT_LT(0, publisher.broadcast(msg));
|
|
|
|
expected_frame = uavcan::Frame(uavcan::mavlink::Message::DefaultDataTypeID,
|
|
uavcan::TransferTypeMessageBroadcast,
|
|
node.getNodeID(), uavcan::NodeID::Broadcast, 0, 1, true);
|
|
expected_frame.setPayload(expected_transfer_payload, 7);
|
|
expected_frame.setPriority(uavcan::TransferPriorityLow);
|
|
ASSERT_TRUE(expected_frame.compile(expected_can_frame));
|
|
|
|
ASSERT_TRUE(can_driver.ifaces[0].matchAndPopTx(expected_can_frame, tx_timeout_usec + 100));
|
|
ASSERT_TRUE(can_driver.ifaces[1].matchAndPopTx(expected_can_frame, tx_timeout_usec + 100));
|
|
ASSERT_TRUE(can_driver.ifaces[0].tx.empty());
|
|
ASSERT_TRUE(can_driver.ifaces[1].tx.empty());
|
|
}
|
|
|
|
clock_mock.advance(1000);
|
|
|
|
/*
|
|
* Unicast
|
|
*/
|
|
{
|
|
publisher.setPriority(uavcan::TransferPriorityHigh);
|
|
ASSERT_LT(0, publisher.unicast(msg, 0x44));
|
|
|
|
// uint_fast16_t data_type_id, TransferType transfer_type, NodeID src_node_id, NodeID dst_node_id,
|
|
// uint_fast8_t frame_index, TransferID transfer_id, bool last_frame = false
|
|
uavcan::Frame expected_frame(uavcan::mavlink::Message::DefaultDataTypeID, uavcan::TransferTypeMessageUnicast,
|
|
node.getNodeID(), uavcan::NodeID(0x44), 0, 0, true);
|
|
expected_frame.setPayload(expected_transfer_payload, 7);
|
|
expected_frame.setPriority(uavcan::TransferPriorityHigh);
|
|
|
|
uavcan::CanFrame expected_can_frame;
|
|
ASSERT_TRUE(expected_frame.compile(expected_can_frame));
|
|
|
|
ASSERT_TRUE(can_driver.ifaces[0].matchAndPopTx(expected_can_frame, tx_timeout_usec + 100 + 1000));
|
|
ASSERT_TRUE(can_driver.ifaces[1].matchAndPopTx(expected_can_frame, tx_timeout_usec + 100 + 1000));
|
|
ASSERT_TRUE(can_driver.ifaces[0].tx.empty());
|
|
ASSERT_TRUE(can_driver.ifaces[1].tx.empty());
|
|
}
|
|
|
|
/*
|
|
* Misc
|
|
*/
|
|
ASSERT_TRUE(uavcan::GlobalDataTypeRegistry::instance().isFrozen());
|
|
ASSERT_TRUE(publisher.getTransferSender());
|
|
}
|
|
|
|
|
|
TEST(Publisher, ImplicitInitialization)
|
|
{
|
|
SystemClockMock clock_mock(100);
|
|
CanDriverMock can_driver(2, clock_mock);
|
|
TestNode node(can_driver, clock_mock, 1);
|
|
|
|
uavcan::Publisher<uavcan::mavlink::Message> publisher(node);
|
|
|
|
// Will be initialized ad-hoc
|
|
ASSERT_TRUE(publisher.getTransferSender());
|
|
}
|