summaryrefslogtreecommitdiff
path: root/internal/handlers/agent_test.go
blob: eab1609eb193e407843524be5fddb101fbddfb8c (plain)
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
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
package handlers

import (
	"bytes"
	"context"
	"encoding/json"
	"net/http"
	"net/http/httptest"
	"testing"
	"time"

	"github.com/go-chi/chi/v5"

	"task-dashboard/internal/config"
	"task-dashboard/internal/models"
)

func TestHandleAgentAuthRequest(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	cfg := &config.Config{}
	h := &Handler{store: db, config: cfg}

	tests := []struct {
		name           string
		requestBody    interface{}
		expectedStatus int
		checkResponse  func(t *testing.T, resp *models.AgentAuthResponse)
	}{
		{
			name: "valid request",
			requestBody: models.AgentAuthRequest{
				Name:    "TestAgent",
				AgentID: "test-uuid-12345",
			},
			expectedStatus: http.StatusOK,
			checkResponse: func(t *testing.T, resp *models.AgentAuthResponse) {
				if resp.RequestToken == "" {
					t.Error("Expected request_token in response")
				}
				if resp.Status != "pending" {
					t.Errorf("Expected status 'pending', got '%s'", resp.Status)
				}
			},
		},
		{
			name: "missing name",
			requestBody: models.AgentAuthRequest{
				AgentID: "test-uuid-12345",
			},
			expectedStatus: http.StatusBadRequest,
		},
		{
			name: "missing agent_id",
			requestBody: models.AgentAuthRequest{
				Name: "TestAgent",
			},
			expectedStatus: http.StatusBadRequest,
		},
		{
			name:           "invalid JSON",
			requestBody:    "not json",
			expectedStatus: http.StatusBadRequest,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			var body []byte
			var err error
			if s, ok := tt.requestBody.(string); ok {
				body = []byte(s)
			} else {
				body, err = json.Marshal(tt.requestBody)
				if err != nil {
					t.Fatalf("Failed to marshal request body: %v", err)
				}
			}

			req := httptest.NewRequest(http.MethodPost, "/agent/auth/request", bytes.NewReader(body))
			req.Header.Set("Content-Type", "application/json")
			w := httptest.NewRecorder()

			h.HandleAgentAuthRequest(w, req)

			if w.Code != tt.expectedStatus {
				t.Errorf("Expected status %d, got %d", tt.expectedStatus, w.Code)
			}

			if tt.checkResponse != nil && w.Code == http.StatusOK {
				var resp models.AgentAuthResponse
				if err := json.Unmarshal(w.Body.Bytes(), &resp); err != nil {
					t.Fatalf("Failed to unmarshal response: %v", err)
				}
				tt.checkResponse(t, &resp)
			}
		})
	}
}

func TestHandleAgentAuthPoll(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	cfg := &config.Config{}
	h := &Handler{store: db, config: cfg}

	// Create a pending session first
	session := &models.AgentSession{
		RequestToken: "test-token-123",
		AgentName:    "TestAgent",
		AgentID:      "agent-uuid",
		ExpiresAt:    time.Now().Add(5 * time.Minute),
	}
	if err := db.CreateAgentSession(session); err != nil {
		t.Fatalf("Failed to create test session: %v", err)
	}

	tests := []struct {
		name           string
		token          string
		expectedStatus int
		expectedState  string
	}{
		{
			name:           "valid pending session",
			token:          "test-token-123",
			expectedStatus: http.StatusOK,
			expectedState:  "pending",
		},
		{
			name:           "missing token",
			token:          "",
			expectedStatus: http.StatusBadRequest,
		},
		{
			name:           "non-existent token",
			token:          "non-existent",
			expectedStatus: http.StatusNotFound,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			url := "/agent/auth/poll"
			if tt.token != "" {
				url += "?token=" + tt.token
			}

			req := httptest.NewRequest(http.MethodGet, url, nil)
			w := httptest.NewRecorder()

			h.HandleAgentAuthPoll(w, req)

			if w.Code != tt.expectedStatus {
				t.Errorf("Expected status %d, got %d", tt.expectedStatus, w.Code)
			}

			if tt.expectedStatus == http.StatusOK {
				var resp models.AgentPollResponse
				if err := json.Unmarshal(w.Body.Bytes(), &resp); err != nil {
					t.Fatalf("Failed to unmarshal response: %v", err)
				}
				if resp.Status != tt.expectedState {
					t.Errorf("Expected status '%s', got '%s'", tt.expectedState, resp.Status)
				}
			}
		})
	}
}

