// SPDX-FileCopyrightText: 2023 Winni Neessen // // SPDX-License-Identifier: MIT package meteologix import ( "testing" "time" ) func TestCondition_Condition(t *testing.T) { tc := Condition{ dt: time.Date(2023, 5, 23, 8, 50, 0, 0, time.UTC), s: SourceAnalysis, sv: "cloudy", } if tc.Condition() != CondCloudy { t.Errorf("Condition failed, expected: %s, got: %s", CondCloudy.String(), tc.Condition().String()) } tc = Condition{ dt: time.Date(2023, 5, 23, 8, 50, 0, 0, time.UTC), s: SourceAnalysis, sv: "non-existing", } if tc.Condition() != CondUnknown { t.Errorf("Condition failed, expected: %s, got: %s", CondUnknown.String(), tc.Condition().String()) } tc = Condition{na: true} if tc.Condition() != CondUnknown { t.Errorf("Condition failed, expected: %s, got: %s", CondUnknown.String(), tc.Condition().String()) } ct := ConditionType("foo") if ct.String() != CondUnknown.String() { t.Errorf("Condition.String for unknown type failed, expected: %s, got: %s", CondUnknown.String(), ct.String()) } }