forked from cloudspannerecosystem/spanner-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli_test.go
399 lines (378 loc) · 10.5 KB
/
cli_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
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
//
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package main
import (
"bytes"
"fmt"
"io"
"io/ioutil"
"strings"
"testing"
"time"
sppb "cloud.google.com/go/spanner/apiv1/spannerpb"
"github.com/chzyer/readline"
"github.com/google/go-cmp/cmp"
)
type nopCloser struct {
io.Reader
}
func (n *nopCloser) Close() error {
return nil
}
func TestBuildCommands(t *testing.T) {
tests := []struct {
Input string
Expected []*command
ExpectError bool
}{
{Input: `SELECT * FROM t1;`, Expected: []*command{{&SelectStatement{"SELECT * FROM t1"}, false}}},
{Input: `CREATE TABLE t1;`, Expected: []*command{{&BulkDdlStatement{[]string{"CREATE TABLE t1"}}, false}}},
{Input: `CREATE TABLE t1(pk INT64) PRIMARY KEY(pk); ALTER TABLE t1 ADD COLUMN col INT64; CREATE INDEX i1 ON t1(col); DROP INDEX i1; DROP TABLE t1;`,
Expected: []*command{{&BulkDdlStatement{[]string{
"CREATE TABLE t1(pk INT64) PRIMARY KEY(pk)",
"ALTER TABLE t1 ADD COLUMN col INT64",
"CREATE INDEX i1 ON t1(col)",
"DROP INDEX i1",
"DROP TABLE t1",
}}, false}}},
{Input: `CREATE TABLE t1(pk INT64) PRIMARY KEY(pk);
CREATE TABLE t2(pk INT64) PRIMARY KEY(pk);
SELECT * FROM t1\G
DROP TABLE t1;
DROP TABLE t2;
SELECT 1;`,
Expected: []*command{
{&BulkDdlStatement{[]string{"CREATE TABLE t1(pk INT64) PRIMARY KEY(pk)", "CREATE TABLE t2(pk INT64) PRIMARY KEY(pk)"}}, false},
{&SelectStatement{"SELECT * FROM t1"}, true},
{&BulkDdlStatement{[]string{"DROP TABLE t1", "DROP TABLE t2"}}, false},
{&SelectStatement{"SELECT 1"}, false},
}},
{
Input: `
CREATE TABLE t1(pk INT64 /* NOT NULL*/, col INT64) PRIMARY KEY(pk);
INSERT t1(pk/*, col*/) VALUES(1/*, 2*/);
UPDATE t1 SET col = /* pk + */ col + 1 WHERE TRUE;
DELETE t1 WHERE TRUE /* AND pk = 1 */;
SELECT 0x1/**/A`,
Expected: []*command{
{&BulkDdlStatement{[]string{"CREATE TABLE t1(pk INT64 , col INT64) PRIMARY KEY(pk)"}}, false},
{&DmlStatement{"INSERT t1(pk/*, col*/) VALUES(1/*, 2*/)"}, false},
{&DmlStatement{"UPDATE t1 SET col = /* pk + */ col + 1 WHERE TRUE"}, false},
{&DmlStatement{"DELETE t1 WHERE TRUE /* AND pk = 1 */"}, false},
{&SelectStatement{"SELECT 0x1/**/A"}, false},
}},
{
// spanner-cli don't permit empty statements.
Input: `SELECT 1; /* comment */; SELECT 2`,
ExpectError: true,
},
{
Input: `SELECT 1; /* comment 1 */; /* comment 2 */`,
ExpectError: true,
},
{
// A comment after the last semicolon is permitted.
Input: `SELECT 1; /* comment */`,
Expected: []*command{
{&SelectStatement{"SELECT 1"}, false},
}},
}
for _, test := range tests {
got, err := buildCommands(test.Input)
if test.ExpectError && err == nil {
t.Errorf("expect error but not error, input: %v", test.Input)
}
if !test.ExpectError && err != nil {
t.Errorf("err: %v, input: %v", err, test.Input)
}
if !cmp.Equal(got, test.Expected) {
t.Errorf("invalid result: %v", cmp.Diff(test.Expected, got))
}
}
}
func TestReadInteractiveInput(t *testing.T) {
for _, tt := range []struct {
desc string
input string
want *inputStatement
wantError bool
}{
{
desc: "single line",
input: "SELECT 1;\n",
want: &inputStatement{
statement: "SELECT 1",
statementWithoutComments: "SELECT 1",
delim: delimiterHorizontal,
},
},
{
desc: "multi lines",
input: "SELECT\n* FROM\n t1\n;\n",
want: &inputStatement{
statement: "SELECT\n* FROM\n t1",
statementWithoutComments: "SELECT\n* FROM\n t1",
delim: delimiterHorizontal,
},
},
{
desc: "multi lines with vertical delimiter",
input: "SELECT\n* FROM\n t1\\G\n",
want: &inputStatement{
statement: "SELECT\n* FROM\n t1",
statementWithoutComments: "SELECT\n* FROM\n t1",
delim: delimiterVertical,
},
},
{
desc: "multi lines with multiple comments",
input: "SELECT\n/* comment */1,\n# comment\n2;\n",
want: &inputStatement{
statement: "SELECT\n/* comment */1,\n# comment\n2",
statementWithoutComments: "SELECT\n 1,\n 2",
delim: delimiterHorizontal,
},
},
{
desc: "multiple statements",
input: "SELECT 1; SELECT 2;",
want: nil,
wantError: true,
},
} {
t.Run(tt.desc, func(t *testing.T) {
rl, err := readline.NewEx(&readline.Config{
Stdin: ioutil.NopCloser(strings.NewReader(tt.input)),
Stdout: ioutil.Discard,
Stderr: ioutil.Discard,
})
if err != nil {
t.Fatalf("unexpected readline.NewEx() error: %v", err)
}
got, err := readInteractiveInput(rl, "")
if err != nil && !tt.wantError {
t.Errorf("readInteractiveInput(%q) got error: %v", tt.input, err)
}
if diff := cmp.Diff(tt.want, got, cmp.AllowUnexported(inputStatement{})); diff != "" {
t.Errorf("difference in statement: (-want +got):\n%s", diff)
}
})
}
}
func TestPrintResult(t *testing.T) {
t.Run("DisplayModeTable", func(t *testing.T) {
out := &bytes.Buffer{}
result := &Result{
ColumnNames: []string{"foo", "bar"},
Rows: []Row{
Row{[]string{"1", "2"}},
Row{[]string{"3", "4"}},
},
IsMutation: false,
}
printResult(out, result, DisplayModeTable, false, false)
expected := strings.TrimPrefix(`
+-----+-----+
| foo | bar |
+-----+-----+
| 1 | 2 |
| 3 | 4 |
+-----+-----+
`, "\n")
got := out.String()
if got != expected {
t.Errorf("invalid print: expected = %s, but got = %s", expected, got)
}
})
t.Run("DisplayModeVertical", func(t *testing.T) {
out := &bytes.Buffer{}
result := &Result{
ColumnNames: []string{"foo", "bar"},
Rows: []Row{
Row{[]string{"1", "2"}},
Row{[]string{"3", "4"}},
},
IsMutation: false,
}
printResult(out, result, DisplayModeVertical, false, false)
expected := strings.TrimPrefix(`
*************************** 1. row ***************************
foo: 1
bar: 2
*************************** 2. row ***************************
foo: 3
bar: 4
`, "\n")
got := out.String()
if got != expected {
t.Errorf("invalid print: expected = %s, but got = %s", expected, got)
}
})
t.Run("DisplayModeTab", func(t *testing.T) {
out := &bytes.Buffer{}
result := &Result{
ColumnNames: []string{"foo", "bar"},
Rows: []Row{
Row{[]string{"1", "2"}},
Row{[]string{"3", "4"}},
},
IsMutation: false,
}
printResult(out, result, DisplayModeTab, false, false)
expected := "foo\tbar\n" +
"1\t2\n" +
"3\t4\n"
got := out.String()
if got != expected {
t.Errorf("invalid print: expected = %s, but got = %s", expected, got)
}
})
}
func TestResultLine(t *testing.T) {
timestamp := "2020-04-01T15:00:00.999999999+09:00"
ts, err := time.Parse(time.RFC3339Nano, timestamp)
if err != nil {
t.Fatalf("unexpected time.Parse error: %v", err)
}
for _, tt := range []struct {
desc string
result *Result
verbose bool
want string
}{
{
desc: "mutation in normal mode",
result: &Result{
AffectedRows: 3,
IsMutation: true,
Stats: QueryStats{
ElapsedTime: "10 msec",
},
},
verbose: false,
want: "Query OK, 3 rows affected (10 msec)\n",
},
{
desc: "mutation in verbose mode (timestamp exist)",
result: &Result{
AffectedRows: 3,
IsMutation: true,
Stats: QueryStats{
ElapsedTime: "10 msec",
},
Timestamp: ts,
},
verbose: true,
want: fmt.Sprintf("Query OK, 3 rows affected (10 msec)\ntimestamp: %s\n", timestamp),
},
{
desc: "mutation in verbose mode (both of timestamp and mutation count exist)",
result: &Result{
AffectedRows: 3,
IsMutation: true,
Stats: QueryStats{
ElapsedTime: "10 msec",
},
CommitStats: &sppb.CommitResponse_CommitStats{MutationCount: 6},
Timestamp: ts,
},
verbose: true,
want: fmt.Sprintf("Query OK, 3 rows affected (10 msec)\ntimestamp: %s\nmutation_count: 6\n", timestamp),
},
{
desc: "mutation in verbose mode (timestamp not exist)",
result: &Result{
AffectedRows: 0,
IsMutation: true,
Stats: QueryStats{
ElapsedTime: "10 msec",
},
},
verbose: true,
want: "Query OK, 0 rows affected (10 msec)\n",
},
{
desc: "query in normal mode (rows exist)",
result: &Result{
AffectedRows: 3,
IsMutation: false,
Stats: QueryStats{
ElapsedTime: "10 msec",
},
},
verbose: false,
want: "3 rows in set (10 msec)\n",
},
{
desc: "query in normal mode (no rows exist)",
result: &Result{
AffectedRows: 0,
IsMutation: false,
Stats: QueryStats{
ElapsedTime: "10 msec",
},
},
verbose: false,
want: "Empty set (10 msec)\n",
},
{
desc: "query in verbose mode (all stats fields exist)",
result: &Result{
AffectedRows: 3,
IsMutation: false,
Stats: QueryStats{
ElapsedTime: "10 msec",
CPUTime: "5 msec",
RowsScanned: "10",
RowsReturned: "3",
DeletedRowsScanned: "1",
OptimizerVersion: "2",
OptimizerStatisticsPackage: "auto_20210829_05_22_28UTC",
},
Timestamp: ts,
},
verbose: true,
want: fmt.Sprintf(`3 rows in set (10 msec)
timestamp: %s
cpu time: 5 msec
rows scanned: 10 rows
deleted rows scanned: 1 rows
optimizer version: 2
optimizer statistics: auto_20210829_05_22_28UTC
`, timestamp),
},
{
desc: "query in verbose mode (only stats fields supported by Cloud Spanner Emulator)",
result: &Result{
AffectedRows: 3,
IsMutation: false,
Stats: QueryStats{
ElapsedTime: "10 msec",
RowsReturned: "3",
},
Timestamp: ts,
},
verbose: true,
want: fmt.Sprintf("3 rows in set (10 msec)\ntimestamp: %s\n", timestamp),
},
} {
t.Run(tt.desc, func(t *testing.T) {
if got := resultLine(tt.result, tt.verbose); tt.want != got {
t.Errorf("resultLine(%v, %v) = %q, but want = %q", tt.result, tt.verbose, got, tt.want)
}
})
}
}