-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql-manipulator_test.go
109 lines (99 loc) · 2.83 KB
/
sql-manipulator_test.go
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
package main
import (
"fmt"
"regexp"
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
type CreateConcatTest struct {
schemaName string
tableName string
columns []string
expected string
concatEx string
}
func Test_CreateConcat(t *testing.T) {
table := []CreateConcatTest{
{
schemaName: "A",
tableName: "PRD",
columns: []string{"PRD_CD"},
expected: "SELECT CONCAT('INSERT INTO ', 'A.PRD ', 'SET ', 'PRD_CD = ', x.PRD_CD, ';' ) AS s FROM A.PRD x;",
concatEx: "INSERT INTO A.PRD SET PRD_CD = x.PRD_CD ;",
},
{
schemaName: "A",
tableName: "GATES",
columns: []string{"NAME", "OPEN", "CLOSE"},
expected: "SELECT CONCAT('INSERT INTO ', 'A.GATES ', 'SET ', 'NAME = ', x.NAME, ', ', 'OPEN = ', x.OPEN, ', ', 'CLOSE = ', x.CLOSE, ';' ) AS s FROM A.GATES x;",
concatEx: "INSERT INTO A.GATES SET NAME = x.NAME , OPEN = x.OPEN , CLOSE = x.CLOSE ;",
},
}
for _, v := range table {
output := CreateSelectInsertionFromSchema(v.schemaName, v.tableName, v.columns)
assert.Equal(
t,
v.expected,
output,
)
extracted, err := extractConcatParams(output)
if err != nil {
panic(err)
}
space := regexp.MustCompile(`\s+`)
assert.Equal(
t,
space.ReplaceAllString(strings.Join(extracted, ""), " "),
v.concatEx,
)
}
}
// func extractParenthesesContent(input string) (string, error) {
// openParenIndex := strings.Index(input, "(")
// closeParenIndex := strings.Index(input, ")")
//
// if openParenIndex == -1 || closeParenIndex == -1 || openParenIndex >= closeParenIndex {
// return "", fmt.Errorf("invalid input format: missing or misplaced parentheses")
// }
//
// content := input[openParenIndex+1 : closeParenIndex]
// return content, nil
// }
func extractConcatParams(input string) ([]string, error) {
// Regular expression to match the CONCAT function and capture its parameters.
// This regex handles potential variations in whitespace and quoting.
re := regexp.MustCompile(`CONCAT\(([^)]*)\)`)
match := re.FindStringSubmatch(input)
if match == nil {
return nil, fmt.Errorf("no CONCAT function found")
}
paramsString := match[1]
// Split the parameters string by commas, handling quoted strings.
var params []string
inQuote := false
currentParam := ""
for _, r := range paramsString {
switch r {
case '\'':
inQuote = !inQuote
if !inQuote { // End of quote, trim and add
params = append(params, currentParam)
currentParam = ""
}
case ',':
if !inQuote { // Comma outside quotes, add the parameter
params = append(params, currentParam)
currentParam = ""
} else {
currentParam += string(r) // Comma inside quotes, keep it
}
default:
currentParam += string(r)
}
}
if currentParam != "" { // Add the last parameter if not empty
params = append(params, strings.TrimSpace(currentParam))
}
return params, nil
}