forked from xwb1989/sqlparser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkeywords_test.go
55 lines (48 loc) · 1.2 KB
/
keywords_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
package sqlparser
import (
"bufio"
"fmt"
"os"
"path"
"strings"
"testing"
"github.com/stretchr/testify/require"
)
func TestKeywordTable(t *testing.T) {
for _, kw := range keywords {
lookup, ok := keywordLookupTable.LookupString(kw.name)
require.Truef(t, ok, "keyword %q failed to match", kw.name)
require.Equalf(t, lookup, kw.id, "keyword %q matched to %d (expected %d)", kw.name, lookup, kw.id)
}
}
var vitessReserved = map[string]bool{
"ESCAPE": true,
"NEXT": true,
"OFF": true,
"SAVEPOINT": true,
"SQL_NO_CACHE": true,
}
func TestCompatibility(t *testing.T) {
file, err := os.Open(path.Join("testdata", "mysql_keywords.txt"))
require.NoError(t, err)
defer file.Close()
parser := NewTestParser()
scanner := bufio.NewScanner(file)
skipStep := 4
for scanner.Scan() {
if skipStep != 0 {
skipStep--
continue
}
afterSplit := strings.SplitN(scanner.Text(), "\t", 2)
word, reserved := afterSplit[0], afterSplit[1] == "1"
if reserved || vitessReserved[word] {
word = "`" + word + "`"
}
sql := fmt.Sprintf("create table %s(c1 int)", word)
_, err := parser.ParseStrictDDL(sql)
if err != nil {
t.Errorf("%s is not compatible with mysql", word)
}
}
}