photoprism/internal/api/photos_search_geo_test.go

30 lines
561 B
Go
Raw Normal View History

2020-02-02 17:41:36 +00:00
package api
import (
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
2021-11-26 12:59:10 +00:00
func TestSearchGeo(t *testing.T) {
t.Run("GeoJSON", func(t *testing.T) {
app, router, _ := NewApiTest()
2020-02-02 17:41:36 +00:00
2021-11-26 12:59:10 +00:00
SearchGeo(router)
2020-02-02 17:41:36 +00:00
result := PerformRequest(app, "GET", "/api/v1/geo")
assert.Equal(t, http.StatusOK, result.Code)
})
t.Run("ViewerJSON", func(t *testing.T) {
app, router, _ := NewApiTest()
SearchGeo(router)
r := PerformRequest(app, "GET", "/api/v1/geo/view")
assert.Equal(t, http.StatusOK, r.Code)
t.Logf("response: %s", r.Body.String())
})
2020-02-02 17:41:36 +00:00
}