summaryrefslogtreecommitdiff
path: root/integrationtests/cli_test.go
blob: 017250e2996e66c2ceee47f0fdd221f85dd3c381 (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
// SPDX-License-Identifier: MIT
// Copyright (c) 2026 Paul Buetow

package integrationtests

import (
	"os"
	"os/exec"
	"path/filepath"
	"strings"
	"testing"
)

// buildBinary builds the gt binary to a temporary location unique to each test.
func buildBinary(t *testing.T) string {
	t.Helper()

	// Get the project root directory
	projectRoot := os.Getenv("GITHUB_WORKSPACE")
	if projectRoot == "" {
		projectRoot = "/home/paul/git/gt"
	}

	// Use t.TempDir() so each test gets its own binary path; Go cleans up automatically.
	tmpDir := t.TempDir()
	binaryPath := filepath.Join(tmpDir, "gt-test")

	buildCmd := exec.Command("go", "build", "-o", binaryPath, "./cmd/gt")
	buildCmd.Dir = projectRoot
	if err := buildCmd.Run(); err != nil {
		t.Fatalf("build failed: %v", err)
	}

	return binaryPath
}

// TestCLIVersion tests that the version command works correctly.
func TestCLIVersion(t *testing.T) {
	binaryPath := buildBinary(t)

	cmd := exec.Command(binaryPath, "version")
	output, err := cmd.CombinedOutput()
	if err != nil {
		t.Fatalf("version command failed: %v\nOutput: %s", err, string(output))
	}

	versionOutput := strings.TrimSpace(string(output))
	if !strings.HasPrefix(versionOutput, "v") {
		t.Errorf("version output should start with 'v', got: %s", versionOutput)
	}
}

// TestCLIVersionOnly tests that the version command works correctly.
func TestCLIVersionOnly(t *testing.T) {
	binaryPath := buildBinary(t)

	cmd := exec.Command(binaryPath, "version")
	output, err := cmd.CombinedOutput()
	if err != nil {
		t.Fatalf("version command failed: %v\nOutput: %s", err, string(output))
	}

	versionOutput := strings.TrimSpace(string(output))
	if !strings.HasPrefix(versionOutput, "v") {
		t.Errorf("version output should start with 'v', got: %s", versionOutput)
	}
}

// TestCLIPercentageCalculation tests percentage calculation commands.

// TestCLIPercentageCalculation tests percentage calculation commands.
func TestCLIPercentageCalculation(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name     string
		args     []string
		expected string
	}{
		{
			name:     "20% of 150",
			args:     []string{"20% of 150"},
			expected: "30",
		},
		{
			name:     "what is 20% of 150",
			args:     []string{"what is 20% of 150"},
			expected: "30",
		},
		{
			name:     "30 is what % of 150",
			args:     []string{"30 is what % of 150"},
			expected: "20",
		},
		{
			name:     "30 is 20% of what",
			args:     []string{"30 is 20% of what"},
			expected: "150",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			cmd := exec.Command(binaryPath, tt.args...)
			output, err := cmd.CombinedOutput()
			if err != nil {
				t.Fatalf("command failed: %v\nOutput: %s", err, string(output))
			}

			outputStr := strings.TrimSpace(string(output))
			if !strings.Contains(outputStr, tt.expected) {
				t.Errorf("output should contain '%s', got: %s", tt.expected, outputStr)
			}
		})
	}
}

// TestCLIRPNCalculation tests RPN calculation commands.
func TestCLIRPNCalculation(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name     string
		args     []string
		expected string
	}{
		{
			name:     "3 4 +",
			args:     []string{"3 4 +"},
			expected: "7",
		},
		{
			name:     "5 6 *",
			args:     []string{"5 6 *"},
			expected: "30",
		},
		{
			name:     "10 2 /",
			args:     []string{"10 2 /"},
			expected: "5",
		},
		{
			name:     "2 3 ^",
			args:     []string{"2 3 ^"},
			expected: "8",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			cmd := exec.Command(binaryPath, tt.args...)
			output, err := cmd.CombinedOutput()
			if err != nil {
				t.Fatalf("command failed: %v\nOutput: %s", err, string(output))
			}

			outputStr := strings.TrimSpace(string(output))
			if !strings.Contains(outputStr, tt.expected) {
				t.Errorf("output should contain '%s', got: %s", tt.expected, outputStr)
			}
		})
	}
}

