28 lines
753 B
Go
28 lines
753 B
Go
package openweather
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gitea.maximumdirect.net/ejr/feedkit/config"
|
|
"gitea.maximumdirect.net/ejr/feedkit/event"
|
|
"gitea.maximumdirect.net/ejr/weatherfeeder/standards"
|
|
)
|
|
|
|
func TestObservationSourceAdvertisesKinds(t *testing.T) {
|
|
src, err := NewObservationSource(config.SourceConfig{
|
|
Name: "openweather-observation-test",
|
|
Driver: DriverObservation,
|
|
Mode: config.SourceModePoll,
|
|
Params: map[string]any{
|
|
"url": "https://example.invalid?units=metric",
|
|
"user_agent": "test-agent",
|
|
},
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("NewObservationSource() error = %v", err)
|
|
}
|
|
if got := src.Kinds(); len(got) != 1 || got[0] != event.Kind(standards.KindObservation) {
|
|
t.Fatalf("Kinds() = %#v, want [observation]", got)
|
|
}
|
|
}
|