func TestHandleAgentAuthApprove(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	cfg := &config.Config{}
	h := &Handler{store: db, config: cfg}

	// Create a pending session
	session := &models.AgentSession{
		RequestToken: "approve-test-token",
		AgentName:    "ApproveTestAgent",
		AgentID:      "approve-agent-uuid",
		ExpiresAt:    time.Now().Add(5 * time.Minute),
	}
	if err := db.CreateAgentSession(session); err != nil {
		t.Fatalf("Failed to create test session: %v", err)
	}

	// Test approval
	body, _ := json.Marshal(map[string]string{"request_token": "approve-test-token"})
	req := httptest.NewRequest(http.MethodPost, "/agent/auth/approve", bytes.NewReader(body))
	req.Header.Set("Content-Type", "application/json")
	w := httptest.NewRecorder()

	h.HandleAgentAuthApprove(w, req)

	if w.Code != http.StatusOK {
		t.Errorf("Expected status 200, got %d: %s", w.Code, w.Body.String())
	}

	// Verify session is now approved
	updated, err := db.GetAgentSessionByRequestToken("approve-test-token")
	if err != nil {
		t.Fatalf("Failed to get session: %v", err)
	}
	if updated.Status != "approved" {
		t.Errorf("Expected session status 'approved', got '%s'", updated.Status)
	}
	if updated.SessionToken == "" {
		t.Error("Expected session_token to be set")
	}

	// Verify agent was registered
	agent, err := db.GetAgentByAgentID("approve-agent-uuid")
	if err != nil {
		t.Fatalf("Failed to get agent: %v", err)
	}
	if agent == nil {
		t.Error("Expected agent to be created")
	}
}

func TestHandleAgentAuthDeny(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	cfg := &config.Config{}
	h := &Handler{store: db, config: cfg}

	// Create a pending session
	session := &models.AgentSession{
		RequestToken: "deny-test-token",
		AgentName:    "DenyTestAgent",
		AgentID:      "deny-agent-uuid",
		ExpiresAt:    time.Now().Add(5 * time.Minute),
	}
	if err := db.CreateAgentSession(session); err != nil {
		t.Fatalf("Failed to create test session: %v", err)
	}

	// Test denial
	body, _ := json.Marshal(map[string]string{"request_token": "deny-test-token"})
	req := httptest.NewRequest(http.MethodPost, "/agent/auth/deny", bytes.NewReader(body))
	req.Header.Set("Content-Type", "application/json")
	w := httptest.NewRecorder()

	h.HandleAgentAuthDeny(w, req)

	if w.Code != http.StatusOK {
		t.Errorf("Expected status 200, got %d: %s", w.Code, w.Body.String())
	}

	// Verify session is now denied
	updated, err := db.GetAgentSessionByRequestToken("deny-test-token")
	if err != nil {
		t.Fatalf("Failed to get session: %v", err)
	}
	if updated.Status != "denied" {
		t.Errorf("Expected session status 'denied', got '%s'", updated.Status)
	}
}

