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 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
|
/*
* 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 "wb_helpers.h"
#include "grtdb/db_object_helpers.h"
#include "model/wb_history_tree.h"
#include "model/wb_context_model.h"
#include "grt_test_utility.h"
#include "grtpp_undo_manager.h"
#include "grtpp_util.h"
using namespace bec;
using namespace wb;
using namespace grt;
BEGIN_TEST_DATA_CLASS(wb_undo_others)
public:
WBTester tester;
WBContextUI *wbui;
UndoManager *um;
OverviewBE *overview;
size_t last_undo_stack_height;
size_t last_redo_stack_height;
TEST_DATA_CONSTRUCTOR(wb_undo_others)
{
tester.create_new_document();
wbui= tester.wb->get_ui();
um= tester.wb->get_grt()->get_undo_manager();
overview = 0;
last_undo_stack_height= 0;
last_redo_stack_height= 0;
}
#include "wb_undo_methods.h"
void check_overview_object(const std::string &what, const NodeId &base_node,
const std::string &list_path, size_t initial_count= 0)
{
reset_undo_accounting();
// Checks Overview object handling by adding a node, renaming it and then deleting it
// with undo/redo for each operation
NodeId add_node(base_node);
add_node.append(0);
NodeId added_node(base_node);
added_node.append((int)initial_count + 1);
std::string name;
{
grt::BaseListRef list= grt::BaseListRef::cast_from(get_value_by_path(tester.get_pmodel(), list_path));
ensure_equals(list_path+" "+what+" initial count", list.count(), initial_count);
}
// Add diagram
overview->get_field(add_node, OverviewBE::Label, name);
ensure_equals(what+" add node", name, "Add "+what);
overview->activate_node(add_node);
check_only_one_undo_added();
// check that it was added
overview->refresh_node(base_node, true);
ensure_equals(what+" node count", overview->count_children(base_node), initial_count+2);
{
grt::BaseListRef list= grt::BaseListRef::cast_from(get_value_by_path(tester.get_pmodel(), list_path));
ensure_equals(list_path+" "+what+" count", list.count(), initial_count+1U);
}
// check undo add
check_undo();
overview->refresh_node(base_node, true);
ensure_equals(what+" node count", overview->count_children(base_node), initial_count+1);
{
grt::BaseListRef list= grt::BaseListRef::cast_from(get_value_by_path(tester.get_pmodel(), list_path));
ensure_equals(list_path+" "+what+" count after undo", list.count(), initial_count);
}
// check redo add
check_redo();
overview->refresh_node(base_node, true);
ensure_equals("diagram node count", overview->count_children(base_node), initial_count+2);
{
grt::BaseListRef list= grt::BaseListRef::cast_from(get_value_by_path(tester.get_pmodel(), list_path));
ensure_equals(list_path+" "+what+" count after redo", list.count(), initial_count+1U);
}
// check Renaming
std::string old_name;
overview->get_field(added_node, OverviewBE::Label, old_name);
overview->set_field(added_node, OverviewBE::Label, "new name");
overview->refresh_node(added_node, false);
check_only_one_undo_added();
overview->get_field(added_node, OverviewBE::Label, name);
ensure_equals("rename "+what, name, "new name");
check_undo();
overview->refresh_node(added_node, false);
overview->get_field(added_node, OverviewBE::Label, name);
ensure_equals("undo rename "+what, name, old_name);
check_redo();
overview->refresh_node(added_node, false);
overview->get_field(added_node, OverviewBE::Label, name);
ensure_equals("redo rename "+what, name, "new name");
// Delete
overview->request_delete_object(added_node);
check_only_one_undo_added();
// check delete
overview->refresh_node(base_node, true);
ensure_equals(what+" node count", overview->count_children(base_node), initial_count+1);
{
grt::BaseListRef list= grt::BaseListRef::cast_from(get_value_by_path(tester.get_pmodel(), list_path));
ensure_equals(list_path+" "+what+" count after delete", list.count(), initial_count);
}
// check undo delete
check_undo();
overview->refresh_node(base_node, true);
ensure_equals(what+" node count", overview->count_children(base_node), initial_count+2);
{
grt::BaseListRef list= grt::BaseListRef::cast_from(get_value_by_path(tester.get_pmodel(), list_path));
ensure_equals(list_path+" "+what+" count after undo", list.count(), initial_count+1U);
}
// check redo delete
check_redo();
overview->refresh_node(base_node, true);
ensure_equals(what+" node count", overview->count_children(base_node), initial_count+1);
{
grt::BaseListRef list= grt::BaseListRef::cast_from(get_value_by_path(tester.get_pmodel(), list_path));
ensure_equals(list_path+" "+what+" count after redo", list.count(), initial_count);
}
check_undo(); // final undo delete
check_undo(); // final undo rename
check_undo(); // final undo add
}
END_TEST_DATA_CLASS;
// For undo tests we use a single document loaded at the beginning of the group
// Each test must do the test and undo everything so that the state of the document
// never actually changes.
// At the end of the test group, the document is compared to the saved one to check
// for unexpected changes (ie, anything but stuff like timestamps)
TEST_MODULE(wb_undo_others, "undo tests for Workbench");
// setup
TEST_FUNCTION(1)
{
bool flag= tester.wb->open_document("data/workbench/undo_test_model1.mwb");
ensure("open_document", flag);
overview= wbui->get_physical_overview();
wbui->set_active_form(overview);
ensure_equals("schemas", tester.get_catalog()->schemata().count(), 1U);
db_SchemaRef schema(tester.get_catalog()->schemata()[0]);
// make sure the loaded model contains expected number of things
ensure_equals("tables", schema->tables().count(), 4U);
ensure_equals("views", schema->views().count(), 1U);
ensure_equals("groups", schema->routineGroups().count(), 1U);
ensure_equals("diagrams", tester.get_pmodel()->diagrams().count(), 1U);
model_DiagramRef view(tester.get_pmodel()->diagrams()[0]);
ensure_equals("figures", view->figures().count(), 5U);
ensure_equals("undo stack is empty", um->get_undo_stack().size(), 0U);
}
// Overview
//----------------------------------------------------------------------------------------
// Test Adding, Renaming and Deleting objects
TEST_FUNCTION(10) // Diagram
{
check_overview_object("Diagram", NodeId("0"), "/diagrams", 1);
ensure_equals("undo stack size", um->get_undo_stack().size(), 0U);
}
TEST_FUNCTION(12) // Schema
{
std::string s;
ensure_equals("schema count", overview->count_children(NodeId("1")), 1U);
overview->request_add_object(NodeId("1"));
check_only_one_undo_added();
overview->refresh_node(NodeId("1"), true);
ensure_equals("schema count", overview->count_children(NodeId("1")), 2U);
check_undo();
overview->refresh_node(NodeId("1"), true);
ensure_equals("schema count", overview->count_children(NodeId("1")), 1U);
check_redo();
overview->refresh_node(NodeId("1"), true);
ensure_equals("schema count", overview->count_children(NodeId("1")), 2U);
overview->activate_node(NodeId("1.1"));
overview->refresh_node(NodeId("1"), true);
overview->get_field(NodeId("1.1"), 0, s);
ensure_equals("overview original name", s, "new_schema1");
/* cant rename schema directly atm
bool flag= overview->set_field(NodeId("1.1"), 0, "sakila");
ensure("rename", flag);
check_only_one_undo_added();
overview->refresh_node(NodeId("1"), true);
overview->get_field(NodeId("1.1"), 0, s);
ensure_equals("overview rename", s, "sakila");
check_undo();
overview->refresh_node(NodeId("1"), true);
overview->get_field(NodeId("1.1"), 0, s);
ensure_equals("overview original name", s, "new_schema1");
check_redo();
overview->set_field(NodeId("1.1"), 0, "sakila");
check_only_one_undo_added();
*/
overview->request_delete_object(NodeId("1.1"));
check_only_one_undo_added();
overview->refresh_node(NodeId("1"), true);
ensure_equals("schema count", overview->count_children(NodeId("1")), 1U);
check_undo();
overview->refresh_node(NodeId("1"), true);
ensure_equals("schema count", overview->count_children(NodeId("1")), 2U);
check_redo();
overview->refresh_node(NodeId("1"), true);
ensure_equals("schema count", overview->count_children(NodeId("1")), 1U);
check_undo();
check_undo(); // final undo schema add
ensure_equals("undo stack size", um->get_undo_stack().size(), 0U);
}
TEST_FUNCTION(14) // Table
{
check_overview_object("Table", NodeId("1.0.0"), "/catalog/schemata/0/tables", 4U);
}
TEST_FUNCTION(16) // View
{
check_overview_object("View", NodeId("1.0.1"), "/catalog/schemata/0/views", 1U);
}
TEST_FUNCTION(18) // Routine
{
check_overview_object("Routine", NodeId("1.0.2"), "/catalog/schemata/0/routines", 0U);
}
TEST_FUNCTION(20) // Routine Group
{
check_overview_object("Group", NodeId("1.0.3"), "/catalog/schemata/0/routineGroups", 1U);
}
TEST_FUNCTION(22) // User
{
check_overview_object("User", NodeId("2.0"), "/catalog/users");
}
TEST_FUNCTION(24) // Role
{
check_overview_object("Role", NodeId("2.1"), "/catalog/roles");
}
TEST_FUNCTION(26) // Script
{
check_overview_object("Script", NodeId("3"), "/scripts");
}
TEST_FUNCTION(28) // Note
{
check_overview_object("Note", NodeId("4"), "/notes");
}
// Sidebar
//----------------------------------------------------------------------------------------
TEST_FUNCTION(29)
{
tester.wb->close_document();
// reinitialize
bool flag= tester.wb->open_document("data/workbench/undo_test_model1.mwb");
ensure("open_document", flag);
overview= wbui->get_physical_overview();
wbui->set_active_form(overview);
bec::NodeId node(0);
node.append(1);
overview->activate_node(node);
}
TEST_FUNCTION(30) // Property
{
ModelDiagramForm *view= tester.wb->get_model_context()->get_diagram_form_for_diagram_id(tester.get_pview().id());
ensure("viewform", view != 0);
model_FigureRef table(find_named_object_in_list(tester.get_pview()->figures(), "table2"));
tester.get_pview()->selectObject(table);
ensure_equals("selection", view->get_selection().count(), 1U);
std::vector<std::string> items;
ValueInspectorBE *insp= wbui->create_inspector_for_selection(view, items);
ensure("prop inspector created", insp != 0);
ensure_equals("items", items.size(), 1U);
ensure_equals("item0", items[0], "table2: Table");
ensure_equals("table name", *table->name(), "table2");
std::string s;
insp->get_field(NodeId(6), ValueInspectorBE::Name, s);
ensure_equals("node for name", s, "name");
bool flag= insp->set_field(NodeId(6), ValueInspectorBE::Value, "hello");
ensure("rename value", flag);
check_only_one_undo_added();
ensure_equals("table renamed", *table->name(), "hello");
check_undo();
ensure_equals("table renamed back", *table->name(), "table2");
check_redo();
ensure_equals("table renamed", *table->name(), "hello");
check_undo();
delete insp;
}
TEST_FUNCTION(32) // Description
{
// select table in overview
overview->refresh_node(NodeId("1.0.0"), true);
overview->begin_selection_marking();
overview->select_node(NodeId("1.0.0.1"));
overview->end_selection_marking();
std::vector<std::string> items;
grt::ListRef<GrtObject> new_object_list;
std::string description, old_description;
old_description= wbui->get_description_for_selection(new_object_list, items);
ensure_equals("selection count", items.size(), 1U);
wbui->set_description_for_selection(new_object_list, "test description");
check_only_one_undo_added();
ensure_equals("description",
*tester.get_catalog()->schemata()[0]->tables()[0]->comment(), "test description");
check_undo();
ensure_equals("description",
*tester.get_catalog()->schemata()[0]->tables()[0]->comment(), "");
check_redo();
ensure_equals("description",
*tester.get_catalog()->schemata()[0]->tables()[0]->comment(), "test description");
// undo change description
check_undo();
}
// Configuration
//----------------------------------------------------------------------------------------
TEST_FUNCTION(40) // General Settings
{
// ensure("not implemented", false);
}
TEST_FUNCTION(42) // Model Settings
{
//ensure("not implemented", false);
}
TEST_FUNCTION(44) // Diagram Settings
{
// ensure("not implemented", false);
}
TEST_FUNCTION(46) // Page Settings
{
// ensure("not implemented", false);
}
// Plugins
//----------------------------------------------------------------------------------------
TEST_FUNCTION(50) // Plugin Execution
{
return; // something wrong with blocked UI events at this point... maybe should split the test
model_DiagramRef mview(tester.get_pview());
// wbui->set_active_form(tester.tester->get_model_context()->get_diagram_form_for_diagram_id(tester.get_pmodel()->diagrams()[0].id()));
ensure_equals("grid", mview->options().get_int("ShowGrid", -42), -42);
wbui->get_command_ui()->activate_command("plugin:tester.edit.toggleGrid");
check_only_one_undo_added();
ensure_equals("grid", mview->options().get_int("ShowGrid", -42), 0);
check_undo();
ensure_equals("grid", mview->options().get_int("ShowGrid", -42), -42);
check_redo();
ensure_equals("grid", mview->options().get_int("ShowGrid", -42), 0);
check_undo();
}
END_TESTS
|