mirror of
https://github.com/photoprism/photoprism.git
synced 2026-07-17 16:49:04 +00:00
Mirror the lens make/model editing surface for cameras: entity UpdateMakeModel/SaveForm, form validation, query, search, the GET/PUT /api/v1/cameras endpoints, and the cameras CLI command, plus a cameras ACL resource and scope. Also tidy the lens surface for parity: self-validating SaveForm, empty make/model guard, X-Count search header, service-role grant, the empty-id/slug docs, and order cameras before lenses everywhere.
33 lines
914 B
Go
33 lines
914 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/tidwall/gjson"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestSearchCameras(t *testing.T) {
|
|
t.Run("Success", func(t *testing.T) {
|
|
app, router, _ := NewApiTest()
|
|
SearchCameras(router)
|
|
r := PerformRequest(app, "GET", "/api/v1/cameras?count=15")
|
|
count := gjson.Get(r.Body.String(), "#")
|
|
assert.Greater(t, count.Int(), int64(0))
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
result := r.Result()
|
|
xCount, err := strconv.Atoi(result.Header.Get("X-Count"))
|
|
assert.NoError(t, err, "strconv for X-Count failed")
|
|
// X-Count must equal the number of records in the body.
|
|
assert.Equal(t, int(count.Int()), xCount)
|
|
})
|
|
t.Run("InvalidRequest", func(t *testing.T) {
|
|
app, router, _ := NewApiTest()
|
|
SearchCameras(router)
|
|
r := PerformRequest(app, "GET", "/api/v1/cameras?xxx=15")
|
|
assert.Equal(t, http.StatusBadRequest, r.Code)
|
|
})
|
|
}
|