photoprism/internal/query/geo_result_test.go

40 lines
763 B
Go
Raw Normal View History

2020-05-13 11:57:54 +02:00
package query
import (
"github.com/stretchr/testify/assert"
"testing"
"time"
)
func TestGeoResult_Lat(t *testing.T) {
geo := GeoResult{
ID: "123",
PhotoLat: 7.775,
PhotoLng: 8.775,
PhotoUUID: "",
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,
PhotoUUID: "",
PhotoTitle: "",
PhotoFavorite: false,
FileHash: "",
FileWidth: 0,
FileHeight: 0,
TakenAt: time.Time{},
}
assert.Equal(t, 8.774999618530273, geo.Lng())
}