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
|
// SPDX-License-Identifier: MIT
// Copyright (c) 2026 Paul Buetow
package integrationtests
import (
"os"
"os/exec"
"strings"
"testing"
)
// buildBinary builds the gt binary to a temporary location.
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"
}
buildCmd := exec.Command("go", "build", "-o", "/tmp/gt-test", "./cmd/gt")
buildCmd.Dir = projectRoot
if err := buildCmd.Run(); err != nil {
t.Fatalf("build failed: %v", err)
}
t.Cleanup(func() {
// Explicitly ignore error return from os.Remove during cleanup
_ = os.Remove("/tmp/gt-test")
})
return "/tmp/gt-test"
}
// 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)
}
})
}
}
|