func TestAgentAuthMiddleware(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	cfg := &config.Config{}
	h := &Handler{store: db, config: cfg}

	// Create an approved session
	sessionToken := "valid-session-token"
	sessionExpiry := time.Now().Add(1 * time.Hour)
	session := &models.AgentSession{
		RequestToken: "middleware-test-token",
		AgentName:    "MiddlewareTestAgent",
		AgentID:      "middleware-agent-uuid",
		ExpiresAt:    time.Now().Add(5 * time.Minute),
	}
	if err := db.CreateAgentSession(session); err != nil {
		t.Fatalf("Failed to create test session: %v", err)
	}
	if err := db.ApproveAgentSession("middleware-test-token", sessionToken, sessionExpiry); err != nil {
		t.Fatalf("Failed to approve session: %v", err)
	}

	// Create a test handler that the middleware protects
	testHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		w.WriteHeader(http.StatusOK)
		w.Write([]byte("protected content"))
	})

	wrappedHandler := h.AgentAuthMiddleware(testHandler)

	tests := []struct {
		name           string
		authHeader     string
		expectedStatus int
	}{
		{
			name:           "valid token",
			authHeader:     "Bearer " + sessionToken,
			expectedStatus: http.StatusOK,
		},
		{
			name:           "missing header",
			authHeader:     "",
			expectedStatus: http.StatusUnauthorized,
		},
		{
			name:           "invalid format",
			authHeader:     "Token " + sessionToken,
			expectedStatus: http.StatusUnauthorized,
		},
		{
			name:           "invalid token",
			authHeader:     "Bearer invalid-token",
			expectedStatus: http.StatusUnauthorized,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			req := httptest.NewRequest(http.MethodGet, "/agent/context", nil)
			if tt.authHeader != "" {
				req.Header.Set("Authorization", tt.authHeader)
			}
			w := httptest.NewRecorder()

			wrappedHandler.ServeHTTP(w, req)

			if w.Code != tt.expectedStatus {
				t.Errorf("Expected status %d, got %d", tt.expectedStatus, w.Code)
			}
		})
	}
}

func TestAgentTrustLevel(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	// Test new agent (never seen before)
	trust, err := db.CheckAgentTrust("NewAgent", "new-uuid")
	if err != nil {
		t.Fatalf("Failed to check trust: %v", err)
	}
	if trust != models.AgentTrustNew {
		t.Errorf("Expected trust level 'new', got '%s'", trust)
	}

	// Register the agent
	if err := db.CreateOrUpdateAgent("NewAgent", "new-uuid"); err != nil {
		t.Fatalf("Failed to register agent: %v", err)
	}

	// Test recognized agent (same name + ID)
	trust, err = db.CheckAgentTrust("NewAgent", "new-uuid")
	if err != nil {
		t.Fatalf("Failed to check trust: %v", err)
	}
	if trust != models.AgentTrustRecognized {
		t.Errorf("Expected trust level 'recognized', got '%s'", trust)
	}

	// Test suspicious agent (same name, different ID)
	trust, err = db.CheckAgentTrust("NewAgent", "different-uuid")
	if err != nil {
		t.Fatalf("Failed to check trust: %v", err)
	}
	if trust != models.AgentTrustSuspicious {
		t.Errorf("Expected trust level 'suspicious', got '%s'", trust)
	}
}

func TestInvalidatePreviousSessions(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	agentID := "invalidate-test-agent"

	// Create multiple sessions for the same agent
	for i := 0; i < 3; i++ {
		session := &models.AgentSession{
			RequestToken: "token-" + string(rune('a'+i)),
			AgentName:    "TestAgent",
			AgentID:      agentID,
			ExpiresAt:    time.Now().Add(5 * time.Minute),
		}
		if err := db.CreateAgentSession(session); err != nil {
			t.Fatalf("Failed to create session %d: %v", i, err)
		}
	}

	// Invalidate all sessions for this agent
	if err := db.InvalidatePreviousAgentSessions(agentID); err != nil {
		t.Fatalf("Failed to invalidate sessions: %v", err)
	}

	// Verify all sessions are expired
	for _, token := range []string{"token-a", "token-b", "token-c"} {
		session, err := db.GetAgentSessionByRequestToken(token)
		if err != nil {
			t.Fatalf("Failed to get session: %v", err)
		}
		if session.Status != "expired" {
			t.Errorf("Expected session %s to be expired, got '%s'", token, session.Status)
		}
	}
}

