photoprism/internal/entity/place_fixtures_test.go
Michael Mayer 5648c9616e Backend: Refactor location data tables and entities
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-07-12 08:27:05 +02:00

37 lines
1 KiB
Go

package entity
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestPlaceMap_Get(t *testing.T) {
t.Run("get existing place", func(t *testing.T) {
r := PlaceFixtures.Get("mexico")
assert.Equal(t, "Teotihuacán", r.PlaceCity)
assert.Equal(t, "State of Mexico", r.PlaceState)
assert.IsType(t, Place{}, r)
})
t.Run("get not existing place", func(t *testing.T) {
r := PlaceFixtures.Get("xxx")
assert.Equal(t, "Unknown", r.PlaceCity)
assert.Equal(t, "Unknown", r.PlaceState)
assert.IsType(t, Place{}, r)
})
}
func TestPlaceMap_Pointer(t *testing.T) {
t.Run("get existing place pointer", func(t *testing.T) {
r := PlaceFixtures.Pointer("mexico")
assert.Equal(t, "Teotihuacán", r.PlaceCity)
assert.Equal(t, "State of Mexico", r.PlaceState)
assert.IsType(t, &Place{}, r)
})
t.Run("get not existing place pointer", func(t *testing.T) {
r := PlaceFixtures.Pointer("xxx")
assert.Equal(t, "Unknown", r.PlaceCity)
assert.Equal(t, "Unknown", r.PlaceState)
assert.IsType(t, &Place{}, r)
})
}