// TestCLIExitCode tests that the CLI returns proper exit codes.
func TestCLIExitCode(t *testing.T) {
	binaryPath := buildBinary(t)

	// Test successful command returns 0
	cmd := exec.Command(binaryPath, "version")
	if err := cmd.Run(); err != nil {
		t.Errorf("version command should succeed, got error: %v", err)
	}

	// Test invalid command returns non-zero
	cmd = exec.Command(binaryPath, "invalidcommand")
	output, err := cmd.CombinedOutput()
	if err == nil {
		t.Errorf("invalid command should fail, but succeeded")
	}
	if len(output) > 0 && !strings.Contains(string(output), "Error:") {
		t.Errorf("error output should contain 'Error:', got: %s", string(output))
	}
}

// TestCLIInvalidPercentage tests invalid percentage calculation.
func TestCLIInvalidPercentage(t *testing.T) {
	binaryPath := buildBinary(t)

	cmd := exec.Command(binaryPath, "invalid percentage")
	output, err := cmd.CombinedOutput()
	if err == nil {
		t.Errorf("invalid percentage should fail, but succeeded")
	}
	if len(output) > 0 && !strings.Contains(string(output), "Error:") {
		t.Errorf("error output should contain 'Error:', got: %s", string(output))
	}
}

// TestCLIInvalidRPN tests invalid RPN expression.
func TestCLIInvalidRPN(t *testing.T) {
	binaryPath := buildBinary(t)

	cmd := exec.Command(binaryPath, "3 +")
	output, err := cmd.CombinedOutput()
	if err == nil {
		t.Errorf("invalid RPN should fail, but succeeded")
	}
	if len(output) > 0 && !strings.Contains(string(output), "Error:") {
		t.Errorf("error output should contain 'Error:', got: %s", string(output))
	}
}

// TestCLIStdin tests that stdin input works correctly.
func TestCLIStdin(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name     string
		stdin    string
		expected string
	}{
		{
			name:     "RPN expression via stdin",
			stdin:    "3 4 +",
			expected: "7",
		},
		{
			name:     "Percentage expression via stdin",
			stdin:    "20% of 150",
			expected: "30",
		},
		{
			name:     "Variable assignment via stdin",
			stdin:    "x 5 = x x +",
			expected: "10",
		},
		{
			name:     "Boolean comparison via stdin",
			stdin:    "5 3 ==",
			expected: "false",
		},
		{
			name:     "Boolean to number coercion via stdin",
			stdin:    "true 2 *",
			expected: "2",
		},
		{
			name:     "Complex expression via stdin",
			stdin:    "2 3 + 4 *",
			expected: "20",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			cmd := exec.Command(binaryPath)
			cmd.Stdin = strings.NewReader(tt.stdin)
			output, err := cmd.CombinedOutput()
			if err != nil {
				t.Fatalf("command failed: %v\nOutput: %s", err, string(output))
			}

			outputStr := strings.TrimSpace(string(output))
			if !strings.Contains(outputStr, tt.expected) {
				t.Errorf("output should contain '%s', got: %s", tt.expected, outputStr)
			}
		})
	}
}

// TestCLIStdinWithPiping tests stdin via pipe (simulating `echo EXP | gt`).
func TestCLIStdinWithPiping(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name     string
		input    string
		expected string
	}{
		{
			name:     "echo 3 4 +",
			input:    "3 4 +",
			expected: "7",
		},
		{
			name:     "echo 20%% of 150",
			input:    "20% of 150",
			expected: "30",
		},
		{
			name:     "echo x 5 = x x +",
			input:    "x 5 = x x +",
			expected: "10",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			// Simulate piping: echo INPUT | gt
			cmd := exec.Command(binaryPath)
			cmd.Stdin = strings.NewReader(tt.input)
			output, err := cmd.CombinedOutput()
			if err != nil {
				t.Fatalf("command failed: %v\nOutput: %s", err, string(output))
			}

			outputStr := strings.TrimSpace(string(output))
			if !strings.Contains(outputStr, tt.expected) {
				t.Errorf("output should contain '%s', got: %s", tt.expected, outputStr)
			}
		})
	}
}

