forked from baron/baron-sso
230 lines
7.4 KiB
Go
230 lines
7.4 KiB
Go
package handler
|
|
|
|
import (
|
|
"baron-sso-backend/internal/domain"
|
|
"baron-sso-backend/internal/service"
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
type MockKetoService struct {
|
|
mock.Mock
|
|
}
|
|
|
|
func (m *MockKetoService) CheckPermission(ctx context.Context, subject, namespace, object, relation string) (bool, error) {
|
|
args := m.Called(ctx, subject, namespace, object, relation)
|
|
return args.Bool(0), args.Error(1)
|
|
}
|
|
|
|
func (m *MockKetoService) CreateRelation(ctx context.Context, namespace, object, relation, subject string) error {
|
|
return m.Called(ctx, namespace, object, relation, subject).Error(0)
|
|
}
|
|
|
|
func (m *MockKetoService) DeleteRelation(ctx context.Context, namespace, object, relation, subject string) error {
|
|
return m.Called(ctx, namespace, object, relation, subject).Error(0)
|
|
}
|
|
|
|
func (m *MockKetoService) ListRelations(ctx context.Context, namespace, object, relation, subject string) ([]service.RelationTuple, error) {
|
|
args := m.Called(ctx, namespace, object, relation, subject)
|
|
return args.Get(0).([]service.RelationTuple), args.Error(1)
|
|
}
|
|
|
|
func (m *MockKetoService) ListObjects(ctx context.Context, namespace, relation, subject string) ([]string, error) {
|
|
args := m.Called(ctx, namespace, relation, subject)
|
|
return args.Get(0).([]string), args.Error(1)
|
|
}
|
|
|
|
func TestListClients_Success(t *testing.T) {
|
|
transport := roundTripFunc(func(r *http.Request) (*http.Response, error) {
|
|
if r.URL.Path == "/clients" {
|
|
return httpJSONAny(r, http.StatusOK, []map[string]interface{}{
|
|
{"client_id": "client-1", "client_name": "App One", "metadata": map[string]interface{}{"status": "active"}},
|
|
{"client_id": "client-2", "client_name": "App Two", "metadata": map[string]interface{}{"status": "inactive"}},
|
|
}), nil
|
|
}
|
|
return httpJSONAny(r, http.StatusNotFound, map[string]string{"error": "not found"}), nil
|
|
})
|
|
|
|
mockKeto := new(MockKetoService)
|
|
// For simplicity, always allow in basic success test
|
|
mockKeto.On("CheckPermission", mock.Anything, mock.Anything, "System", "AppManager", "member").Return(true, nil)
|
|
|
|
h := &DevHandler{
|
|
Hydra: &service.HydraAdminService{
|
|
AdminURL: "http://hydra.test",
|
|
HTTPClient: &http.Client{Transport: transport},
|
|
},
|
|
Keto: mockKeto,
|
|
}
|
|
app := fiber.New()
|
|
app.Use(func(c *fiber.Ctx) error {
|
|
c.Locals("user_profile", &domain.UserProfileResponse{ID: "test-user", Role: domain.RoleSuperAdmin})
|
|
return c.Next()
|
|
})
|
|
app.Get("/api/v1/dev/clients", h.ListClients)
|
|
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/dev/clients", nil)
|
|
resp, _ := app.Test(req, -1)
|
|
|
|
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) {
|
|
transport := roundTripFunc(func(r *http.Request) (*http.Response, error) {
|
|
if r.URL.Path == "/clients/client-123" {
|
|
return httpJSONAny(r, http.StatusOK, map[string]interface{}{
|
|
"client_id": "client-123",
|
|
"client_name": "Test App",
|
|
"metadata": map[string]interface{}{"status": "active"},
|
|
}), nil
|
|
}
|
|
return httpJSONAny(r, http.StatusNotFound, map[string]string{"error": "not found"}), nil
|
|
})
|
|
|
|
mockKeto := new(MockKetoService)
|
|
|
|
h := &DevHandler{
|
|
Hydra: &service.HydraAdminService{
|
|
AdminURL: "http://hydra.test",
|
|
PublicURL: "http://hydra-public.test", // PublicURL 추가
|
|
HTTPClient: &http.Client{Transport: transport},
|
|
},
|
|
Keto: mockKeto,
|
|
}
|
|
app := fiber.New()
|
|
app.Use(func(c *fiber.Ctx) error {
|
|
c.Locals("user_profile", &domain.UserProfileResponse{ID: "test-user", Role: domain.RoleSuperAdmin})
|
|
return c.Next()
|
|
})
|
|
app.Get("/api/v1/dev/clients/:id", h.GetClient)
|
|
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/dev/clients/client-123", nil)
|
|
resp, _ := app.Test(req, -1)
|
|
|
|
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
|
|
|
var res clientDetailResponse
|
|
json.NewDecoder(resp.Body).Decode(&res)
|
|
assert.Equal(t, "client-123", res.Client.ID)
|
|
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) {
|
|
transport := roundTripFunc(func(r *http.Request) (*http.Response, error) {
|
|
if r.Method == http.MethodPost && r.URL.Path == "/clients" {
|
|
return httpJSONAny(r, http.StatusCreated, map[string]interface{}{
|
|
"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
|
|
})
|
|
|
|
mockKeto := new(MockKetoService)
|
|
secretRepo := &mockSecretRepo{secrets: make(map[string]string)}
|
|
redisRepo := &mockRedisRepo{data: make(map[string]string)}
|
|
|
|
h := &DevHandler{
|
|
Hydra: &service.HydraAdminService{
|
|
AdminURL: "http://hydra.test",
|
|
HTTPClient: &http.Client{Transport: transport},
|
|
},
|
|
SecretRepo: secretRepo,
|
|
Redis: redisRepo,
|
|
Keto: mockKeto,
|
|
}
|
|
app := fiber.New()
|
|
app.Use(func(c *fiber.Ctx) error {
|
|
c.Locals("user_profile", &domain.UserProfileResponse{ID: "test-user", Role: domain.RoleSuperAdmin})
|
|
return c.Next()
|
|
})
|
|
app.Post("/api/v1/dev/clients", h.CreateClient)
|
|
|
|
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")
|
|
|
|
resp, _ := app.Test(req, -1)
|
|
assert.Equal(t, http.StatusCreated, resp.StatusCode)
|
|
|
|
secret, _ := secretRepo.GetByID(nil, "new-client-123")
|
|
assert.Equal(t, "secret-123", secret)
|
|
}
|
|
|
|
func TestListAuditLogs_FilterByActionAndClientID(t *testing.T) {
|
|
now := time.Now().UTC()
|
|
auditRepo := &mockAuditRepo{
|
|
logs: []domain.AuditLog{
|
|
{
|
|
EventID: "evt-1",
|
|
Timestamp: now,
|
|
UserID: "user-a",
|
|
EventType: "PUT /api/v1/dev/clients/client-1",
|
|
Status: "success",
|
|
Details: `{"action":"UPDATE_CLIENT","target_id":"client-1","tenant_id":"tenant-a"}`,
|
|
},
|
|
{
|
|
EventID: "evt-2",
|
|
Timestamp: now.Add(-time.Minute),
|
|
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{
|
|
AuditRepo: auditRepo,
|
|
Keto: new(MockKetoService),
|
|
}
|
|
app := fiber.New()
|
|
app.Use(func(c *fiber.Ctx) error {
|
|
c.Locals("user_profile", &domain.UserProfileResponse{ID: "test-user", Role: domain.RoleSuperAdmin})
|
|
return c.Next()
|
|
})
|
|
app.Get("/api/v1/dev/audit-logs", h.ListAuditLogs)
|
|
|
|
req := httptest.NewRequest(http.MethodGet, "/api/v1/dev/audit-logs?action=UPDATE_CLIENT&client_id=client-1&status=success", nil)
|
|
resp, _ := app.Test(req, -1)
|
|
|
|
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
|
|
|
var res devAuditListResponse
|
|
_ = json.NewDecoder(resp.Body).Decode(&res)
|
|
assert.Len(t, res.Items, 1)
|
|
assert.Equal(t, "evt-1", res.Items[0].EventID)
|
|
assert.Equal(t, "success", res.Items[0].Status)
|
|
}
|