2022-07-18 08:59:40 +02:00
|
|
|
#ifndef TESTS_SRC_FSFW_TESTS_UNIT_DEVICEHANDLER_DEVICEHANDLERMOCK_H_
|
|
|
|
#define TESTS_SRC_FSFW_TESTS_UNIT_DEVICEHANDLER_DEVICEHANDLERMOCK_H_
|
|
|
|
|
|
|
|
#include <fsfw/devicehandlers/DeviceHandlerBase.h>
|
|
|
|
|
|
|
|
class DeviceHandlerMock : public DeviceHandlerBase {
|
|
|
|
public:
|
2024-11-06 14:18:32 +01:00
|
|
|
static constexpr DeviceCommandId_t SIMPLE_COMMAND = 1;
|
|
|
|
static constexpr DeviceCommandId_t PERIODIC_REPLY = 2;
|
2022-07-18 08:59:40 +02:00
|
|
|
|
2024-11-06 14:18:32 +01:00
|
|
|
static constexpr uint8_t SIMPLE_COMMAND_DATA = 1;
|
|
|
|
static constexpr uint8_t PERIODIC_REPLY_DATA = 2;
|
2022-07-18 08:59:40 +02:00
|
|
|
|
|
|
|
DeviceHandlerMock(object_id_t objectId, object_id_t deviceCommunication, CookieIF *comCookie,
|
|
|
|
FailureIsolationBase *fdirInstance);
|
2024-11-06 14:18:32 +01:00
|
|
|
~DeviceHandlerMock() override;
|
2022-07-18 08:59:40 +02:00
|
|
|
void changePeriodicReplyCountdown(uint32_t timeout);
|
|
|
|
void changeSimpleCommandReplyCountdown(uint32_t timeout);
|
|
|
|
void resetPeriodicReplyState();
|
2024-11-06 14:18:32 +01:00
|
|
|
bool getPeriodicReplyReceived() const;
|
2022-07-18 08:59:40 +02:00
|
|
|
ReturnValue_t enablePeriodicReply(DeviceCommandId_t replyId);
|
|
|
|
ReturnValue_t disablePeriodicReply(DeviceCommandId_t replyId);
|
2024-05-24 14:29:42 +02:00
|
|
|
|
|
|
|
ReturnValue_t initialize() override;
|
2024-11-05 17:02:45 +01:00
|
|
|
|
2024-11-07 12:26:00 +01:00
|
|
|
ReturnValue_t serializeHkDataset(dp::structure_id_t structureId, uint8_t *buf,
|
|
|
|
size_t maxSize) override;
|
2024-11-05 17:02:45 +01:00
|
|
|
|
2024-11-07 12:26:00 +01:00
|
|
|
ReturnValue_t specifyHkDatasets(std::vector<hk::SetSpecification> &setList) override;
|
2024-11-05 17:02:45 +01:00
|
|
|
|
2024-11-07 12:26:00 +01:00
|
|
|
dp::SharedPool *getOptionalSharedPool() override;
|
2022-07-18 08:59:40 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void doStartUp() override;
|
|
|
|
void doShutDown() override;
|
|
|
|
ReturnValue_t buildNormalDeviceCommand(DeviceCommandId_t *id) override;
|
|
|
|
ReturnValue_t buildTransitionDeviceCommand(DeviceCommandId_t *id) override;
|
|
|
|
ReturnValue_t buildCommandFromCommand(DeviceCommandId_t deviceCommand, const uint8_t *commandData,
|
|
|
|
size_t commandDataLen) override;
|
|
|
|
ReturnValue_t scanForReply(const uint8_t *start, size_t len, DeviceCommandId_t *foundId,
|
|
|
|
size_t *foundLen) override;
|
|
|
|
ReturnValue_t interpretDeviceReply(DeviceCommandId_t id, const uint8_t *packet) override;
|
|
|
|
void fillCommandAndReplyMap() override;
|
|
|
|
uint32_t getTransitionDelayMs(Mode_t modeFrom, Mode_t modeTo) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Countdown simpleCommandReplyTimeout = Countdown(1000);
|
|
|
|
Countdown periodicReplyCountdown = Countdown(1000);
|
|
|
|
|
2024-11-06 14:18:32 +01:00
|
|
|
uint8_t commandBuffer[1]{};
|
2022-07-18 08:59:40 +02:00
|
|
|
|
|
|
|
bool periodicReplyReceived = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* TESTS_SRC_FSFW_TESTS_UNIT_DEVICEHANDLER_DEVICEHANDLERMOCK_H_ */
|