// TestCLIStdinWithMultipleLines tests stdin with multiple lines (should use first line).
func TestCLIStdinWithMultipleLines(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name     string
		stdin    string
		expected string
	}{
		{
			name:     "Multiple lines - first line used",
			stdin:    "3 4 +\n5 6 +",
			expected: "7",
		},
		{
			name:     "Empty line then expression",
			stdin:    "\n3 4 +",
			expected: "7",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			cmd := exec.Command(binaryPath)
			cmd.Stdin = strings.NewReader(tt.stdin)
			output, err := cmd.CombinedOutput()
			if err != nil {
				t.Fatalf("command failed: %v\nOutput: %s", err, string(output))
			}

			outputStr := strings.TrimSpace(string(output))
			if !strings.Contains(outputStr, tt.expected) {
				t.Errorf("output should contain '%s', got: %s", tt.expected, outputStr)
			}
		})
	}
}

// TestCLIVariableAssignment tests all variable assignment syntaxes.
func TestCLIVariableAssignment(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name     string
		args     []string
		expected string
	}{
		{
			name:     "Standard assignment x = 2",
			args:     []string{"x", "2", "=", "x", "2", "+"},
			expected: "4",
		},
		{
			name:     "Right assignment x 2 := (value on stack, right)",
			args:     []string{"x", "2", ":=", "x", "2", "+"},
			expected: "4",
		},
		{
			name:     "Left assignment 2 x =: (value on stack, left)",
			args:     []string{"2", "x", "=: ", "x", "2", "+"},
			expected: "4",
		},
		{
			name:     "Stack variant with =: (value on stack, left)",
			args:     []string{"2", "x", "=: ", "x", "2", "+"},
			expected: "4",
		},
		{
			name:     "Assignment with existing variable",
			args:     []string{"x", "5", "=", "x", "3", "+"},
			expected: "8",
		},
		{
			name:     "Assignment with complex expression",
			args:     []string{"x", "2", "=", "x", "x", "*", "x", "+"},
			expected: "6",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			cmd := exec.Command(binaryPath, tt.args...)
			output, err := cmd.CombinedOutput()
			if err != nil {
				t.Fatalf("command failed: %v\nOutput: %s", err, string(output))
			}

			outputStr := strings.TrimSpace(string(output))
			if !strings.Contains(outputStr, tt.expected) {
				t.Errorf("output should contain '%s', got: %s", tt.expected, outputStr)
			}
		})
	}
}

// TestCLIVariableAssignmentSyntaxes tests each assignment syntax individually
// and verifies the variable can be used in subsequent expressions.
func TestCLIVariableAssignmentSyntaxes(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name     string
		args     []string
		expected string
	}{
		{
			name:     "Assignment: x = 2, then x 2 +",
			args:     []string{"x", "2", "=", "x", "2", "+"},
			expected: "4",
		},
		{
			name:     "Right assignment: x 2 :=, then x 2 +",
			args:     []string{"x", "2", ":=", "x", "2", "+"},
			expected: "4",
		},
		{
			name:     "Left assignment: 2 x =:, then x 2 +",
			args:     []string{"2", "x", "=: ", "x", "2", "+"},
			expected: "4",
		},
		{
			name:     "Assignment: y = 10, then y 5 *",
			args:     []string{"y", "10", "=", "y", "5", "*"},
			expected: "50",
		},
		{
			name:     "Assignment: pi = 3.14159, then pi 2 *",
			args:     []string{"pi", "3.14159", "=", "pi", "2", "*"},
			expected: "6.28318",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			cmd := exec.Command(binaryPath, tt.args...)
			output, err := cmd.CombinedOutput()
			if err != nil {
				t.Fatalf("command failed: %v\nOutput: %s", err, string(output))
			}

			outputStr := strings.TrimSpace(string(output))
			if !strings.Contains(outputStr, tt.expected) {
				t.Errorf("output should contain '%s', got: %s", tt.expected, outputStr)
			}
		})
	}
}

