-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathdoctor_cmd_test.go
More file actions
688 lines (590 loc) · 16 KB
/
Copy pathdoctor_cmd_test.go
File metadata and controls
688 lines (590 loc) · 16 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
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
package main
import (
"bytes"
"encoding/json"
"os"
"path/filepath"
"strings"
"testing"
"github.com/smart-mcp-proxy/mcpproxy-go/internal/socket"
)
func TestOutputDiagnostics_JSONFormat(t *testing.T) {
diag := map[string]interface{}{
"total_issues": 2,
"upstream_errors": []interface{}{
map[string]interface{}{
"server": "github-server",
"message": "connection timeout",
},
},
"oauth_required": []interface{}{"sentry-server"},
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
doctorOutput = "json"
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Verify valid JSON
var parsed map[string]interface{}
if err := json.Unmarshal([]byte(output), &parsed); err != nil {
t.Errorf("JSON output is invalid: %v", err)
}
// Verify data preserved (now nested under "diagnostics")
diagData, ok := parsed["diagnostics"].(map[string]interface{})
if !ok {
t.Errorf("Expected diagnostics object in JSON output")
}
if getIntField(diagData, "total_issues") != 2 {
t.Errorf("Expected total_issues=2, got %v", diagData["total_issues"])
}
}
func TestOutputDiagnostics_PrettyFormat_NoIssues(t *testing.T) {
diag := map[string]interface{}{
"total_issues": 0,
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
doctorOutput = "pretty"
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Verify success message
if !strings.Contains(output, "All systems operational") {
t.Error("Expected success message for zero issues")
}
if !strings.Contains(output, "No issues detected") {
t.Error("Expected 'No issues detected' message")
}
}
func TestOutputDiagnostics_PrettyFormat_WithUpstreamErrors(t *testing.T) {
diag := map[string]interface{}{
"total_issues": 2,
"upstream_errors": []interface{}{
map[string]interface{}{
"server_name": "github-server",
"error_message": "connection timeout",
},
map[string]interface{}{
"server_name": "weather-api",
"error_message": "authentication failed",
},
},
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
doctorOutput = "pretty"
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Verify upstream errors section
if !strings.Contains(output, "Upstream Server Connection Errors") {
t.Error("Missing upstream errors section header")
}
if !strings.Contains(output, "github-server") {
t.Error("Missing server name: github-server")
}
if !strings.Contains(output, "connection timeout") {
t.Error("Missing error message")
}
if !strings.Contains(output, "weather-api") {
t.Error("Missing server name: weather-api")
}
// Verify remediation section
if !strings.Contains(output, "Remediation") {
t.Error("Missing remediation section")
}
if !strings.Contains(output, "mcpproxy upstream logs") {
t.Error("Missing command suggestion")
}
}
func TestOutputDiagnostics_PrettyFormat_WithOAuthRequired(t *testing.T) {
diag := map[string]interface{}{
"total_issues": 2,
"oauth_required": []interface{}{
map[string]interface{}{
"server_name": "sentry-server",
"message": "Authentication required",
},
map[string]interface{}{
"server_name": "github-server",
"message": "",
},
},
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
doctorOutput = "pretty"
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Verify OAuth section
if !strings.Contains(output, "OAuth Authentication Required") {
t.Error("Missing OAuth section header")
}
if !strings.Contains(output, "sentry-server") {
t.Error("Missing OAuth server: sentry-server")
}
if !strings.Contains(output, "github-server") {
t.Error("Missing OAuth server: github-server")
}
// Verify remediation
if !strings.Contains(output, "mcpproxy auth login") {
t.Error("Missing auth command suggestion")
}
}
func TestOutputDiagnostics_PrettyFormat_WithMissingSecrets(t *testing.T) {
diag := map[string]interface{}{
"total_issues": 1,
"missing_secrets": []interface{}{
map[string]interface{}{
"secret_name": "API_KEY",
"used_by": []interface{}{"weather-api"},
},
},
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
doctorOutput = "pretty"
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Verify missing secrets section
if !strings.Contains(output, "Missing Secrets") {
t.Error("Missing secrets section header")
}
if !strings.Contains(output, "API_KEY") {
t.Error("Missing secret name")
}
if !strings.Contains(output, "weather-api") {
t.Error("Missing server name")
}
}
func TestOutputDiagnostics_PrettyFormat_WithRuntimeWarnings(t *testing.T) {
diag := map[string]interface{}{
"total_issues": 1,
"runtime_warnings": []interface{}{
map[string]interface{}{
"title": "Docker not available",
"message": "Isolation features disabled",
"severity": "warning",
},
},
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
doctorOutput = "pretty"
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Verify runtime warnings section
if !strings.Contains(output, "Runtime Warnings") {
t.Error("Missing runtime warnings section header")
}
if !strings.Contains(output, "Docker not available") {
t.Error("Missing warning title")
}
if !strings.Contains(output, "Isolation features disabled") {
t.Error("Missing warning message")
}
}
func TestOutputDiagnostics_PrettyFormat_MultipleIssueTypes(t *testing.T) {
diag := map[string]interface{}{
"total_issues": 5,
"upstream_errors": []interface{}{
map[string]interface{}{
"server": "server1",
"message": "error1",
},
},
"oauth_required": []interface{}{"server2"},
"missing_secrets": []interface{}{
map[string]interface{}{
"name": "SECRET1",
"server": "server3",
},
},
"runtime_warnings": []interface{}{
map[string]interface{}{
"message": "warning1",
"severity": "warning",
},
},
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
doctorOutput = "pretty"
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Verify all sections present
if !strings.Contains(output, "Upstream Server Connection Errors") {
t.Error("Missing upstream errors section")
}
if !strings.Contains(output, "OAuth Authentication Required") {
t.Error("Missing OAuth section")
}
if !strings.Contains(output, "Missing Secrets") {
t.Error("Missing secrets section")
}
if !strings.Contains(output, "Runtime Warnings") {
t.Error("Missing warnings section")
}
// Verify issue count
if !strings.Contains(output, "5") {
t.Error("Missing total issue count")
}
if !strings.Contains(output, "issues") {
t.Error("Should use plural 'issues' for count > 1")
}
}
func TestOutputDiagnostics_PrettyFormat_SingleIssue(t *testing.T) {
diag := map[string]interface{}{
"total_issues": 1,
"oauth_required": []interface{}{"test-server"},
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
doctorOutput = "pretty"
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Should use singular "issue" not "issues"
if !strings.Contains(output, "1 issue") {
t.Error("Should use singular 'issue' for count = 1")
}
}
func TestOutputDiagnostics_EmptyFormat(t *testing.T) {
diag := map[string]interface{}{
"total_issues": 0,
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
// Empty string should default to pretty format
doctorOutput = ""
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Should show pretty format
if !strings.Contains(output, "MCPProxy Health Check") {
t.Error("Empty format should default to pretty format")
}
}
func TestShouldUseDoctorDaemon(t *testing.T) {
// Test with non-existent directory
result := shouldUseDoctorDaemon("/tmp/nonexistent-mcpproxy-test-dir-67890")
if result {
t.Error("shouldUseDoctorDaemon should return false for non-existent directory")
}
// Test with existing directory but no socket
tmpDir := t.TempDir()
result = shouldUseDoctorDaemon(tmpDir)
if result {
t.Error("shouldUseDoctorDaemon should return false when socket doesn't exist")
}
}
func TestLoadDoctorConfig(t *testing.T) {
// Save original flag value
oldConfigPath := doctorConfigPath
defer func() { doctorConfigPath = oldConfigPath }()
t.Run("default config path", func(t *testing.T) {
doctorConfigPath = ""
// This will attempt to load default config
_, err := loadDoctorConfig()
// Error is expected if no config exists
_ = err
})
t.Run("custom config path", func(t *testing.T) {
// Create a temporary config file
tmpDir := t.TempDir()
configPath := filepath.Join(tmpDir, "doctor_test_config.json")
// Write minimal valid config
configJSON := `{
"listen": "127.0.0.1:8080",
"data_dir": "~/.mcpproxy",
"mcpServers": []
}`
err := os.WriteFile(configPath, []byte(configJSON), 0644)
if err != nil {
t.Fatalf("Failed to write test config: %v", err)
}
doctorConfigPath = configPath
cfg, err := loadDoctorConfig()
if err != nil {
t.Errorf("Failed to load custom config: %v", err)
}
if cfg != nil && cfg.Listen != "127.0.0.1:8080" {
t.Errorf("Expected listen address '127.0.0.1:8080', got %s", cfg.Listen)
}
})
}
func TestCreateDoctorLogger(t *testing.T) {
tests := []struct {
name string
logLevel string
wantErr bool
}{
{
name: "trace level",
logLevel: "trace",
wantErr: false,
},
{
name: "debug level",
logLevel: "debug",
wantErr: false,
},
{
name: "info level",
logLevel: "info",
wantErr: false,
},
{
name: "warn level",
logLevel: "warn",
wantErr: false,
},
{
name: "error level",
logLevel: "error",
wantErr: false,
},
{
name: "invalid level defaults to warn",
logLevel: "invalid",
wantErr: false,
},
{
name: "empty level defaults to warn",
logLevel: "",
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
logger, err := createDoctorLogger(tt.logLevel)
if (err != nil) != tt.wantErr {
t.Errorf("createDoctorLogger() error = %v, wantErr %v", err, tt.wantErr)
return
}
if logger == nil && !tt.wantErr {
t.Error("createDoctorLogger() returned nil logger")
}
})
}
}
func TestDoctorSocketDetection(t *testing.T) {
// Create temp directory
tmpDir := t.TempDir()
// Test socket path detection
socketPath := socket.DetectSocketPath(tmpDir)
// Should return a path
if socketPath == "" {
t.Error("DetectSocketPath should return non-empty path")
}
// Socket should not exist yet
if socket.IsSocketAvailable(socketPath) {
t.Error("Socket should not be available in empty temp dir")
}
}
func TestOutputDiagnostics_WarningWithoutTitle(t *testing.T) {
diag := map[string]interface{}{
"total_issues": 1,
"runtime_warnings": []interface{}{
map[string]interface{}{
"message": "Something went wrong",
"severity": "warning",
},
},
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
doctorOutput = "pretty"
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Should display message even without title
if !strings.Contains(output, "Something went wrong") {
t.Error("Should display warning message even without title")
}
}
func TestOutputDiagnostics_HighSeverityWarning(t *testing.T) {
diag := map[string]interface{}{
"total_issues": 1,
"runtime_warnings": []interface{}{
map[string]interface{}{
"message": "Critical issue",
"severity": "critical",
},
},
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
doctorOutput = "pretty"
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Should show severity for non-warning levels
if !strings.Contains(output, "Severity") {
t.Error("Should display severity for non-warning levels")
}
if !strings.Contains(output, "critical") {
t.Error("Should display critical severity")
}
}
func TestOutputDiagnostics_SecretWithoutOptionalFields(t *testing.T) {
diag := map[string]interface{}{
"total_issues": 1,
"missing_secrets": []interface{}{
map[string]interface{}{
"secret_name": "API_KEY",
// used_by is optional
},
},
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
doctorOutput = "pretty"
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Should still display the secret name
if !strings.Contains(output, "API_KEY") {
t.Error("Should display secret name even without optional fields")
}
}
// TestOutputDiagnostics_MissingSecretsRealJSON tests that the doctor command
// correctly parses the actual JSON field names produced by the backend.
// The MissingSecretInfo struct uses json:"secret_name" and json:"used_by",
// NOT "name", "server", "reference".
func TestOutputDiagnostics_MissingSecretsRealJSON(t *testing.T) {
// This is the ACTUAL JSON structure produced by the backend
// (see internal/contracts/types.go MissingSecretInfo struct)
diag := map[string]interface{}{
"total_issues": 1,
"missing_secrets": []interface{}{
map[string]interface{}{
"secret_name": "GITHUB_TOKEN", // NOT "name"
"used_by": []interface{}{"github-mcp"}, // NOT "server" (and it's an array)
},
},
}
// Capture stdout
oldStdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
defer func() { os.Stdout = oldStdout }()
doctorOutput = "pretty"
err := outputDiagnostics(diag, nil, nil)
w.Close()
var buf bytes.Buffer
buf.ReadFrom(r)
output := buf.String()
if err != nil {
t.Errorf("outputDiagnostics() returned error: %v", err)
}
// Verify the secret name is displayed
if !strings.Contains(output, "GITHUB_TOKEN") {
t.Errorf("Should display secret name 'GITHUB_TOKEN' from secret_name field.\nGot output:\n%s", output)
}
// Verify the server name is displayed
if !strings.Contains(output, "github-mcp") {
t.Errorf("Should display server 'github-mcp' from used_by field.\nGot output:\n%s", output)
}
}