blob: cd15306bf49e2c312244d409a224cb7e91ce044f (
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
|
Feature: run the cli,
call the help command,
exit the cli
Scenario: run "\?" command
When we send "\?" command
then we see help output
Scenario: run source command
When we send source command
then we see help output
Scenario: run partial select command
When we send partial select command
then we see error message
then we see dbcli prompt
Scenario: check our application_name
When we run query to check application_name
then we see found
Scenario: run the cli and exit
When we send "ctrl + d"
then dbcli exits
Scenario: list databases
When we list databases
then we see list of databases
Scenario: run the cli with --username
When we launch dbcli using --username
and we send "\?" command
then we see help output
Scenario: run the cli with --user
When we launch dbcli using --user
and we send "\?" command
then we see help output
Scenario: run the cli with --port
When we launch dbcli using --port
and we send "\?" command
then we see help output
Scenario: run the cli with --password
When we launch dbcli using --password
then we send password
and we see dbcli prompt
when we send "\?" command
then we see help output
Scenario: run the cli with dsn and password
When we launch dbcli using dsn_password
then we send password
and we see dbcli prompt
when we send "\?" command
then we see help output
|