Files
photoprism/internal/api/config_options_test.go
2025-02-03 12:29:02 +01:00

52 lines
1.1 KiB
Go

package api
import (
"net/http"
"testing"
"github.com/tidwall/gjson"
"github.com/stretchr/testify/assert"
)
func TestGetConfig(t *testing.T) {
t.Run("Success", func(t *testing.T) {
app, router, conf := NewApiTest()
GetClientConfig(router)
r := PerformRequest(app, "GET", "/api/v1/config")
val := gjson.Get(r.Body.String(), "flags")
if conf.Develop() {
assert.Equal(t, "public debug test sponsor develop experimental settings", val.String())
} else {
assert.Equal(t, "public debug test sponsor experimental settings", val.String())
}
assert.Equal(t, http.StatusOK, r.Code)
})
}
func TestGetConfigOptions(t *testing.T) {
t.Run("Forbidden", func(t *testing.T) {
app, router, _ := NewApiTest()
GetConfigOptions(router)
r := PerformRequest(app, "GET", "/api/v1/config/options")
assert.Equal(t, http.StatusForbidden, r.Code)
})
}
func TestSaveConfigOptions(t *testing.T) {
t.Run("Forbidden", func(t *testing.T) {
app, router, _ := NewApiTest()
SaveConfigOptions(router)
r := PerformRequest(app, "POST", "/api/v1/config/options")
assert.Equal(t, http.StatusForbidden, r.Code)
})
}