func TestHandleAgentWebRequest(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	cfg := &config.Config{}
	mock := newTestRenderer()
	h := &Handler{store: db, config: cfg, renderer: mock}

	tests := []struct {
		name             string
		queryParams      string
		expectedStatus   int
		expectedTemplate string
	}{
		{
			name:             "valid request",
			queryParams:      "?name=TestAgent&agent_id=web-test-uuid",
			expectedStatus:   http.StatusOK,
			expectedTemplate: "agent-request.html",
		},
		{
			name:           "missing name",
			queryParams:    "?agent_id=test-uuid",
			expectedStatus: http.StatusBadRequest,
		},
		{
			name:           "missing agent_id",
			queryParams:    "?name=TestAgent",
			expectedStatus: http.StatusBadRequest,
		},
		{
			name:           "missing both",
			queryParams:    "",
			expectedStatus: http.StatusBadRequest,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			mock.Calls = nil // Reset calls
			req := httptest.NewRequest(http.MethodGet, "/agent/web/request"+tt.queryParams, nil)
			w := httptest.NewRecorder()

			h.HandleAgentWebRequest(w, req)

			if w.Code != tt.expectedStatus {
				t.Errorf("Expected status %d, got %d: %s", tt.expectedStatus, w.Code, w.Body.String())
			}

			if tt.expectedTemplate != "" && w.Code == http.StatusOK {
				if len(mock.Calls) == 0 {
					t.Error("Expected render call")
				} else if mock.Calls[0].Name != tt.expectedTemplate {
					t.Errorf("Expected template %s, got %s", tt.expectedTemplate, mock.Calls[0].Name)
				}
			}
		})
	}
}

func TestHandleAgentWebRequestReturnsExistingPending(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	cfg := &config.Config{}
	mock := newTestRenderer()
	h := &Handler{store: db, config: cfg, renderer: mock}

	agentID := "reuse-pending-uuid"

	// First request creates a session
	req1 := httptest.NewRequest(http.MethodGet, "/agent/web/request?name=TestAgent&agent_id="+agentID, nil)
	w1 := httptest.NewRecorder()
	h.HandleAgentWebRequest(w1, req1)

	if w1.Code != http.StatusOK {
		t.Fatalf("First request failed: %d, body: %s", w1.Code, w1.Body.String())
	}

	// Verify template was called
	if len(mock.Calls) == 0 || mock.Calls[0].Name != "agent-request.html" {
		t.Fatal("First request didn't render agent-request.html")
	}
	firstData := mock.Calls[0].Data

	// Reset mock and make second request
	mock.Calls = nil
	req2 := httptest.NewRequest(http.MethodGet, "/agent/web/request?name=TestAgent&agent_id="+agentID, nil)
	w2 := httptest.NewRecorder()
	h.HandleAgentWebRequest(w2, req2)

	if w2.Code != http.StatusOK {
		t.Fatalf("Second request failed: %d", w2.Code)
	}

	// Verify template was called with same data (same session reused)
	if len(mock.Calls) == 0 {
		t.Fatal("Second request didn't render template")
	}
	secondData := mock.Calls[0].Data

	// Compare request tokens from data
	first := firstData.(map[string]interface{})
	second := secondData.(map[string]interface{})
	if first["RequestToken"] != second["RequestToken"] {
		t.Error("Expected same session to be reused (same request token)")
	}
}

