-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_hdl_test.go
More file actions
529 lines (444 loc) · 15.9 KB
/
Copy pathadmin_hdl_test.go
File metadata and controls
529 lines (444 loc) · 15.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
// SPDX-License-Identifier: PolyForm-Internal-Use-1.0.0
package admin
import (
"bytes"
"crypto/ed25519"
"crypto/rand"
"encoding/json"
"net/http"
"net/http/httptest"
"path/filepath"
"strings"
"testing"
"time"
"github.com/devonartis/agentwrit/internal/audit"
"github.com/devonartis/agentwrit/internal/authz"
"github.com/devonartis/agentwrit/internal/cfg"
"github.com/devonartis/agentwrit/internal/store"
"github.com/devonartis/agentwrit/internal/token"
)
func newTestHandler(t *testing.T) (*AdminHdl, *AdminSvc, *token.TknSvc) {
t.Helper()
pub, priv, err := ed25519.GenerateKey(rand.Reader)
if err != nil {
t.Fatalf("generate key: %v", err)
}
tknSvc := token.NewTknSvc(priv, pub, cfg.Cfg{DefaultTTL: 300})
st := store.NewSqlStore()
adminSvc := NewAdminSvc(testSecretHash, tknSvc, st, nil, "", testAdminTokenTTL)
valMw := authz.NewValMw(tknSvc, nil, nil, "")
hdl := NewAdminHdl(adminSvc, valMw, nil, nil, st)
return hdl, adminSvc, tknSvc
}
func newTestMux(t *testing.T) (*http.ServeMux, *AdminSvc, *token.TknSvc) {
t.Helper()
hdl, svc, tknSvc := newTestHandler(t)
mux := http.NewServeMux()
hdl.RegisterRoutes(mux)
return mux, svc, tknSvc
}
// --- POST /v1/admin/auth ---
func TestHandleAuth_Success(t *testing.T) {
mux, _, _ := newTestMux(t)
body, _ := json.Marshal(authReq{Secret: testSecret})
req := httptest.NewRequest(http.MethodPost, "/v1/admin/auth", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusOK {
t.Fatalf("expected 200, got %d: %s", rec.Code, rec.Body.String())
}
var resp authResp
if err := json.NewDecoder(rec.Body).Decode(&resp); err != nil {
t.Fatalf("decode response: %v", err)
}
if resp.AccessToken == "" {
t.Error("expected non-empty access_token")
}
if resp.TokenType != "Bearer" {
t.Errorf("expected token_type=Bearer, got %s", resp.TokenType)
}
if resp.ExpiresIn != testAdminTokenTTL {
t.Errorf("expected expires_in=%d, got %d", testAdminTokenTTL, resp.ExpiresIn)
}
}
func TestHandleAuth_WrongSecret(t *testing.T) {
mux, _, _ := newTestMux(t)
body, _ := json.Marshal(authReq{Secret: "wrong"})
req := httptest.NewRequest(http.MethodPost, "/v1/admin/auth", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusUnauthorized {
t.Fatalf("expected 401, got %d", rec.Code)
}
ct := rec.Header().Get("Content-Type")
if ct != "application/problem+json" {
t.Errorf("expected problem+json content type, got %s", ct)
}
}
func TestHandleAuth_MissingSecret(t *testing.T) {
mux, _, _ := newTestMux(t)
body, _ := json.Marshal(map[string]string{})
req := httptest.NewRequest(http.MethodPost, "/v1/admin/auth", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusBadRequest {
t.Fatalf("expected 400, got %d", rec.Code)
}
}
func TestHandleAuth_LegacyShapeReturnsError(t *testing.T) {
mux, _, _ := newTestMux(t)
body, _ := json.Marshal(map[string]string{
"client_id": "admin",
"client_secret": testSecret,
})
req := httptest.NewRequest(http.MethodPost, "/v1/admin/auth", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusBadRequest {
t.Fatalf("expected 400 for legacy shape, got %d: %s", rec.Code, rec.Body.String())
}
}
func TestHandleAuth_MalformedJSON(t *testing.T) {
mux, _, _ := newTestMux(t)
req := httptest.NewRequest(http.MethodPost, "/v1/admin/auth", bytes.NewReader([]byte("not-json")))
req.Header.Set("Content-Type", "application/json")
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusBadRequest {
t.Fatalf("expected 400, got %d", rec.Code)
}
}
// --- POST /v1/admin/launch-tokens ---
func getAdminToken(t *testing.T, mux *http.ServeMux) string {
t.Helper()
body, _ := json.Marshal(authReq{Secret: testSecret})
req := httptest.NewRequest(http.MethodPost, "/v1/admin/auth", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
var resp authResp
_ = json.NewDecoder(rec.Body).Decode(&resp) //nolint:errcheck // test helper
return resp.AccessToken
}
func TestHandleCreateLaunchToken_Success(t *testing.T) {
mux, _, _ := newTestMux(t)
adminToken := getAdminToken(t, mux)
body, _ := json.Marshal(CreateLaunchTokenReq{
AgentName: "data-reader",
AllowedScope: []string{"read:Customers:*"},
MaxTTL: 300,
TTL: 30,
})
req := httptest.NewRequest(http.MethodPost, "/v1/admin/launch-tokens", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+adminToken)
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusCreated {
t.Fatalf("expected 201, got %d: %s", rec.Code, rec.Body.String())
}
var resp CreateLaunchTokenResp
if err := json.NewDecoder(rec.Body).Decode(&resp); err != nil {
t.Fatalf("decode response: %v", err)
}
if resp.LaunchToken == "" {
t.Error("expected non-empty launch_token")
}
if resp.ExpiresAt == "" {
t.Error("expected non-empty expires_at")
}
if len(resp.Policy.AllowedScope) != 1 {
t.Errorf("expected 1 scope in policy, got %d", len(resp.Policy.AllowedScope))
}
}
func TestHandleCreateLaunchToken_NoAuth(t *testing.T) {
mux, _, _ := newTestMux(t)
body, _ := json.Marshal(CreateLaunchTokenReq{
AgentName: "data-reader",
AllowedScope: []string{"read:Customers:*"},
})
req := httptest.NewRequest(http.MethodPost, "/v1/admin/launch-tokens", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusUnauthorized {
t.Fatalf("expected 401, got %d: %s", rec.Code, rec.Body.String())
}
}
func TestHandleCreateLaunchToken_WrongScope(t *testing.T) {
mux, _, tknSvc := newTestMux(t)
// Issue a token with agent-level scope (not admin).
agentResp, err := tknSvc.Issue(token.IssueReq{
Sub: "spiffe://test.local/agent/orch/task/inst",
Scope: []string{"read:Customers:*"},
TTL: 300,
})
if err != nil {
t.Fatalf("issue agent token: %v", err)
}
body, _ := json.Marshal(CreateLaunchTokenReq{
AgentName: "data-reader",
AllowedScope: []string{"read:Customers:*"},
})
req := httptest.NewRequest(http.MethodPost, "/v1/admin/launch-tokens", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+agentResp.AccessToken)
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusForbidden {
t.Fatalf("expected 403, got %d: %s", rec.Code, rec.Body.String())
}
}
func TestHandleCreateLaunchToken_MissingAgentName(t *testing.T) {
mux, _, _ := newTestMux(t)
adminToken := getAdminToken(t, mux)
body, _ := json.Marshal(CreateLaunchTokenReq{
AllowedScope: []string{"read:Customers:*"},
})
req := httptest.NewRequest(http.MethodPost, "/v1/admin/launch-tokens", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+adminToken)
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusBadRequest {
t.Fatalf("expected 400, got %d: %s", rec.Code, rec.Body.String())
}
}
func TestHandleCreateLaunchToken_EmptyScope(t *testing.T) {
mux, _, _ := newTestMux(t)
adminToken := getAdminToken(t, mux)
body, _ := json.Marshal(CreateLaunchTokenReq{
AgentName: "agent-x",
AllowedScope: []string{},
})
req := httptest.NewRequest(http.MethodPost, "/v1/admin/launch-tokens", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+adminToken)
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusBadRequest {
t.Fatalf("expected 400, got %d: %s", rec.Code, rec.Body.String())
}
}
// --- App scope ceiling enforcement on POST /v1/app/launch-tokens ---
// newAppTestMux builds a mux with a SQLite-backed store so that app records
// can be persisted and looked up by the handler during ceiling enforcement.
func newAppTestMux(t *testing.T) (*http.ServeMux, *AdminSvc, *token.TknSvc, *store.SqlStore, *audit.AuditLog) {
t.Helper()
dbPath := filepath.Join(t.TempDir(), "test.db")
st := store.NewSqlStore()
if err := st.InitDB(dbPath); err != nil {
t.Fatalf("InitDB: %v", err)
}
t.Cleanup(func() { st.Close() })
pub, priv, err := ed25519.GenerateKey(rand.Reader)
if err != nil {
t.Fatalf("generate key: %v", err)
}
tknSvc := token.NewTknSvc(priv, pub, cfg.Cfg{DefaultTTL: 300})
al := audit.NewAuditLog(st)
adminSvc := NewAdminSvc(testSecretHash, tknSvc, st, al, "", testAdminTokenTTL)
valMw := authz.NewValMw(tknSvc, nil, al, "")
hdl := NewAdminHdl(adminSvc, valMw, al, nil, st)
mux := http.NewServeMux()
hdl.RegisterRoutes(mux)
return mux, adminSvc, tknSvc, st, al
}
// seedApp inserts an app record into the store and returns an app JWT.
func seedApp(t *testing.T, tknSvc *token.TknSvc, st *store.SqlStore, appID string, ceiling []string) string {
t.Helper()
now := time.Now().UTC()
rec := store.AppRecord{
AppID: appID,
Name: "test-app-" + appID,
ClientID: "cli-" + appID,
ClientSecretHash: "unused",
ScopeCeiling: ceiling,
Status: "active",
CreatedAt: now,
UpdatedAt: now,
CreatedBy: "admin",
}
if err := st.SaveApp(rec); err != nil {
t.Fatalf("save app: %v", err)
}
resp, err := tknSvc.Issue(token.IssueReq{
Sub: "app:" + appID,
Scope: []string{"app:launch-tokens:*", "app:agents:*", "app:audit:read"},
TTL: 300,
})
if err != nil {
t.Fatalf("issue app token: %v", err)
}
return resp.AccessToken
}
func TestCreateLaunchToken_AppCallerWithinCeiling(t *testing.T) {
mux, _, tknSvc, st, _ := newAppTestMux(t)
appToken := seedApp(t, tknSvc, st, "app-weather-bot-a1b2c3", []string{"read:weather:*"})
body, _ := json.Marshal(CreateLaunchTokenReq{
AgentName: "weather-agent",
AllowedScope: []string{"read:weather:current"},
TTL: 30,
})
req := httptest.NewRequest(http.MethodPost, "/v1/app/launch-tokens", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+appToken)
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusCreated {
t.Fatalf("expected 201, got %d: %s", rec.Code, rec.Body.String())
}
var resp CreateLaunchTokenResp
if err := json.NewDecoder(rec.Body).Decode(&resp); err != nil {
t.Fatalf("decode: %v", err)
}
if resp.LaunchToken == "" {
t.Error("expected non-empty launch_token")
}
}
func TestCreateLaunchToken_AppCallerExceedsCeiling(t *testing.T) {
mux, _, tknSvc, st, _ := newAppTestMux(t)
appToken := seedApp(t, tknSvc, st, "app-weather-bot-c3d4e5", []string{"read:weather:*"})
body, _ := json.Marshal(CreateLaunchTokenReq{
AgentName: "data-writer",
AllowedScope: []string{"write:data:all"},
TTL: 30,
})
req := httptest.NewRequest(http.MethodPost, "/v1/app/launch-tokens", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+appToken)
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusForbidden {
t.Fatalf("expected 403, got %d: %s", rec.Code, rec.Body.String())
}
// Verify the error message mentions the ceiling.
respBody := rec.Body.String()
if !strings.Contains(respBody, "ceiling") {
t.Errorf("expected error message to mention ceiling, got: %s", respBody)
}
}
func TestCreateLaunchToken_AppCallerTokenCarriesAppID(t *testing.T) {
mux, adminSvc, tknSvc, st, _ := newAppTestMux(t)
appID := "app-weather-bot-f6g7h8"
appToken := seedApp(t, tknSvc, st, appID, []string{"read:weather:*"})
body, _ := json.Marshal(CreateLaunchTokenReq{
AgentName: "weather-agent",
AllowedScope: []string{"read:weather:current"},
TTL: 30,
})
req := httptest.NewRequest(http.MethodPost, "/v1/app/launch-tokens", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+appToken)
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusCreated {
t.Fatalf("expected 201, got %d: %s", rec.Code, rec.Body.String())
}
var resp CreateLaunchTokenResp
if err := json.NewDecoder(rec.Body).Decode(&resp); err != nil {
t.Fatalf("decode: %v", err)
}
// Verify the launch token record carries the app ID.
tokenRec, err := adminSvc.ValidateLaunchToken(resp.LaunchToken)
if err != nil {
t.Fatalf("validate launch token: %v", err)
}
if tokenRec.AppID != appID {
t.Errorf("expected AppID=%q, got %q", appID, tokenRec.AppID)
}
}
func TestCreateLaunchToken_AdminCallerNoCeilingCheck(t *testing.T) {
mux, adminSvc, _, _, _ := newAppTestMux(t)
adminToken := getAdminToken(t, mux)
body, _ := json.Marshal(CreateLaunchTokenReq{
AgentName: "unrestricted-agent",
AllowedScope: []string{"write:data:all", "read:everything:*"},
TTL: 30,
})
req := httptest.NewRequest(http.MethodPost, "/v1/admin/launch-tokens", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+adminToken)
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusCreated {
t.Fatalf("expected 201, got %d: %s", rec.Code, rec.Body.String())
}
var resp CreateLaunchTokenResp
if err := json.NewDecoder(rec.Body).Decode(&resp); err != nil {
t.Fatalf("decode: %v", err)
}
// Admin-created tokens should have empty AppID.
tokenRec, err := adminSvc.ValidateLaunchToken(resp.LaunchToken)
if err != nil {
t.Fatalf("validate launch token: %v", err)
}
if tokenRec.AppID != "" {
t.Errorf("expected empty AppID for admin caller, got %q", tokenRec.AppID)
}
}
func TestCreateLaunchToken_AdminCallerStillWorks(t *testing.T) {
// Regression: existing admin flow must remain unchanged.
mux, _, _, _, _ := newAppTestMux(t)
adminToken := getAdminToken(t, mux)
body, _ := json.Marshal(CreateLaunchTokenReq{
AgentName: "data-reader",
AllowedScope: []string{"read:Customers:*"},
MaxTTL: 300,
TTL: 30,
})
req := httptest.NewRequest(http.MethodPost, "/v1/admin/launch-tokens", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+adminToken)
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusCreated {
t.Fatalf("expected 201, got %d: %s", rec.Code, rec.Body.String())
}
var resp CreateLaunchTokenResp
if err := json.NewDecoder(rec.Body).Decode(&resp); err != nil {
t.Fatalf("decode: %v", err)
}
if resp.LaunchToken == "" {
t.Error("expected non-empty launch_token")
}
if resp.ExpiresAt == "" {
t.Error("expected non-empty expires_at")
}
if len(resp.Policy.AllowedScope) != 1 || resp.Policy.AllowedScope[0] != "read:Customers:*" {
t.Errorf("unexpected policy scope: %v", resp.Policy.AllowedScope)
}
}
func TestCreateLaunchToken_AppCallerAuditOnCeilingExceeded(t *testing.T) {
mux, _, tknSvc, st, al := newAppTestMux(t)
appToken := seedApp(t, tknSvc, st, "app-audit-test-d4e5f6", []string{"read:weather:*"})
body, _ := json.Marshal(CreateLaunchTokenReq{
AgentName: "bad-agent",
AllowedScope: []string{"write:data:all"},
TTL: 30,
})
req := httptest.NewRequest(http.MethodPost, "/v1/app/launch-tokens", bytes.NewReader(body))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+appToken)
rec := httptest.NewRecorder()
mux.ServeHTTP(rec, req)
if rec.Code != http.StatusForbidden {
t.Fatalf("expected 403, got %d: %s", rec.Code, rec.Body.String())
}
// Verify audit event was recorded.
events := al.Events()
found := false
for _, e := range events {
if e.EventType == audit.EventScopeCeilingExceeded {
found = true
break
}
}
if !found {
t.Fatal("expected audit event EventScopeCeilingExceeded")
}
}