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
|
package govaluate
import (
"testing"
)
/*
Represents a test of correctly creating a SQL query string from an expression.
*/
type QueryTest struct {
Name string
Input string
Expected string
}
func TestSQLSerialization(test *testing.T) {
testCases := []QueryTest{
QueryTest{
Name: "Single GT",
Input: "1 > 0",
Expected: "1 > 0",
},
QueryTest{
Name: "Single LT",
Input: "0 < 1",
Expected: "0 < 1",
},
QueryTest{
Name: "Single GTE",
Input: "1 >= 0",
Expected: "1 >= 0",
},
QueryTest{
Name: "Single LTE",
Input: "0 <= 1",
Expected: "0 <= 1",
},
QueryTest{
Name: "Single EQ",
Input: "1 == 0",
Expected: "1 = 0",
},
QueryTest{
Name: "Single NEQ",
Input: "1 != 0",
Expected: "1 <> 0",
},
QueryTest{
Name: "Parameter names",
Input: "foo == bar",
Expected: "[foo] = [bar]",
},
QueryTest{
Name: "Strings",
Input: "'foo'",
Expected: "'foo'",
},
QueryTest{
Name: "Date format",
Input: "'2014-07-04T00:00:00Z'",
Expected: "'2014-07-04T00:00:00Z'",
},
QueryTest{
Name: "Single PLUS",
Input: "10 + 10",
Expected: "10 + 10",
},
QueryTest{
Name: "Single MINUS",
Input: "10 - 10",
Expected: "10 - 10",
},
QueryTest{
Name: "Single MULTIPLY",
Input: "10 * 10",
Expected: "10 * 10",
},
QueryTest{
Name: "Single DIVIDE",
Input: "10 / 10",
Expected: "10 / 10",
},
QueryTest{
Name: "Single true bool",
Input: "true",
Expected: "1",
},
QueryTest{
Name: "Single false bool",
Input: "false",
Expected: "0",
},
QueryTest{
Name: "Single AND",
Input: "true && true",
Expected: "1 AND 1",
},
QueryTest{
Name: "Single OR",
Input: "true || true",
Expected: "1 OR 1",
},
QueryTest{
Name: "Clauses",
Input: "10 + (foo + bar)",
Expected: "10 + ( [foo] + [bar] )",
},
QueryTest{
Name: "Negate prefix",
Input: "foo < -1",
Expected: "[foo] < -1",
},
QueryTest{
Name: "Invert prefix",
Input: "!(foo > 1)",
Expected: "NOT ( [foo] > 1 )",
},
QueryTest{
Name: "Exponent",
Input: "1 ** 2",
Expected: "POW(1, 2)",
},
QueryTest{
Name: "Modulus",
Input: "10 % 2",
Expected: "MOD(10, 2)",
},
QueryTest{
Name: "Membership operator",
Input: "foo IN (1, 2, 3)",
Expected: "[foo] in ( 1 , 2 , 3 )",
},
QueryTest{
Name: "Null coalescence",
Input: "foo ?? bar",
Expected: "COALESCE([foo], [bar])",
},
/*
// Ternaries don't work yet, because the outputter is not yet sophisticated enough to produce them.
QueryTest{
Name: "Full ternary",
Input: "[foo] == 5 ? 1 : 2",
Expected: "IF([foo] = 5, 1, 2)",
},
QueryTest{
Name: "Half ternary",
Input: "[foo] == 5 ? 1",
Expected: "IF([foo] = 5, 1)",
},
QueryTest{
Name: "Full ternary with implicit bool",
Input: "[foo] ? 1 : 2",
Expected: "IF([foo] = 0, 1, 2)",
},
QueryTest{
Name: "Half ternary with implicit bool",
Input: "[foo] ? 1",
Expected: "IF([foo] = 0, 1)",
},*/
QueryTest{
Name: "Regex equals",
Input: "'foo' =~ '[fF][oO]+'",
Expected: "'foo' RLIKE '[fF][oO]+'",
},
QueryTest{
Name: "Regex not-equals",
Input: "'foo' !~ '[fF][oO]+'",
Expected: "'foo' NOT RLIKE '[fF][oO]+'",
},
}
runQueryTests(testCases, test)
}
func runQueryTests(testCases []QueryTest, test *testing.T) {
var expression *EvaluableExpression
var actualQuery string
var err error
test.Logf("Running %d SQL translation test cases", len(testCases))
// Run the test cases.
for _, testCase := range testCases {
expression, err = NewEvaluableExpression(testCase.Input)
if err != nil {
test.Logf("Test '%s' failed to parse: %s", testCase.Name, err)
test.Logf("Expression: '%s'", testCase.Input)
test.Fail()
continue
}
actualQuery, err = expression.ToSQLQuery()
if err != nil {
test.Logf("Test '%s' failed to create query: %s", testCase.Name, err)
test.Logf("Expression: '%s'", testCase.Input)
test.Fail()
continue
}
if actualQuery != testCase.Expected {
test.Logf("Test '%s' did not create expected query.", testCase.Name)
test.Logf("Actual: '%s', expected '%s'", actualQuery, testCase.Expected)
test.Fail()
continue
}
}
}
|