// TestCLIVariableAssignmentPreservation tests that variables persist within a single expression.
func TestCLIVariableAssignmentPreservation(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name     string
		args     []string
		expected string
	}{
		{
			name:     "Single assignment, multiple uses",
			args:     []string{"x", "5", "=", "x", "x", "+"},
			expected: "10", // x=5, then x+x=10
		},
		{
			name:     "Assignment with calculation as value (stack-variant)",
			args:     []string{"2", "3", "+", "x", "=: ", "x", "4", "*"},
			expected: "20", // 2+3=5, x=: assigns 5 to x, x*4=20
		},
		{
			name:     "Stack-variant with := (value on stack)",
			args:     []string{"x", "2", "3", "+", ":=", "x", "1", "+"},
			expected: "6", // x=2+3=5, x+1=6
		},
		{
			name:     "Stack-variant with =: (value first)",
			args:     []string{"2", "3", "+", "x", "=: ", "x", "1", "+"},
			expected: "6", // 2+3=5, x=: assigns 5 to x, x+1=6
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			cmd := exec.Command(binaryPath, tt.args...)
			output, err := cmd.CombinedOutput()
			if err != nil {
				t.Fatalf("command failed: %v\nOutput: %s", err, string(output))
			}

			outputStr := strings.TrimSpace(string(output))
			if !strings.Contains(outputStr, tt.expected) {
				t.Errorf("output should contain '%s', got: %s", tt.expected, outputStr)
			}
		})
	}
}

// TestCLIVariableAssignmentRepetition tests that repeated assignment works correctly.
func TestCLIVariableAssignmentRepetition(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name     string
		args     []string
		expected string
	}{
		{
			name:     "Reassign same variable",
			args:     []string{"x", "5", ":=", "x", "10", ":=", "x", "2", "+"},
			expected: "12", // x=5, x=10, x+2=12
		},
		{
			name:     "Stack-variant reassignment",
			args:     []string{"x", "1", ":=", "x", "2", ":=", "x", "3", "+"},
			expected: "5", // x=1 then x=2, x+3=5
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			cmd := exec.Command(binaryPath, tt.args...)
			output, err := cmd.CombinedOutput()
			if err != nil {
				t.Fatalf("command failed: %v\nOutput: %s", err, string(output))
			}

			outputStr := strings.TrimSpace(string(output))
			if !strings.Contains(outputStr, tt.expected) {
				t.Errorf("output should contain '%s', got: %s", tt.expected, outputStr)
			}
		})
	}
}

// TestCLIBinaryExponentiation tests the ** operator with binary exponentiation.
func TestCLIBinaryExponentiation(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name     string
		args     []string
		expected string
	}{
		{
			name:     "2 ** 10",
			args:     []string{"2", "10", "**"},
			expected: "1024",
		},
		{
			name:     "3 ** 4",
			args:     []string{"3", "4", "**"},
			expected: "81",
		},
		{
			name:     "2 ** -3",
			args:     []string{"2", "-3", "**"},
			expected: "0.125",
		},
		{
			name:     "10 ** -2",
			args:     []string{"10", "-2", "**"},
			expected: "0.01",
		},
		{
			name:     "5 ** 0",
			args:     []string{"5", "0", "**"},
			expected: "1",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			cmd := exec.Command(binaryPath, tt.args...)
			output, err := cmd.CombinedOutput()
			if err != nil {
				t.Fatalf("command failed: %v\nOutput: %s", err, string(output))
			}

			outputStr := strings.TrimSpace(string(output))
			if !strings.Contains(outputStr, tt.expected) {
				t.Errorf("output should contain '%s', got: %s", tt.expected, outputStr)
			}
		})
	}
}

