fsfw/unittests/mocks/cfdp/FaultHandlerMock.h

38 lines
1.1 KiB
C
Raw Normal View History

#ifndef FSFW_TESTS_FAULTHANDLERMOCK_H
#define FSFW_TESTS_FAULTHANDLERMOCK_H
2022-08-09 14:55:08 +02:00
#include <map>
#include <queue>
2022-08-09 15:46:42 +02:00
#include "fsfw/cfdp/handler/FaultHandlerBase.h"
2022-08-09 14:55:08 +02:00
namespace cfdp {
class FaultHandlerMock : public FaultHandlerBase {
2022-08-09 14:55:08 +02:00
public:
struct FaultInfo {
size_t callCount = 0;
std::queue<cfdp::ConditionCode> condCodes;
};
void noticeOfSuspensionCb(ConditionCode code) override;
void noticeOfCancellationCb(ConditionCode code) override;
void abandonCb(ConditionCode code) override;
void ignoreCb(ConditionCode code) override;
2022-08-09 14:55:08 +02:00
FaultInfo& getFhInfo(FaultHandlerCodes fhCode);
2022-08-09 15:09:43 +02:00
[[nodiscard]] bool faultCbWasCalled() const;
2022-08-09 14:55:08 +02:00
void reset();
private:
std::map<cfdp::FaultHandlerCodes, FaultInfo> fhInfoMap = {
std::pair{cfdp::FaultHandlerCodes::IGNORE_ERROR, FaultInfo()},
std::pair{cfdp::FaultHandlerCodes::NOTICE_OF_CANCELLATION, FaultInfo()},
std::pair{cfdp::FaultHandlerCodes::NOTICE_OF_SUSPENSION, FaultInfo()},
std::pair{cfdp::FaultHandlerCodes::ABANDON_TRANSACTION, FaultInfo()}};
};
} // namespace cfdp
#endif // FSFW_TESTS_FAULTHANDLERMOCK_H