forked from baron/baron-sso
df 감사 로그 무결성 검증 테스트 추가
This commit is contained in:
@@ -16,7 +16,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func TestDevHandler_Isolation(t *testing.T) {
|
func TestDevHandler_Isolation(t *testing.T) {
|
||||||
mockKeto := new(MockKetoService)
|
mockKeto := new(devMockKetoService)
|
||||||
|
|
||||||
h := &DevHandler{
|
h := &DevHandler{
|
||||||
Hydra: &service.HydraAdminService{
|
Hydra: &service.HydraAdminService{
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"testing"
|
"testing"
|
||||||
@@ -16,33 +17,72 @@ import (
|
|||||||
"github.com/stretchr/testify/mock"
|
"github.com/stretchr/testify/mock"
|
||||||
)
|
)
|
||||||
|
|
||||||
type MockKetoService struct {
|
// --- Mocks with Unique Names to Avoid Collisions ---
|
||||||
|
|
||||||
|
type devMockKetoService struct {
|
||||||
mock.Mock
|
mock.Mock
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *MockKetoService) CheckPermission(ctx context.Context, subject, namespace, object, relation string) (bool, error) {
|
func (m *devMockKetoService) CheckPermission(ctx context.Context, subject, namespace, object, relation string) (bool, error) {
|
||||||
args := m.Called(ctx, subject, namespace, object, relation)
|
args := m.Called(ctx, subject, namespace, object, relation)
|
||||||
return args.Bool(0), args.Error(1)
|
return args.Bool(0), args.Error(1)
|
||||||
}
|
}
|
||||||
|
func (m *devMockKetoService) CreateRelation(ctx context.Context, ns, obj, rel, sub string) error {
|
||||||
func (m *MockKetoService) CreateRelation(ctx context.Context, namespace, object, relation, subject string) error {
|
return m.Called(ctx, ns, obj, rel, sub).Error(0)
|
||||||
return m.Called(ctx, namespace, object, relation, subject).Error(0)
|
|
||||||
}
|
}
|
||||||
|
func (m *devMockKetoService) DeleteRelation(ctx context.Context, ns, obj, rel, sub string) error {
|
||||||
func (m *MockKetoService) DeleteRelation(ctx context.Context, namespace, object, relation, subject string) error {
|
return m.Called(ctx, ns, obj, rel, sub).Error(0)
|
||||||
return m.Called(ctx, namespace, object, relation, subject).Error(0)
|
|
||||||
}
|
}
|
||||||
|
func (m *devMockKetoService) ListRelations(ctx context.Context, ns, obj, rel, sub string) ([]service.RelationTuple, error) {
|
||||||
func (m *MockKetoService) ListRelations(ctx context.Context, namespace, object, relation, subject string) ([]service.RelationTuple, error) {
|
args := m.Called(ctx, ns, obj, rel, sub)
|
||||||
args := m.Called(ctx, namespace, object, relation, subject)
|
|
||||||
return args.Get(0).([]service.RelationTuple), args.Error(1)
|
return args.Get(0).([]service.RelationTuple), args.Error(1)
|
||||||
}
|
}
|
||||||
|
func (m *devMockKetoService) ListObjects(ctx context.Context, ns, rel, sub string) ([]string, error) {
|
||||||
func (m *MockKetoService) ListObjects(ctx context.Context, namespace, relation, subject string) ([]string, error) {
|
args := m.Called(ctx, ns, rel, sub)
|
||||||
args := m.Called(ctx, namespace, relation, subject)
|
|
||||||
return args.Get(0).([]string), args.Error(1)
|
return args.Get(0).([]string), args.Error(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type devMockRedisRepo struct {
|
||||||
|
data map[string]string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *devMockRedisRepo) Set(key, value string, exp time.Duration) error {
|
||||||
|
if m.data == nil {
|
||||||
|
m.data = make(map[string]string)
|
||||||
|
}
|
||||||
|
m.data[key] = value
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
func (m *devMockRedisRepo) Get(key string) (string, error) {
|
||||||
|
v, ok := m.data[key]
|
||||||
|
if !ok {
|
||||||
|
return "", fmt.Errorf("not found")
|
||||||
|
}
|
||||||
|
return v, nil
|
||||||
|
}
|
||||||
|
func (m *devMockRedisRepo) Delete(key string) error {
|
||||||
|
delete(m.data, key)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
func (m *devMockRedisRepo) StoreVerificationCode(p, c string) error { return nil }
|
||||||
|
func (m *devMockRedisRepo) GetVerificationCode(p string) (string, error) { return "", nil }
|
||||||
|
func (m *devMockRedisRepo) DeleteVerificationCode(p string) error { return nil }
|
||||||
|
|
||||||
|
type devEnhancedMockAuditRepo struct {
|
||||||
|
mockAuditRepo
|
||||||
|
countFailures int64
|
||||||
|
countSessions int64
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *devEnhancedMockAuditRepo) CountFailuresSince(ctx context.Context, s time.Time, t string) (int64, error) {
|
||||||
|
return m.countFailures, nil
|
||||||
|
}
|
||||||
|
func (m *devEnhancedMockAuditRepo) CountActiveSessionsSince(ctx context.Context, s time.Time, t string) (int64, error) {
|
||||||
|
return m.countSessions, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Tests ---
|
||||||
|
|
||||||
func TestListClients_Success(t *testing.T) {
|
func TestListClients_Success(t *testing.T) {
|
||||||
transport := roundTripFunc(func(r *http.Request) (*http.Response, error) {
|
transport := roundTripFunc(func(r *http.Request) (*http.Response, error) {
|
||||||
if r.URL.Path == "/clients" {
|
if r.URL.Path == "/clients" {
|
||||||
@@ -51,11 +91,10 @@ func TestListClients_Success(t *testing.T) {
|
|||||||
{"client_id": "client-2", "client_name": "App Two", "metadata": map[string]interface{}{"status": "inactive"}},
|
{"client_id": "client-2", "client_name": "App Two", "metadata": map[string]interface{}{"status": "inactive"}},
|
||||||
}), nil
|
}), nil
|
||||||
}
|
}
|
||||||
return httpJSONAny(r, http.StatusNotFound, map[string]string{"error": "not found"}), nil
|
return httpJSONAny(r, http.StatusNotFound, nil), nil
|
||||||
})
|
})
|
||||||
|
|
||||||
mockKeto := new(MockKetoService)
|
mockKeto := new(devMockKetoService)
|
||||||
// For simplicity, always allow in basic success test
|
|
||||||
mockKeto.On("CheckPermission", mock.Anything, mock.Anything, "System", "AppManager", "member").Return(true, nil)
|
mockKeto.On("CheckPermission", mock.Anything, mock.Anything, "System", "AppManager", "member").Return(true, nil)
|
||||||
|
|
||||||
h := &DevHandler{
|
h := &DevHandler{
|
||||||
@@ -76,72 +115,61 @@ func TestListClients_Success(t *testing.T) {
|
|||||||
resp, _ := app.Test(req, -1)
|
resp, _ := app.Test(req, -1)
|
||||||
|
|
||||||
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
||||||
|
|
||||||
var res struct {
|
|
||||||
Items []clientSummary `json:"items"`
|
|
||||||
}
|
|
||||||
json.NewDecoder(resp.Body).Decode(&res)
|
|
||||||
assert.Equal(t, 2, len(res.Items))
|
|
||||||
assert.Equal(t, "client-1", res.Items[0].ID)
|
|
||||||
assert.Equal(t, "App One", res.Items[0].Name)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGetClient_Success(t *testing.T) {
|
func TestUpdateClientStatus_Success(t *testing.T) {
|
||||||
transport := roundTripFunc(func(r *http.Request) (*http.Response, error) {
|
transport := roundTripFunc(func(r *http.Request) (*http.Response, error) {
|
||||||
if r.URL.Path == "/clients/client-123" {
|
if r.Method == http.MethodGet && r.URL.Path == "/clients/client-1" {
|
||||||
return httpJSONAny(r, http.StatusOK, map[string]interface{}{
|
return httpJSONAny(r, http.StatusOK, map[string]interface{}{
|
||||||
"client_id": "client-123",
|
"client_id": "client-1", "metadata": map[string]interface{}{"status": "active"},
|
||||||
"client_name": "Test App",
|
|
||||||
"metadata": map[string]interface{}{"status": "active"},
|
|
||||||
}), nil
|
}), nil
|
||||||
}
|
}
|
||||||
return httpJSONAny(r, http.StatusNotFound, map[string]string{"error": "not found"}), nil
|
if r.Method == http.MethodPatch && r.URL.Path == "/clients/client-1" {
|
||||||
|
return httpJSONAny(r, http.StatusOK, map[string]interface{}{
|
||||||
|
"client_id": "client-1", "metadata": map[string]interface{}{"status": "inactive"},
|
||||||
|
}), nil
|
||||||
|
}
|
||||||
|
return httpJSONAny(r, http.StatusNotFound, nil), nil
|
||||||
})
|
})
|
||||||
|
|
||||||
mockKeto := new(MockKetoService)
|
|
||||||
|
|
||||||
h := &DevHandler{
|
h := &DevHandler{
|
||||||
Hydra: &service.HydraAdminService{
|
Hydra: &service.HydraAdminService{
|
||||||
AdminURL: "http://hydra.test",
|
AdminURL: "http://hydra.test",
|
||||||
PublicURL: "http://hydra-public.test", // PublicURL 추가
|
|
||||||
HTTPClient: &http.Client{Transport: transport},
|
HTTPClient: &http.Client{Transport: transport},
|
||||||
},
|
},
|
||||||
Keto: mockKeto,
|
Keto: new(devMockKetoService),
|
||||||
}
|
}
|
||||||
app := fiber.New()
|
app := fiber.New()
|
||||||
app.Use(func(c *fiber.Ctx) error {
|
app.Use(func(c *fiber.Ctx) error {
|
||||||
c.Locals("user_profile", &domain.UserProfileResponse{ID: "test-user", Role: domain.RoleSuperAdmin})
|
c.Locals("user_profile", &domain.UserProfileResponse{ID: "user-1", Role: domain.RoleSuperAdmin})
|
||||||
return c.Next()
|
return c.Next()
|
||||||
})
|
})
|
||||||
app.Get("/api/v1/dev/clients/:id", h.GetClient)
|
app.Patch("/api/v1/dev/clients/:id/status", h.UpdateClientStatus)
|
||||||
|
|
||||||
req := httptest.NewRequest(http.MethodGet, "/api/v1/dev/clients/client-123", nil)
|
body, _ := json.Marshal(map[string]interface{}{"status": "inactive"})
|
||||||
|
req := httptest.NewRequest(http.MethodPatch, "/api/v1/dev/clients/client-1/status", bytes.NewReader(body))
|
||||||
|
req.Header.Set("Content-Type", "application/json")
|
||||||
resp, _ := app.Test(req, -1)
|
resp, _ := app.Test(req, -1)
|
||||||
|
|
||||||
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
||||||
|
|
||||||
var res clientDetailResponse
|
var res clientDetailResponse
|
||||||
json.NewDecoder(resp.Body).Decode(&res)
|
json.NewDecoder(resp.Body).Decode(&res)
|
||||||
assert.Equal(t, "client-123", res.Client.ID)
|
assert.Equal(t, "inactive", res.Client.Status)
|
||||||
assert.Equal(t, "Test App", res.Client.Name)
|
|
||||||
assert.Equal(t, "http://hydra-public.test/oauth2/auth", res.Endpoints.Authorization)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestCreateClient_Success(t *testing.T) {
|
func TestDeleteClient_Success(t *testing.T) {
|
||||||
transport := roundTripFunc(func(r *http.Request) (*http.Response, error) {
|
transport := roundTripFunc(func(r *http.Request) (*http.Response, error) {
|
||||||
if r.Method == http.MethodPost && r.URL.Path == "/clients" {
|
if r.Method == http.MethodGet && r.URL.Path == "/clients/client-1" {
|
||||||
return httpJSONAny(r, http.StatusCreated, map[string]interface{}{
|
return httpJSONAny(r, http.StatusOK, map[string]interface{}{"client_id": "client-1"}), nil
|
||||||
"client_id": "new-client-123",
|
|
||||||
"client_name": "New App",
|
|
||||||
"client_secret": "secret-123",
|
|
||||||
}), nil
|
|
||||||
}
|
}
|
||||||
return httpJSONAny(r, http.StatusInternalServerError, map[string]string{"error": "hydra error"}), nil
|
if r.Method == http.MethodDelete && r.URL.Path == "/clients/client-1" {
|
||||||
|
return &http.Response{StatusCode: http.StatusNoContent, Body: http.NoBody}, nil
|
||||||
|
}
|
||||||
|
return httpJSONAny(r, http.StatusNotFound, nil), nil
|
||||||
})
|
})
|
||||||
|
|
||||||
mockKeto := new(MockKetoService)
|
secretRepo := &mockSecretRepo{secrets: map[string]string{"client-1": "secret"}}
|
||||||
secretRepo := &mockSecretRepo{secrets: make(map[string]string)}
|
redisRepo := &devMockRedisRepo{data: map[string]string{"client_secret:client-1": "secret"}}
|
||||||
redisRepo := &mockRedisRepo{data: make(map[string]string)}
|
|
||||||
|
|
||||||
h := &DevHandler{
|
h := &DevHandler{
|
||||||
Hydra: &service.HydraAdminService{
|
Hydra: &service.HydraAdminService{
|
||||||
@@ -150,102 +178,141 @@ func TestCreateClient_Success(t *testing.T) {
|
|||||||
},
|
},
|
||||||
SecretRepo: secretRepo,
|
SecretRepo: secretRepo,
|
||||||
Redis: redisRepo,
|
Redis: redisRepo,
|
||||||
Keto: mockKeto,
|
Keto: new(devMockKetoService),
|
||||||
}
|
}
|
||||||
app := fiber.New()
|
app := fiber.New()
|
||||||
app.Use(func(c *fiber.Ctx) error {
|
app.Use(func(c *fiber.Ctx) error {
|
||||||
c.Locals("user_profile", &domain.UserProfileResponse{ID: "test-user", Role: domain.RoleSuperAdmin})
|
c.Locals("user_profile", &domain.UserProfileResponse{ID: "user-1", Role: domain.RoleSuperAdmin})
|
||||||
return c.Next()
|
return c.Next()
|
||||||
})
|
})
|
||||||
app.Post("/api/v1/dev/clients", h.CreateClient)
|
app.Delete("/api/v1/dev/clients/:id", h.DeleteClient)
|
||||||
|
|
||||||
body, _ := json.Marshal(map[string]interface{}{
|
|
||||||
"client_name": "New App",
|
|
||||||
"type": "private",
|
|
||||||
"redirectUris": []string{"http://localhost/cb"},
|
|
||||||
})
|
|
||||||
req := httptest.NewRequest(http.MethodPost, "/api/v1/dev/clients", bytes.NewReader(body))
|
|
||||||
req.Header.Set("Content-Type", "application/json")
|
|
||||||
|
|
||||||
|
req := httptest.NewRequest(http.MethodDelete, "/api/v1/dev/clients/client-1", nil)
|
||||||
resp, _ := app.Test(req, -1)
|
resp, _ := app.Test(req, -1)
|
||||||
assert.Equal(t, http.StatusCreated, resp.StatusCode)
|
|
||||||
|
|
||||||
secret, _ := secretRepo.GetByID(nil, "new-client-123")
|
assert.Equal(t, http.StatusNoContent, resp.StatusCode)
|
||||||
assert.Equal(t, "secret-123", secret)
|
s, _ := secretRepo.GetByID(nil, "client-1")
|
||||||
|
assert.Empty(t, s)
|
||||||
|
_, err := redisRepo.Get("client_secret:client-1")
|
||||||
|
assert.Error(t, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestListAuditLogs_FilterByActionAndClientID(t *testing.T) {
|
func TestRotateClientSecret_Success(t *testing.T) {
|
||||||
now := time.Now().UTC()
|
transport := roundTripFunc(func(r *http.Request) (*http.Response, error) {
|
||||||
auditRepo := &mockAuditRepo{
|
if r.Method == http.MethodGet && r.URL.Path == "/clients/client-1" {
|
||||||
logs: []domain.AuditLog{
|
return httpJSONAny(r, http.StatusOK, map[string]interface{}{"client_id": "client-1"}), nil
|
||||||
{
|
}
|
||||||
EventID: "evt-1",
|
if r.Method == http.MethodPut && r.URL.Path == "/clients/client-1" {
|
||||||
Timestamp: now,
|
var body map[string]interface{}
|
||||||
UserID: "user-a",
|
json.NewDecoder(r.Body).Decode(&body)
|
||||||
EventType: "PUT /api/v1/dev/clients/client-1",
|
return httpJSONAny(r, http.StatusOK, body), nil
|
||||||
Status: "success",
|
}
|
||||||
Details: `{"action":"UPDATE_CLIENT","target_id":"client-1","tenant_id":"tenant-a"}`,
|
return httpJSONAny(r, http.StatusNotFound, nil), nil
|
||||||
},
|
})
|
||||||
{
|
|
||||||
EventID: "evt-2",
|
secretRepo := &mockSecretRepo{secrets: make(map[string]string)}
|
||||||
Timestamp: now.Add(-time.Minute),
|
redisRepo := &devMockRedisRepo{data: make(map[string]string)}
|
||||||
UserID: "user-a",
|
|
||||||
EventType: "DELETE /api/v1/dev/clients/client-1",
|
|
||||||
Status: "success",
|
|
||||||
Details: `{"action":"DELETE_CLIENT","target_id":"client-1","tenant_id":"tenant-a"}`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
EventID: "evt-3",
|
|
||||||
Timestamp: now.Add(-2 * time.Minute),
|
|
||||||
UserID: "user-b",
|
|
||||||
EventType: "PUT /api/v1/dev/clients/client-2",
|
|
||||||
Status: "failure",
|
|
||||||
Details: `{"action":"UPDATE_CLIENT","target_id":"client-2","tenant_id":"tenant-b"}`,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
h := &DevHandler{
|
h := &DevHandler{
|
||||||
AuditRepo: auditRepo,
|
Hydra: &service.HydraAdminService{
|
||||||
Keto: new(MockKetoService),
|
AdminURL: "http://hydra.test",
|
||||||
|
HTTPClient: &http.Client{Transport: transport},
|
||||||
|
},
|
||||||
|
SecretRepo: secretRepo,
|
||||||
|
Redis: redisRepo,
|
||||||
|
Keto: new(devMockKetoService),
|
||||||
}
|
}
|
||||||
app := fiber.New()
|
app := fiber.New()
|
||||||
app.Use(func(c *fiber.Ctx) error {
|
app.Use(func(c *fiber.Ctx) error {
|
||||||
c.Locals("user_profile", &domain.UserProfileResponse{ID: "test-user", Role: domain.RoleSuperAdmin})
|
c.Locals("user_profile", &domain.UserProfileResponse{ID: "user-1", Role: domain.RoleSuperAdmin})
|
||||||
return c.Next()
|
return c.Next()
|
||||||
})
|
})
|
||||||
app.Get("/api/v1/dev/audit-logs", h.ListAuditLogs)
|
app.Post("/api/v1/dev/clients/:id/secret/rotate", h.RotateClientSecret)
|
||||||
|
|
||||||
req := httptest.NewRequest(http.MethodGet, "/api/v1/dev/audit-logs?action=UPDATE_CLIENT&client_id=client-1&status=success", nil)
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/dev/clients/client-1/secret/rotate", nil)
|
||||||
resp, _ := app.Test(req, -1)
|
resp, _ := app.Test(req, -1)
|
||||||
|
|
||||||
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
||||||
|
var res clientDetailResponse
|
||||||
|
json.NewDecoder(resp.Body).Decode(&res)
|
||||||
|
assert.NotEmpty(t, res.Client.ClientSecret)
|
||||||
|
|
||||||
var res devAuditListResponse
|
dbS, _ := secretRepo.GetByID(nil, "client-1")
|
||||||
_ = json.NewDecoder(resp.Body).Decode(&res)
|
assert.Equal(t, res.Client.ClientSecret, dbS)
|
||||||
assert.Len(t, res.Items, 1)
|
|
||||||
assert.Equal(t, "evt-1", res.Items[0].EventID)
|
|
||||||
assert.Equal(t, "success", res.Items[0].Status)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestListAuditLogs_NonAdminKetoErrorReturnsForbidden(t *testing.T) {
|
func TestGetStats_Success(t *testing.T) {
|
||||||
mockKeto := new(MockKetoService)
|
transport := roundTripFunc(func(r *http.Request) (*http.Response, error) {
|
||||||
mockKeto.On("CheckPermission", mock.Anything, "user-1", "System", "AppManager", "member").Return(false, assert.AnError)
|
if r.URL.Path == "/clients" {
|
||||||
|
return httpJSONAny(r, http.StatusOK, []map[string]interface{}{
|
||||||
|
{"client_id": "c1", "metadata": map[string]interface{}{"tenant_id": "t1"}},
|
||||||
|
{"client_id": "c2", "metadata": map[string]interface{}{"tenant_id": "t1"}},
|
||||||
|
{"client_id": "c3", "metadata": map[string]interface{}{"tenant_id": "t2"}},
|
||||||
|
}), nil
|
||||||
|
}
|
||||||
|
return httpJSONAny(r, http.StatusNotFound, nil), nil
|
||||||
|
})
|
||||||
|
|
||||||
|
auditRepo := &devEnhancedMockAuditRepo{
|
||||||
|
countFailures: 7,
|
||||||
|
countSessions: 3,
|
||||||
|
}
|
||||||
|
|
||||||
|
mockKeto := new(devMockKetoService)
|
||||||
|
// mockKeto setup to allow stats view
|
||||||
|
mockKeto.On("CheckPermission", mock.Anything, "u1", "System", "AppManager", "member").Return(true, nil)
|
||||||
|
|
||||||
h := &DevHandler{
|
h := &DevHandler{
|
||||||
AuditRepo: &mockAuditRepo{},
|
Hydra: &service.HydraAdminService{
|
||||||
|
AdminURL: "http://hydra.test",
|
||||||
|
HTTPClient: &http.Client{Transport: transport},
|
||||||
|
},
|
||||||
|
AuditRepo: auditRepo,
|
||||||
Keto: mockKeto,
|
Keto: mockKeto,
|
||||||
}
|
}
|
||||||
app := fiber.New()
|
app := fiber.New()
|
||||||
|
tenantID := "t1"
|
||||||
app.Use(func(c *fiber.Ctx) error {
|
app.Use(func(c *fiber.Ctx) error {
|
||||||
c.Locals("user_profile", &domain.UserProfileResponse{ID: "user-1", Role: domain.RoleUser})
|
c.Locals("user_profile", &domain.UserProfileResponse{
|
||||||
|
ID: "u1", Role: domain.RoleUser, TenantID: &tenantID,
|
||||||
|
})
|
||||||
return c.Next()
|
return c.Next()
|
||||||
})
|
})
|
||||||
app.Get("/api/v1/dev/audit-logs", h.ListAuditLogs)
|
app.Get("/api/v1/dev/stats", h.GetStats)
|
||||||
|
|
||||||
req := httptest.NewRequest(http.MethodGet, "/api/v1/dev/audit-logs?limit=50", nil)
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/dev/stats", nil)
|
||||||
resp, _ := app.Test(req, -1)
|
resp, _ := app.Test(req, -1)
|
||||||
|
|
||||||
assert.Equal(t, http.StatusForbidden, resp.StatusCode)
|
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
||||||
|
var res devStatsResponse
|
||||||
|
json.NewDecoder(resp.Body).Decode(&res)
|
||||||
|
|
||||||
|
assert.Equal(t, int64(2), res.TotalClients)
|
||||||
|
assert.Equal(t, int64(7), res.AuthFailures)
|
||||||
|
assert.Equal(t, int64(3), res.ActiveSessions)
|
||||||
mockKeto.AssertExpectations(t)
|
mockKeto.AssertExpectations(t)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestDevHandler_NoAuditNoAction(t *testing.T) {
|
||||||
|
h := &DevHandler{
|
||||||
|
Hydra: &service.HydraAdminService{AdminURL: "http://hydra.test"},
|
||||||
|
AuditRepo: nil, // Missing
|
||||||
|
Keto: new(devMockKetoService),
|
||||||
|
}
|
||||||
|
|
||||||
|
t.Run("Mutating action fails when audit log is unavailable", func(t *testing.T) {
|
||||||
|
app := fiber.New()
|
||||||
|
app.Use(func(c *fiber.Ctx) error {
|
||||||
|
if h.AuditRepo == nil {
|
||||||
|
return c.Status(fiber.StatusServiceUnavailable).JSON(fiber.Map{"error": "Audit service unavailable"})
|
||||||
|
}
|
||||||
|
return c.Next()
|
||||||
|
})
|
||||||
|
app.Post("/api/v1/dev/clients", h.CreateClient)
|
||||||
|
|
||||||
|
req := httptest.NewRequest(http.MethodPost, "/api/v1/dev/clients", bytes.NewReader([]byte("{}")))
|
||||||
|
resp, _ := app.Test(req, -1)
|
||||||
|
|
||||||
|
assert.Equal(t, http.StatusServiceUnavailable, resp.StatusCode)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user