mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-26 21:01:58 +08:00
28 lines
720 B
Go
28 lines
720 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/tidwall/gjson"
|
|
|
|
"github.com/photoprism/photoprism/internal/service/cluster"
|
|
)
|
|
|
|
func TestClusterMetrics_EmptyCounts(t *testing.T) {
|
|
app, router, conf := NewApiTest()
|
|
conf.Options().NodeRole = cluster.RolePortal
|
|
conf.Options().ClusterCIDR = "192.0.2.0/24"
|
|
|
|
ClusterMetrics(router)
|
|
token := AuthenticateAdmin(app, router)
|
|
|
|
resp := AuthenticatedRequest(app, http.MethodGet, "/api/v1/cluster/metrics", token)
|
|
assert.Equal(t, http.StatusOK, resp.Code)
|
|
|
|
body := resp.Body.String()
|
|
assert.Equal(t, "192.0.2.0/24", gjson.Get(body, "clusterCidr").String())
|
|
assert.Equal(t, int64(0), gjson.Get(body, "nodes.total").Int())
|
|
}
|