mirror of
https://github.com/esphome/esphome.git
synced 2026-08-24 23:26:20 +00:00
Co-authored-by: Claude Fable 5 <noreply@anthropic.com> Co-authored-by: J. Nick Koston <nick@koston.org>
34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
#pragma once
|
|
#include <cstdint>
|
|
#include <vector>
|
|
#include "esphome/components/uart/uart_component.h"
|
|
|
|
namespace esphome::modbus::testing {
|
|
|
|
// A UART that discards all writes, for tests that never inspect the wire.
|
|
class NullUART : public uart::UARTComponent {
|
|
public:
|
|
NullUART() { this->set_baud_rate(115200); }
|
|
void write_array(const uint8_t *data, size_t len) override {}
|
|
bool peek_byte(uint8_t *data) override { return false; }
|
|
bool read_array(uint8_t *data, size_t len) override { return false; }
|
|
size_t available() override { return 0; }
|
|
uart::UARTFlushResult flush() override { return uart::UARTFlushResult::UART_FLUSH_RESULT_ASSUMED_SUCCESS; }
|
|
#if defined(USE_ESP8266) || defined(USE_ESP32)
|
|
void load_settings(bool dump_config) override {}
|
|
#endif
|
|
void check_logger_conflict() override {}
|
|
};
|
|
|
|
// A UART that records every byte written so tests can assert on the exact wire response.
|
|
class RecordingUART : public NullUART {
|
|
public:
|
|
void write_array(const uint8_t *data, size_t len) override {
|
|
this->written.insert(this->written.end(), data, data + len);
|
|
}
|
|
|
|
std::vector<uint8_t> written;
|
|
};
|
|
|
|
} // namespace esphome::modbus::testing
|