// TestCLIBinaryExponentiationStdin tests the ** operator via stdin.
func TestCLIBinaryExponentiationStdin(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name     string
		stdin    string
		expected string
	}{
		{
			name:     "2 ** 10 via stdin",
			stdin:    "2 10 **",
			expected: "1024",
		},
		{
			name:     "3 ** 4 via stdin",
			stdin:    "3 4 **",
			expected: "81",
		},
		{
			name:     "2 ** -3 via stdin",
			stdin:    "2 -3 **",
			expected: "0.125",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			cmd := exec.Command(binaryPath)
			cmd.Stdin = strings.NewReader(tt.stdin)
			output, err := cmd.CombinedOutput()
			if err != nil {
				t.Fatalf("command failed: %v\nOutput: %s", err, string(output))
			}

			outputStr := strings.TrimSpace(string(output))
			if !strings.Contains(outputStr, tt.expected) {
				t.Errorf("output should contain '%s', got: %s", tt.expected, outputStr)
			}
		})
	}
}

// TestCLIMetricConversion tests metric unit conversion end-to-end.
func TestCLIMetricConversion(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name     string
		args     []string
		expected string
	}{
		{
			name:     "1000Mbps to Gbps",
			args:     []string{"1000Mbps", "@Gbps", "convert"},
			expected: "1",
		},
		{
			name:     "1hr to min",
			args:     []string{"1hr", "@min", "convert"},
			expected: "60",
		},
		{
			name:     "1km to mi",
			args:     []string{"1km", "@mi", "convert"},
			expected: "0.621",
		},
		{
			name:     "Cool to GB",
			args:     []string{"100", "@GB", "convert"},
			expected: "100",
		},
		{
			name:     "metric show",
			args:     []string{"100Mbps", "metric", "show"},
			expected: "Mbps",
		},
		{
			name:     "metric list",
			args:     []string{"metric", "list"},
			expected: "DataRate",
		},
		{
			name:     "metric DataRate",
			args:     []string{"metric", "DataRate"},
			expected: "bps",
		},
		{
			name:     "metric compatible same category",
			args:     []string{"100Mbps", "1Gbps", "metric", "compatible"},
			expected: "true",
		},
		{
			name:     "custom define and list",
			args:     []string{"custom", "define", "myunit", "42", "Custom"},
			expected: "defined",
		},
		{
			name:     "metric binary set",
			args:     []string{"metric", "binary", "set"},
			expected: "IEC",
		},
		{
			name:     "metric decimal set",
			args:     []string{"metric", "decimal", "set"},
			expected: "SI",
		},
		{
			name:     "cross-category multiply Mbps*hr=bits",
			args:     []string{"100Mbps", "1hr", "*"},
			expected: "3.6e+11",
		},
		{
			name:     "metric-aware addition same category",
			args:     []string{"100Mbps", "50Mbps", "+"},
			expected: "150",
		},
		{
			name:     "hyper add metric-aware",
			args:     []string{"100Mbps", "50Mbps", "25Mbps", "[+]"},
			expected: "175",
		},
		{
			name:     "hyper multiply returns Cool",
			args:     []string{"3", "4", "5", "[*]"},
			expected: "60",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			cmd := exec.Command(binaryPath, tt.args...)
			output, err := cmd.CombinedOutput()
			if err != nil {
				t.Fatalf("command failed: %v\nOutput: %s", err, string(output))
			}

			outputStr := strings.TrimSpace(string(output))
			if !strings.Contains(outputStr, tt.expected) {
				t.Errorf("output should contain '%s', got: %s", tt.expected, outputStr)
			}
		})
	}
}

// TestCLIMetricErrors tests that metric operations produce proper errors.
func TestCLIMetricErrors(t *testing.T) {
	binaryPath := buildBinary(t)

	tests := []struct {
		name string
		args []string
	}{
		{
			name: "incompatible categories add",
			args: []string{"100Mbps", "2hr", "+"},
		},
		{
			name: "incompatible convert",
			args: []string{"100Mbps", "@hr", "convert"},
		},
		{
			name: "unknown metric",
			args: []string{"@nope", "convert"},
		},
		{
			name: "hyper add incompatible",
			args: []string{"100Mbps", "2hr", "[+]"},
		},
		{
			name: "custom undefine built-in",
			args: []string{"custom", "undefine", "Cool"},
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			cmd := exec.Command(binaryPath, tt.args...)
			output, err := cmd.CombinedOutput()
			if err == nil {
				t.Errorf("command should fail, but succeeded. Output: %s", string(output))
			}
		})
	}
}