mirror of
https://github.com/esphome/esphome.git
synced 2026-09-27 15:00:24 +00:00
57 lines
1.8 KiB
C++
57 lines
1.8 KiB
C++
#include <gtest/gtest.h>
|
|
#include "esphome/components/climate_ir/climate_ir.h"
|
|
|
|
namespace esphome::climate_ir::testing {
|
|
|
|
class TestClimateIR : public ClimateIR {
|
|
public:
|
|
TestClimateIR() : ClimateIR(16.0f, 30.0f) {}
|
|
|
|
using ClimateIR::traits;
|
|
|
|
protected:
|
|
void transmit_state() override {}
|
|
};
|
|
|
|
// The HEAT_COOL default is covered in tests/component_tests/climate_ir.
|
|
|
|
TEST(ClimateIRTest, HeatCoolAdvertisedWhenSupported) {
|
|
TestClimateIR climate;
|
|
climate.set_supports_heat(true);
|
|
climate.set_supports_cool(true);
|
|
climate.set_supports_heat_cool(true);
|
|
EXPECT_TRUE(climate.traits().supports_mode(climate::CLIMATE_MODE_HEAT_COOL));
|
|
}
|
|
|
|
TEST(ClimateIRTest, HeatCoolNotAdvertisedWhenUnsupported) {
|
|
TestClimateIR climate;
|
|
climate.set_supports_heat(true);
|
|
climate.set_supports_cool(true);
|
|
climate.set_supports_heat_cool(false);
|
|
EXPECT_FALSE(climate.traits().supports_mode(climate::CLIMATE_MODE_HEAT_COOL));
|
|
}
|
|
|
|
TEST(ClimateIRTest, HeatCoolAdvertisedForCoolOnlyDeviceThatSupportsIt) {
|
|
TestClimateIR climate;
|
|
climate.set_supports_heat(false);
|
|
climate.set_supports_cool(true);
|
|
climate.set_supports_heat_cool(true);
|
|
auto traits = climate.traits();
|
|
EXPECT_TRUE(traits.supports_mode(climate::CLIMATE_MODE_HEAT_COOL));
|
|
EXPECT_FALSE(traits.supports_mode(climate::CLIMATE_MODE_HEAT));
|
|
}
|
|
|
|
TEST(ClimateIRTest, HeatAndCoolModesFollowTheirOwnFlags) {
|
|
TestClimateIR climate;
|
|
climate.set_supports_heat(false);
|
|
climate.set_supports_cool(true);
|
|
climate.set_supports_heat_cool(false);
|
|
auto traits = climate.traits();
|
|
EXPECT_TRUE(traits.supports_mode(climate::CLIMATE_MODE_COOL));
|
|
EXPECT_FALSE(traits.supports_mode(climate::CLIMATE_MODE_HEAT));
|
|
EXPECT_FALSE(traits.supports_mode(climate::CLIMATE_MODE_HEAT_COOL));
|
|
EXPECT_TRUE(traits.supports_mode(climate::CLIMATE_MODE_OFF));
|
|
}
|
|
|
|
} // namespace esphome::climate_ir::testing
|