aboutsummaryrefslogtreecommitdiff
path: root/weed/query/engine/arithmetic_with_functions_test.go
blob: 6d0edd8f79bc013e79a5525f384391c42762815f (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
package engine

import (
	"context"
	"testing"
)

// TestArithmeticWithFunctions tests arithmetic operations with function calls
// This validates the complete AST parser and evaluation system for column-level calculations
func TestArithmeticWithFunctions(t *testing.T) {
	engine := NewTestSQLEngine()

	testCases := []struct {
		name     string
		sql      string
		expected string
		desc     string
	}{
		{
			name:     "Simple function arithmetic",
			sql:      "SELECT LENGTH('hello') + 10 FROM user_events LIMIT 1",
			expected: "15",
			desc:     "Basic function call with addition",
		},
		{
			name:     "Nested functions with arithmetic",
			sql:      "SELECT length(trim('  hello world  ')) + 12 FROM user_events LIMIT 1",
			expected: "23",
			desc:     "Complex nested functions with arithmetic operation (user's original failing query)",
		},
		{
			name:     "Function subtraction",
			sql:      "SELECT LENGTH('programming') - 5 FROM user_events LIMIT 1",
			expected: "6",
			desc:     "Function call with subtraction",
		},
		{
			name:     "Function multiplication",
			sql:      "SELECT LENGTH('test') * 3 FROM user_events LIMIT 1",
			expected: "12",
			desc:     "Function call with multiplication",
		},
		{
			name:     "Multiple nested functions",
			sql:      "SELECT LENGTH(UPPER(TRIM('  hello  '))) FROM user_events LIMIT 1",
			expected: "5",
			desc:     "Triple nested functions",
		},
	}

	for _, tc := range testCases {
		t.Run(tc.name, func(t *testing.T) {
			result, err := engine.ExecuteSQL(context.Background(), tc.sql)

			if err != nil {
				t.Errorf("Query failed: %v", err)
				return
			}

			if result.Error != nil {
				t.Errorf("Query result error: %v", result.Error)
				return
			}

			if len(result.Rows) == 0 {
				t.Error("Expected at least one row")
				return
			}

			actual := result.Rows[0][0].ToString()

			if actual != tc.expected {
				t.Errorf("%s: Expected '%s', got '%s'", tc.desc, tc.expected, actual)
			} else {
				t.Logf("PASS %s: %s → %s", tc.desc, tc.sql, actual)
			}
		})
	}
}