mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
* fix(.clang-tidy): `Checks` is supposed to be a comma separated list of checks * fix clang-tidy warning * fix a few lint warnings * run clang-format * more format
72 lines
2.7 KiB
C++
72 lines
2.7 KiB
C++
// ======================================================================
|
|
// \title BadDescriptorFile.cpp
|
|
// \author Rob Bocchino
|
|
// \brief BadDescriptorFile implementation
|
|
//
|
|
// \copyright
|
|
// Copyright (C) 2009-2018 California Institute of Technology.
|
|
// ALL RIGHTS RESERVED. United States Government Sponsorship
|
|
// acknowledged.
|
|
//
|
|
// ======================================================================
|
|
|
|
#include "Svc/CmdSequencer/test/ut/SequenceFiles/BadDescriptorFile.hpp"
|
|
#include "Svc/CmdSequencer/test/ut/SequenceFiles/AMPCS/AMPCS.hpp"
|
|
#include "Svc/CmdSequencer/test/ut/SequenceFiles/Buffers.hpp"
|
|
#include "Svc/CmdSequencer/test/ut/SequenceFiles/FPrime/FPrime.hpp"
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace Svc {
|
|
|
|
namespace SequenceFiles {
|
|
|
|
BadDescriptorFile ::BadDescriptorFile(const U32 a_n, const Format::t a_format) : File(a_format), n(a_n) {
|
|
Fw::String baseName;
|
|
baseName.format("bad_descriptor_%u", a_n);
|
|
this->setName(baseName.toChar());
|
|
}
|
|
|
|
void BadDescriptorFile ::serializeFPrime(Fw::SerializeBufferBase& buffer) {
|
|
// Header
|
|
const TimeBase timeBase = TimeBase::TB_WORKSTATION_TIME;
|
|
const U32 timeContext = 0;
|
|
const U32 recordDataSize = this->n * SequenceFiles::FPrime::Records::STANDARD_SIZE;
|
|
const U32 dataSize = recordDataSize + FPrime::CRCs::SIZE;
|
|
FPrime::Headers::serialize(dataSize, this->n, timeBase, timeContext, buffer);
|
|
// Records
|
|
for (U32 record = 0; record < this->n; record++) {
|
|
Fw::Time t(TimeBase::TB_WORKSTATION_TIME, 0, 0);
|
|
// Force an invalid record descriptor
|
|
FPrime::Records::Descriptor descriptor =
|
|
static_cast<FPrime::Records::Descriptor>( // NOLINT(clang-analyzer-optin.core.EnumCastOutOfRange)
|
|
// intentional test
|
|
10);
|
|
FPrime::Records::serialize(descriptor, t, record, record + 1, buffer);
|
|
}
|
|
// CRC
|
|
FPrime::CRCs::serialize(buffer);
|
|
}
|
|
|
|
void BadDescriptorFile ::serializeAMPCS(Fw::SerializeBufferBase& buffer) {
|
|
// Header
|
|
AMPCS::Headers::serialize(buffer);
|
|
// Records
|
|
for (U32 i = 0; i < this->n; ++i) {
|
|
// Force an invalid time flag
|
|
const AMPCSSequence::Record::TimeFlag::t timeFlag =
|
|
static_cast<AMPCSSequence::Record::TimeFlag::t>( // NOLINT(clang-analyzer-optin.core.EnumCastOutOfRange)
|
|
// intentional test
|
|
10);
|
|
const AMPCSSequence::Record::Time::t time = 0;
|
|
const AMPCSSequence::Record::Opcode::t opcode = i;
|
|
const U32 argument = i + 1;
|
|
AMPCS::Records::serialize(timeFlag, time, opcode, argument, buffer);
|
|
}
|
|
// CRC
|
|
AMPCS::CRCs::createFile(buffer, this->getName().toChar());
|
|
}
|
|
|
|
} // namespace SequenceFiles
|
|
|
|
} // namespace Svc
|