func TestHandleAgentWebStatus(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	cfg := &config.Config{}
	mock := newTestRenderer()
	h := &Handler{store: db, config: cfg, renderer: mock}

	// Create a pending session
	session := &models.AgentSession{
		RequestToken: "web-status-test-token",
		AgentName:    "WebStatusTestAgent",
		AgentID:      "web-status-agent-uuid",
		ExpiresAt:    time.Now().Add(5 * time.Minute),
	}
	if err := db.CreateAgentSession(session); err != nil {
		t.Fatalf("Failed to create test session: %v", err)
	}

	tests := []struct {
		name             string
		token            string
		expectedStatus   int
		expectedTemplate string
		checkData        func(t *testing.T, data map[string]interface{})
	}{
		{
			name:             "valid pending session",
			token:            "web-status-test-token",
			expectedStatus:   http.StatusOK,
			expectedTemplate: "agent-status.html",
			checkData: func(t *testing.T, data map[string]interface{}) {
				if data["Status"] != "pending" {
					t.Errorf("Expected status 'pending', got '%v'", data["Status"])
				}
			},
		},
		{
			name:           "missing token",
			token:          "",
			expectedStatus: http.StatusBadRequest,
		},
		{
			name:           "non-existent token",
			token:          "non-existent-token",
			expectedStatus: http.StatusNotFound,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			mock.Calls = nil
			url := "/agent/web/status"
			if tt.token != "" {
				url += "?token=" + tt.token
			}

			req := httptest.NewRequest(http.MethodGet, url, nil)
			w := httptest.NewRecorder()

			h.HandleAgentWebStatus(w, req)

			if w.Code != tt.expectedStatus {
				t.Errorf("Expected status %d, got %d: %s", tt.expectedStatus, w.Code, w.Body.String())
			}

			if tt.expectedTemplate != "" && w.Code == http.StatusOK {
				if len(mock.Calls) == 0 {
					t.Error("Expected render call")
				} else {
					if mock.Calls[0].Name != tt.expectedTemplate {
						t.Errorf("Expected template %s, got %s", tt.expectedTemplate, mock.Calls[0].Name)
					}
					if tt.checkData != nil {
						tt.checkData(t, mock.Calls[0].Data.(map[string]interface{}))
					}
				}
			}
		})
	}
}

func TestHandleAgentWebStatusApproved(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	cfg := &config.Config{}
	mock := newTestRenderer()
	h := &Handler{store: db, config: cfg, renderer: mock}

	// Create and approve a session
	session := &models.AgentSession{
		RequestToken: "web-approved-test-token",
		AgentName:    "WebApprovedTestAgent",
		AgentID:      "web-approved-agent-uuid",
		ExpiresAt:    time.Now().Add(5 * time.Minute),
	}
	if err := db.CreateAgentSession(session); err != nil {
		t.Fatalf("Failed to create test session: %v", err)
	}
	sessionToken := "web-session-token-xyz"
	if err := db.ApproveAgentSession("web-approved-test-token", sessionToken, time.Now().Add(1*time.Hour)); err != nil {
		t.Fatalf("Failed to approve session: %v", err)
	}

	req := httptest.NewRequest(http.MethodGet, "/agent/web/status?token=web-approved-test-token", nil)
	w := httptest.NewRecorder()

	h.HandleAgentWebStatus(w, req)

	if w.Code != http.StatusOK {
		t.Errorf("Expected status 200, got %d: %s", w.Code, w.Body.String())
	}

	if len(mock.Calls) == 0 {
		t.Fatal("Expected render call")
	}
	if mock.Calls[0].Name != "agent-status.html" {
		t.Errorf("Expected template agent-status.html, got %s", mock.Calls[0].Name)
	}

	data := mock.Calls[0].Data.(map[string]interface{})
	if data["Status"] != "approved" {
		t.Errorf("Expected status 'approved', got '%v'", data["Status"])
	}
	if data["SessionToken"] != sessionToken {
		t.Errorf("Expected session_token '%s', got '%v'", sessionToken, data["SessionToken"])
	}
	if _, ok := data["ContextURL"]; !ok {
		t.Error("Expected ContextURL in data")
	}
}

