Robin Mueller
5907f8ee9d
This PR adds the packet stack for the CCSDS File Delivery Protocol. It also refactors the existing TMTC infastructure to allow sending of CFDP packets to the CCSDS handlers. This includes the whole PDU (Protocol Data Unit) stack: - File Data PDUs and all file directive PDUs - ACK PDU - NAK PDU - Metadata PDU - Finished PDU - Prompt PDU - Keep Alive PDU - EOF PDU The PR includes a full set of unittests for the packet stack with a coverage of 90+ %. The refactoring of the existing TMTC infastructure includes non-ideal solutions like diamond inheritance. Avoiding this solution would require refactoring the packet stack. This would be a good idea anyway because the existing stack is tightly coupled to the FSFW, making reuse more difficult if only the stack is planned to be used without the store functionalities etc. The PDU implementation provided here is only weakly coupled to the FSFW, only using components like returnvalues or the Serialization modules. There are dedicated serializers and deserializers, which also helps in creating small focused modules which are easy to test. Some of the modules here were provied by Matthias Tompert.
125 lines
5.4 KiB
C++
125 lines
5.4 KiB
C++
#include <catch2/catch_test_macros.hpp>
|
|
|
|
#include "fsfw/cfdp/pdu/EofPduDeserializer.h"
|
|
#include "fsfw/cfdp/pdu/EofPduSerializer.h"
|
|
#include "fsfw/globalfunctions/arrayprinter.h"
|
|
|
|
#include <array>
|
|
|
|
TEST_CASE( "EOF PDU" , "[EofPdu]") {
|
|
using namespace cfdp;
|
|
|
|
ReturnValue_t result = HasReturnvaluesIF::RETURN_OK;
|
|
std::array<uint8_t, 128> buf = {};
|
|
uint8_t* bufPtr = buf.data();
|
|
size_t sz = 0;
|
|
EntityId destId(WidthInBytes::TWO_BYTES, 2);
|
|
EntityIdTlv faultLoc(destId);
|
|
FileSize fileSize(12);
|
|
// We can already set the fault location, it will be ignored
|
|
EofInfo eofInfo(cfdp::ConditionCode::NO_ERROR, 5, fileSize, &faultLoc);
|
|
TransactionSeqNum seqNum(WidthInBytes::TWO_BYTES, 15);
|
|
EntityId sourceId(WidthInBytes::TWO_BYTES, 1);
|
|
|
|
PduConfig pduConf(TransmissionModes::ACKNOWLEDGED, seqNum, sourceId, destId);
|
|
|
|
auto eofSerializer = EofPduSerializer(pduConf, eofInfo);
|
|
SECTION("Serialize") {
|
|
result = eofSerializer.serialize(&bufPtr, &sz, buf.size(),
|
|
SerializeIF::Endianness::NETWORK);
|
|
REQUIRE(result == HasReturnvaluesIF::RETURN_OK);
|
|
REQUIRE(((buf[1] << 8) | buf[2]) == 10);
|
|
uint32_t checksum = 0;
|
|
result = SerializeAdapter::deSerialize(&checksum, buf.data() + sz - 8, nullptr,
|
|
SerializeIF::Endianness::NETWORK);
|
|
REQUIRE(result == HasReturnvaluesIF::RETURN_OK);
|
|
REQUIRE(checksum == 5);
|
|
uint32_t fileSizeVal = 0;
|
|
result = SerializeAdapter::deSerialize(&fileSizeVal, buf.data() + sz - 4, nullptr,
|
|
SerializeIF::Endianness::NETWORK);
|
|
REQUIRE(result == HasReturnvaluesIF::RETURN_OK);
|
|
REQUIRE(fileSizeVal == 12);
|
|
REQUIRE(buf[sz - 10] == cfdp::FileDirectives::EOF_DIRECTIVE);
|
|
REQUIRE(buf[sz - 9] == 0x00);
|
|
REQUIRE(sz == 20);
|
|
|
|
eofInfo.setConditionCode(cfdp::ConditionCode::FILESTORE_REJECTION);
|
|
eofInfo.setFileSize(0x10ffffff10, true);
|
|
pduConf.largeFile = true;
|
|
// Should serialize with fault location now
|
|
auto serializeWithFaultLocation = EofPduSerializer(pduConf, eofInfo);
|
|
bufPtr = buf.data();
|
|
sz = 0;
|
|
result = serializeWithFaultLocation.serialize(&bufPtr, &sz, buf.size(),
|
|
SerializeIF::Endianness::NETWORK);
|
|
REQUIRE(result == HasReturnvaluesIF::RETURN_OK);
|
|
REQUIRE(sz == 28);
|
|
REQUIRE(buf[10] == cfdp::FileDirectives::EOF_DIRECTIVE);
|
|
REQUIRE(buf[11] >> 4 == cfdp::ConditionCode::FILESTORE_REJECTION);
|
|
uint64_t fileSizeLarge = 0;
|
|
result = SerializeAdapter::deSerialize(&fileSizeLarge, buf.data() + 16, nullptr,
|
|
SerializeIF::Endianness::NETWORK);
|
|
REQUIRE(fileSizeLarge == 0x10ffffff10);
|
|
REQUIRE(buf[sz - 4] == cfdp::TlvTypes::ENTITY_ID);
|
|
// width of entity ID is 2
|
|
REQUIRE(buf[sz - 3] == 2);
|
|
uint16_t entityIdRaw = 0;
|
|
result = SerializeAdapter::deSerialize(&entityIdRaw, buf.data() + sz - 2, nullptr,
|
|
SerializeIF::Endianness::NETWORK);
|
|
REQUIRE(entityIdRaw == 2);
|
|
bufPtr = buf.data();
|
|
sz = 0;
|
|
for(size_t idx = 0; idx < 27; idx++) {
|
|
result = serializeWithFaultLocation.serialize(&bufPtr, &sz, idx,
|
|
SerializeIF::Endianness::NETWORK);
|
|
REQUIRE(result == SerializeIF::BUFFER_TOO_SHORT);
|
|
bufPtr = buf.data();
|
|
sz = 0;
|
|
}
|
|
eofInfo.setChecksum(16);
|
|
eofInfo.setFaultLoc(nullptr);
|
|
}
|
|
|
|
SECTION("Deserialize") {
|
|
result = eofSerializer.serialize(&bufPtr, &sz, buf.size(),
|
|
SerializeIF::Endianness::NETWORK);
|
|
REQUIRE(result == HasReturnvaluesIF::RETURN_OK);
|
|
EntityIdTlv tlv(destId);
|
|
EofInfo emptyInfo(&tlv);
|
|
auto deserializer = EofPduDeserializer(buf.data(), buf.size(), emptyInfo);
|
|
result = deserializer.parseData();
|
|
REQUIRE(result == HasReturnvaluesIF::RETURN_OK);
|
|
REQUIRE(emptyInfo.getConditionCode() == cfdp::ConditionCode::NO_ERROR);
|
|
REQUIRE(emptyInfo.getChecksum() == 5);
|
|
REQUIRE(emptyInfo.getFileSize().getSize() == 12);
|
|
|
|
eofInfo.setConditionCode(cfdp::ConditionCode::FILESTORE_REJECTION);
|
|
eofInfo.setFileSize(0x10ffffff10, true);
|
|
pduConf.largeFile = true;
|
|
// Should serialize with fault location now
|
|
auto serializeWithFaultLocation = EofPduSerializer(pduConf, eofInfo);
|
|
bufPtr = buf.data();
|
|
sz = 0;
|
|
result = serializeWithFaultLocation.serialize(&bufPtr, &sz, buf.size(),
|
|
SerializeIF::Endianness::NETWORK);
|
|
auto deserializer2 = EofPduDeserializer(buf.data(), buf.size(), emptyInfo);
|
|
result = deserializer2.parseData();
|
|
REQUIRE(result == HasReturnvaluesIF::RETURN_OK);
|
|
REQUIRE(emptyInfo.getConditionCode() == cfdp::ConditionCode::FILESTORE_REJECTION);
|
|
REQUIRE(emptyInfo.getChecksum() == 5);
|
|
REQUIRE(emptyInfo.getFileSize().getSize() == 0x10ffffff10);
|
|
REQUIRE(emptyInfo.getFaultLoc()->getType() == cfdp::TlvTypes::ENTITY_ID);
|
|
REQUIRE(emptyInfo.getFaultLoc()->getSerializedSize() == 4);
|
|
uint16_t destId = emptyInfo.getFaultLoc()->getEntityId().getValue();
|
|
REQUIRE(destId == 2);
|
|
for(size_t maxSz = 0; maxSz < deserializer2.getWholePduSize() - 1; maxSz++) {
|
|
auto invalidDeser = EofPduDeserializer(buf.data(), maxSz, emptyInfo);
|
|
result = invalidDeser.parseData();
|
|
REQUIRE(result != HasReturnvaluesIF::RETURN_OK);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|