File: shell_test.cpp

package info (click to toggle)
mysql-workbench 6.2.3%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 102,612 kB
  • ctags: 84,593
  • sloc: ansic: 804,682; cpp: 438,759; yacc: 59,129; python: 54,293; xml: 48,851; sql: 5,512; objc: 1,414; makefile: 505; sh: 455; java: 237; ruby: 6; perl: 5; php: 1
file content (156 lines) | stat: -rw-r--r-- 4,145 bytes parent folder | download
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
/* 
 * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; version 2 of the
 * License.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301  USA
 */

#include "grt/grt_shell.h"
#include "grt/grt_dispatcher.h"
#include "grt/grt_manager.h"
#include "wb_helpers.h"


using namespace grt;
using namespace bec;


BEGIN_TEST_DATA_CLASS(be_shell)
public:
  GRT grt;
  GRTManager manager;
  GRTDispatcher dispatcher;
  ShellBE shell;
TEST_DATA_CONSTRUCTOR(be_shell)
  : dispatcher(&grt, false, true), shell(&manager, &dispatcher)
{
  shell.set_saves_history(10);
}

END_TEST_DATA_CLASS;



TEST_MODULE(be_shell, "grt shell backend");



TEST_FUNCTION(1)
{ // test history navigation
  bool flag;
  std::string line;
  
  shell.set_saves_history(10);
  shell.save_history_line("line1");
  flag= shell.previous_history_line("newline", line);
  ensure("previous line", flag);
  ensure_equals("previous line value", line, "line1");

  flag= shell.next_history_line(line);
  ensure("next line", flag);
  ensure_equals("next line value", line, "newline");


  shell.save_history_line("line2");
  shell.save_history_line("line3");

  flag= shell.next_history_line(line);
  ensure("next", !flag);

  flag= shell.previous_history_line("newline", line);
  ensure("previous line", flag);
  ensure_equals("previous line value", line, "line3");

  flag= shell.previous_history_line("line3", line);
  ensure("previous line", flag);
  ensure_equals("previous line value", line, "line2");
  
  flag= shell.previous_history_line("line2", line);
  ensure("previous line", flag);
  ensure_equals("previous line value", line, "line1");
  
  flag= shell.previous_history_line("line1", line);
  ensure("previous line", !flag);

  flag= shell.next_history_line(line);
  ensure("next line", flag);
  ensure_equals("next line value", line, "line2");

  flag= shell.next_history_line(line);
  ensure("next line", flag);
  ensure_equals("next line value", line, "line3");
  
  flag= shell.next_history_line(line);
  ensure("next line", flag);
  ensure_equals("next line value", line, "newline");
  
  flag= shell.next_history_line(line);
  ensure("previous line", !flag);

  flag= shell.previous_history_line("newline", line);
  ensure("previous line", flag);
  ensure_equals("previous line value", line, "line3");
}


TEST_FUNCTION(2)
{
  bool flag;
  ShellBE *tmpshell= new ShellBE(&manager, &dispatcher);

  tmpshell->set_saves_history(10);
  tmpshell->set_save_directory(".");

  tmpshell->save_history_line("line1");
  tmpshell->save_history_line("line2");
  tmpshell->save_history_line("line3.1\nline3.2\n\nline3.3");
  tmpshell->save_history_line("line4");
  tmpshell->save_history_line("line5");

  tmpshell->set_snippet_data("hello world\nsnippet line this");
  tmpshell->store_state();
  
  delete tmpshell;

  tmpshell= new ShellBE(&manager, &dispatcher);
  tmpshell->set_saves_history(10);
  tmpshell->set_save_directory(".");
  tmpshell->restore_state();

  std::string line;

  flag= tmpshell->previous_history_line("newline", line);
  ensure("get restored line", flag);

  ensure_equals("last line ", line, "line5");

  flag= tmpshell->previous_history_line(line, line);
  ensure("prev after save", flag);
  ensure_equals("last line ", line, "line4");

  flag= tmpshell->previous_history_line(line, line);
  ensure("prev after save", flag);
  ensure_equals("last line ", line, "line3.1\nline3.2\n\nline3.3");


  line= tmpshell->get_snippet_data();
  ensure_equals("snippet", line, "hello world\nsnippet line this");

  delete tmpshell;
}



END_TESTS