func TestHandleAgentWebContext(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	cfg := &config.Config{}
	mock := newTestRenderer()
	h := &Handler{store: db, config: cfg, renderer: mock}

	// Create and approve a session
	session := &models.AgentSession{
		RequestToken: "web-context-test-token",
		AgentName:    "WebContextTestAgent",
		AgentID:      "web-context-agent-uuid",
		ExpiresAt:    time.Now().Add(5 * time.Minute),
	}
	if err := db.CreateAgentSession(session); err != nil {
		t.Fatalf("Failed to create test session: %v", err)
	}
	sessionToken := "web-context-session-token"
	if err := db.ApproveAgentSession("web-context-test-token", sessionToken, time.Now().Add(1*time.Hour)); err != nil {
		t.Fatalf("Failed to approve session: %v", err)
	}

	tests := []struct {
		name             string
		sessionToken     string
		expectedStatus   int
		expectedTemplate string
		checkData        func(t *testing.T, data map[string]interface{})
	}{
		{
			name:             "valid session",
			sessionToken:     sessionToken,
			expectedStatus:   http.StatusOK,
			expectedTemplate: "agent-context.html",
			checkData: func(t *testing.T, data map[string]interface{}) {
				if _, ok := data["GeneratedAt"]; !ok {
					t.Error("Expected GeneratedAt in data")
				}
				if _, ok := data["Timeline"]; !ok {
					t.Error("Expected Timeline in data")
				}
			},
		},
		{
			name:           "missing session",
			sessionToken:   "",
			expectedStatus: http.StatusBadRequest,
		},
		{
			name:           "invalid session",
			sessionToken:   "invalid-session-token",
			expectedStatus: http.StatusUnauthorized,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			mock.Calls = nil
			url := "/agent/web/context"
			if tt.sessionToken != "" {
				url += "?session=" + tt.sessionToken
			}

			req := httptest.NewRequest(http.MethodGet, url, nil)
			w := httptest.NewRecorder()

			h.HandleAgentWebContext(w, req)

			if w.Code != tt.expectedStatus {
				t.Errorf("Expected status %d, got %d: %s", tt.expectedStatus, w.Code, w.Body.String())
			}

			if tt.expectedTemplate != "" && w.Code == http.StatusOK {
				if len(mock.Calls) == 0 {
					t.Error("Expected render call")
				} else {
					if mock.Calls[0].Name != tt.expectedTemplate {
						t.Errorf("Expected template %s, got %s", tt.expectedTemplate, mock.Calls[0].Name)
					}
					if tt.checkData != nil {
						tt.checkData(t, mock.Calls[0].Data.(map[string]interface{}))
					}
				}
			}
		})
	}
}

