photoprism/internal/query/geo_result_test.go

41 lines
764 B
Go
Raw Normal View History

2020-05-13 09:57:54 +00:00
package query
import (
"testing"
"time"
2020-11-21 17:08:41 +00:00
"github.com/stretchr/testify/assert"
2020-05-13 09:57:54 +00:00
)
func TestGeoResult_Lat(t *testing.T) {
geo := GeoResult{
ID: "123",
PhotoLat: 7.775,
PhotoLng: 8.775,
PhotoUID: "",
2020-05-13 09:57:54 +00:00
PhotoTitle: "",
PhotoFavorite: false,
FileHash: "",
FileWidth: 0,
FileHeight: 0,
TakenAt: time.Time{},
}
assert.Equal(t, 7.775000095367432, geo.Lat())
}
func TestGeoResult_Lng(t *testing.T) {
geo := GeoResult{
ID: "123",
PhotoLat: 7.775,
PhotoLng: 8.775,
PhotoUID: "",
2020-05-13 09:57:54 +00:00
PhotoTitle: "",
PhotoFavorite: false,
FileHash: "",
FileWidth: 0,
FileHeight: 0,
TakenAt: time.Time{},
}
assert.Equal(t, 8.774999618530273, geo.Lng())
}