photoprism/internal/maps/osm/categories_test.go

37 lines
911 B
Go
Raw Normal View History

//go:build osm
// +build osm
2019-12-22 20:38:33 +00:00
package osm
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestOSM_Category(t *testing.T) {
t.Run("hill", func(t *testing.T) {
2020-10-01 10:15:43 +00:00
l := &Location{LocCategory: "natural", LocName: "Nice title", LocType: "hill", LocDisplayName: "display name"}
2019-12-22 20:38:33 +00:00
assert.Equal(t, "hill", l.Category())
})
t.Run("water", func(t *testing.T) {
2020-10-01 10:15:43 +00:00
l := &Location{LocCategory: "", LocName: "Nice title", LocType: "water", LocDisplayName: "display name"}
2019-12-22 20:38:33 +00:00
assert.Equal(t, "water", l.Category())
})
t.Run("shop", func(t *testing.T) {
2020-10-01 10:15:43 +00:00
l := &Location{LocCategory: "shop", LocName: "Nice title", LocType: "", LocDisplayName: "display name"}
2019-12-22 20:38:33 +00:00
assert.Equal(t, "shop", l.Category())
})
t.Run("no label found", func(t *testing.T) {
2020-10-01 10:15:43 +00:00
l := &Location{LocCategory: "xxx", LocName: "Nice title", LocType: "", LocDisplayName: "display name"}
2019-12-22 20:38:33 +00:00
assert.Equal(t, "", l.Category())
})
}