photoprism/internal/maps/osm/title_test.go
Michael Mayer 6da8bd098a Backend: Add support for new Places API #173
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2019-12-31 07:16:11 +01:00

40 lines
1.2 KiB
Go

package osm
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestOSM_Name(t *testing.T) {
t.Run("Nice Name", func(t *testing.T) {
l := &Location{LocCategory: "natural", LocName: "Nice Name", LocType: "hill", LocDisplayName: "dipslay name"}
assert.Equal(t, "Nice Name", l.Name())
})
t.Run("Water", func(t *testing.T) {
l := &Location{LocCategory: "", LocName: "", LocType: "water", LocDisplayName: "dipslay name"}
assert.Equal(t, "Water", l.Name())
})
t.Run("Nice Name 2", func(t *testing.T) {
l := &Location{LocCategory: "shop", LocName: "Nice Name 2", LocType: "", LocDisplayName: "dipslay name"}
assert.Equal(t, "Nice Name 2", l.Name())
})
t.Run("Cat", func(t *testing.T) {
l := &Location{LocCategory: "xxx", LocName: "Cat,Dog", LocType: "", LocDisplayName: "dipslay name"}
assert.Equal(t, "Cat", l.Name())
})
t.Run("airport", func(t *testing.T) {
l := &Location{LocCategory: "aeroway", LocName: "", LocType: "", LocDisplayName: "dipslay name"}
assert.Equal(t, "Airport", l.Name())
})
t.Run("Cow", func(t *testing.T) {
l := &Location{LocCategory: "xxx", LocName: "Cow - Cat - Dog", LocType: "", LocDisplayName: "dipslay name"}
assert.Equal(t, "Cow", l.Name())
})
}