func TestHandleAgentTaskWriteOperations(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	// Mock clients
	mockTodoist := &mockTodoistClient{}
	mockTrello := &mockTrelloClient{}
	h := &Handler{
		store:         db,
		todoistClient: mockTodoist,
		trelloClient:  mockTrello,
		config:        &config.Config{},
	}

	// Create an approved session
	sessionToken := "write-session-token"
	session := &models.AgentSession{
		RequestToken: "write-request-token",
		AgentName:    "WriteAgent",
		AgentID:      "write-agent-uuid",
		ExpiresAt:    time.Now().Add(5 * time.Minute),
	}
	db.CreateAgentSession(session)
	db.ApproveAgentSession("write-request-token", sessionToken, time.Now().Add(1*time.Hour))

	// Pre-populate store with a task to get details during completion
	db.SaveTasks([]models.Task{{ID: "task123", Content: "Test Task"}})

	t.Run("complete task", func(t *testing.T) {
		req := httptest.NewRequest(http.MethodPost, "/agent/tasks/task123/complete?source=todoist", nil)
		w := httptest.NewRecorder()

		// Manually inject session into context as middleware would
		ctx := context.WithValue(req.Context(), agentSessionContextKey, session)
		req = req.WithContext(ctx)

		// Set chi URL param
		rctx := chi.NewRouteContext()
		rctx.URLParams.Add("id", "task123")
		req = req.WithContext(context.WithValue(req.Context(), chi.RouteCtxKey, rctx))

		h.HandleAgentTaskComplete(w, req)

		if w.Code != http.StatusOK {
			t.Errorf("Expected status 200, got %d: %s", w.Code, w.Body.String())
		}

		// Verify task was logged as completed
		completed, err := db.GetCompletedTasks(1)
		if err != nil {
			t.Fatalf("Failed to get completed tasks: %v", err)
		}
		if len(completed) == 0 {
			t.Fatal("Expected task to be logged as completed, but got 0 results")
		}
		if completed[0].SourceID != "task123" {
			t.Errorf("Expected source ID task123, got %s", completed[0].SourceID)
		}
	})

	t.Run("update due date", func(t *testing.T) {
		due := time.Now().Add(24 * time.Hour)
		body, _ := json.Marshal(map[string]*time.Time{"due": &due})
		req := httptest.NewRequest(http.MethodPatch, "/agent/tasks/task123/due?source=todoist", bytes.NewReader(body))
		w := httptest.NewRecorder()

		rctx := chi.NewRouteContext()
		rctx.URLParams.Add("id", "task123")
		req = req.WithContext(context.WithValue(req.Context(), chi.RouteCtxKey, rctx))

		h.HandleAgentTaskUpdateDue(w, req)

		if w.Code != http.StatusOK {
			t.Errorf("Expected status 200, got %d: %s", w.Code, w.Body.String())
		}
	})

	t.Run("update task details", func(t *testing.T) {
		body, _ := json.Marshal(map[string]string{"title": "Updated Title", "description": "New Desc"})
		req := httptest.NewRequest(http.MethodPatch, "/agent/tasks/task123?source=todoist", bytes.NewReader(body))
		w := httptest.NewRecorder()

		rctx := chi.NewRouteContext()
		rctx.URLParams.Add("id", "task123")
		req = req.WithContext(context.WithValue(req.Context(), chi.RouteCtxKey, rctx))

		h.HandleAgentTaskUpdate(w, req)

		if w.Code != http.StatusOK {
			t.Errorf("Expected status 200, got %d: %s", w.Code, w.Body.String())
		}
	})
}

func TestHandleAgentCreateOperations(t *testing.T) {
	db, cleanup := setupTestDB(t)
	defer cleanup()

	mockTodoist := &mockTodoistClient{}
	h := &Handler{
		store:         db,
		todoistClient: mockTodoist,
		config:        &config.Config{},
	}

	t.Run("create task", func(t *testing.T) {
		body, _ := json.Marshal(map[string]string{
			"title":  "New Agent Task",
			"source": "todoist",
		})
		req := httptest.NewRequest(http.MethodPost, "/agent/tasks", bytes.NewReader(body))
		w := httptest.NewRecorder()

		h.HandleAgentTaskCreate(w, req)

		if w.Code != http.StatusOK {
			t.Errorf("Expected status 200, got %d: %s", w.Code, w.Body.String())
		}
	})

	t.Run("add shopping item", func(t *testing.T) {
		body, _ := json.Marshal(map[string]string{
			"name":  "Milk",
			"store": "Costco",
		})
		req := httptest.NewRequest(http.MethodPost, "/agent/shopping", bytes.NewReader(body))
		w := httptest.NewRecorder()

		h.HandleAgentShoppingAdd(w, req)

		if w.Code != http.StatusOK {
			t.Errorf("Expected status 200, got %d: %s", w.Code, w.Body.String())
		}

		// Verify item was saved
		items, _ := db.GetUserShoppingItems()
		found := false
		for _, item := range items {
			if item.Name == "Milk" && item.Store == "Costco" {
				found = true
				break
			}
		}
		if !found {
			t.Error("Expected shopping item to be saved")
		}
	})
}

// contains is a helper function to check if a string contains a substring
func contains(s, substr string) bool {
	return bytes.Contains([]byte(s), []byte(substr))
}