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 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
|
/*
* 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 "grt_test_utility.h"
#include "model/wb_history_tree.h"
#include "stub/stub_utilities.h"
using namespace bec;
using namespace wb;
using namespace grt;
using namespace base;
BEGIN_TEST_DATA_CLASS(wb_undo_diagram)
public:
WBTester tester;
WBContextUI *wbui;
UndoManager *um;
OverviewBE *overview;
ModelDiagramForm *diagram_form;
model_DiagramRef diagram;
size_t last_undo_stack_height;
size_t last_redo_stack_height;
TEST_DATA_CONSTRUCTOR(wb_undo_diagram)
{
populate_grt(tester.grt, tester);
wbui = tester.wb->get_ui();
um = tester.wb->get_grt()->get_undo_manager();
overview = wbui->get_physical_overview();
diagram = model_DiagramRef();
last_undo_stack_height = 0;
last_redo_stack_height = 0;
bool flag = tester.wb->open_document("data/workbench/undo_test_model1.mwb");
ensure("open_document", flag);
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);
diagram = tester.get_pmodel()->diagrams()[0];
ensure_equals("figures", diagram->figures().count(), 5U);
ensure_equals("layers", diagram->layers().count(), 1U);
tester.open_all_diagrams();
tester.sync_view();
diagram_form = tester.wb->get_model_context()->get_diagram_form_for_diagram_id(tester.get_pview().id());
ensure("Diagram form is invalid", diagram_form != 0);
mforms::ToolBar *toolbar = diagram_form->get_tools_toolbar();
ensure("Toolbar creation failed", toolbar != NULL);
// Model file not closed by intention. It's used in following test cases.
}
#include "wb_undo_methods.h"
void place_figure_with_tool(const std::string &tool, double x= 10, double y= 10)
{
diagram_form->set_tool(tool);
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, static_cast<int>(x), static_cast<int>(y), (mdc::EventState)0);
}
END_TEST_DATA_CLASS;
TEST_MODULE(wb_undo_diagram, "undo tests for diagram actions in Workbench");
// setup
TEST_FUNCTION(1)
{
wbui->set_active_form(diagram_form);
ensure_equals("undo stack is empty", um->get_undo_stack().size(), 0U);
}
// final check
TEST_FUNCTION(99)
{
diagram->unselectAll();
WBTester other(false);
populate_grt(other.grt, other); // Needed for comparison.
other.wb->open_document("data/workbench/undo_test_model1_duplicate.mwb");
/*
other.open_all_diagrams();
other.sync_view();
// Temporarily switch some properties, which would otherwise be reported as different,
// but don't matter here.
workbench_WorkbenchRef other_root = other.wb->get_root();
grt::StringRef other_path = other_root->docPath();
workbench_WorkbenchRef root = tester.wb->get_root();
other_root->docPath(root->docPath());
app_DocumentInfoRef info = root->doc()->info();
app_DocumentInfoRef other_info = other_root->doc()->info();
info->dateChanged(other_info->dateChanged());
// Check if the document matches the one originally loaded.
grt_ensure_equals("Unexpected changes:",
tester.wb->get_root(),
other.wb->get_root());
other_root->docPath(other_path);
*/
ensure("Could not close document", other.close_document());
other.wb->close_document_finish();
ensure("Could not close document", tester.close_document());
tester.wb->close_document_finish();
}
// Diagram
//----------------------------------------------------------------------------------------
TEST_FUNCTION(10) // Place Table
{
db_SchemaRef schema= tester.get_catalog()->schemata()[0];
size_t old_figure_count= diagram->figures().count();
size_t old_root_figure_count= diagram->rootLayer()->figures().count();
size_t old_object_count= schema->tables().count();
WBComponentPhysical *compo= wbui->get_wb()->get_component<WBComponentPhysical>();
compo->place_new_db_object(diagram_form, Point(10, 10), wb::ObjectTable);
check_only_one_undo_added();
ensure_equals("figure add", diagram->figures().count(), old_figure_count+1);
ensure_equals("table add", schema->tables().count(), old_object_count+1);
ensure_equals("figure root add", diagram->rootLayer()->figures().count(), old_root_figure_count+1);
check_undo();
ensure_equals("figure add undo", diagram->figures().count(), old_figure_count);
ensure_equals("table add undo", schema->tables().count(), old_object_count);
ensure_equals("figure root add undo", diagram->rootLayer()->figures().count(), old_root_figure_count);
check_redo();
ensure_equals("figure add redo", diagram->figures().count(), old_figure_count+1);
ensure_equals("table add redo", schema->tables().count(), old_object_count+1);
ensure_equals("figure root add redo", diagram->rootLayer()->figures().count(), old_root_figure_count+1);
check_undo();
}
TEST_FUNCTION(11) // Place View
{
db_SchemaRef schema= tester.get_catalog()->schemata()[0];
size_t old_figure_count= diagram->figures().count();
size_t old_root_figure_count= diagram->rootLayer()->figures().count();
size_t old_object_count= schema->views().count();
WBComponentPhysical *compo= wbui->get_wb()->get_component<WBComponentPhysical>();
compo->place_new_db_object(diagram_form, Point(10, 10), wb::ObjectView);
check_only_one_undo_added();
ensure_equals("figure add", diagram->figures().count(), old_figure_count+1);
ensure_equals("diagram_form add", schema->views().count(), old_object_count+1);
ensure_equals("figure root add", diagram->rootLayer()->figures().count(), old_root_figure_count+1);
check_undo();
ensure_equals("figure add undo", diagram->figures().count(), old_figure_count);
ensure_equals("diagram_form add undo", schema->views().count(), old_object_count);
ensure_equals("figure root add undo", diagram->rootLayer()->figures().count(), old_root_figure_count);
check_redo();
ensure_equals("figure add redo", diagram->figures().count(), old_figure_count+1);
ensure_equals("diagram_form add redo", schema->views().count(), old_object_count+1);
ensure_equals("figure root add redo", diagram->rootLayer()->figures().count(), old_root_figure_count+1);
check_undo();
}
TEST_FUNCTION(12) // Place Routine Group
{
db_SchemaRef schema= tester.get_catalog()->schemata()[0];
size_t old_figure_count= diagram->figures().count();
size_t old_root_figure_count= diagram->rootLayer()->figures().count();
size_t old_object_count= schema->routineGroups().count();
WBComponentPhysical *compo= wbui->get_wb()->get_component<WBComponentPhysical>();
compo->place_new_db_object(diagram_form, Point(10, 10), wb::ObjectRoutineGroup);
check_only_one_undo_added();
ensure_equals("figure add", diagram->figures().count(), old_figure_count+1);
ensure_equals("group add", schema->routineGroups().count(), old_object_count+1);
ensure_equals("figure root add", diagram->rootLayer()->figures().count(), old_root_figure_count+1);
check_undo();
ensure_equals("figure add undo", diagram->figures().count(), old_figure_count);
ensure_equals("group add undo", schema->routineGroups().count(), old_object_count);
ensure_equals("figure root add undo", diagram->rootLayer()->figures().count(), old_root_figure_count);
check_redo();
ensure_equals("figure add redo", diagram->figures().count(), old_figure_count+1);
ensure_equals("group add redo", schema->routineGroups().count(), old_object_count+1);
ensure_equals("figure root add redo", diagram->rootLayer()->figures().count(), old_root_figure_count+1);
check_undo();
}
TEST_FUNCTION(13) // Place Image
{
size_t old_figure_count= diagram->figures().count();
size_t old_root_figure_count= diagram->rootLayer()->figures().count();
// place image will ask for a filename of the image
tester.add_file_for_file_dialog("data/images/sakila.png");
place_figure_with_tool(WB_TOOL_IMAGE);
check_only_one_undo_added();
ensure_equals("figure add", diagram->figures().count(), old_figure_count+1);
ensure_equals("figure root add", diagram->rootLayer()->figures().count(), old_root_figure_count+1);
check_undo();
ensure_equals("figure add undo", diagram->figures().count(), old_figure_count);
ensure_equals("figure root add undo", diagram->rootLayer()->figures().count(), old_root_figure_count);
check_redo();
ensure_equals("figure add redo", diagram->figures().count(), old_figure_count+1);
ensure_equals("figure root add redo", diagram->rootLayer()->figures().count(), old_root_figure_count+1);
check_undo();
}
TEST_FUNCTION(14) // Place Text
{
size_t old_figure_count= diagram->figures().count();
size_t old_root_figure_count= diagram->rootLayer()->figures().count();
place_figure_with_tool(WB_TOOL_NOTE);
check_only_one_undo_added();
ensure_equals("figure add", diagram->figures().count(), old_figure_count+1);
ensure_equals("figure root add", diagram->rootLayer()->figures().count(), old_root_figure_count+1);
check_undo();
ensure_equals("figure add undo", diagram->figures().count(), old_figure_count);
ensure_equals("figure root add undo", diagram->rootLayer()->figures().count(), old_root_figure_count);
check_redo();
ensure_equals("figure add redo", diagram->figures().count(), old_figure_count+1);
ensure_equals("figure root add redo", diagram->rootLayer()->figures().count(), old_root_figure_count+1);
check_undo();
}
TEST_FUNCTION(15) // Place Layer
{
size_t old_layer_count= diagram->layers().count();
size_t old_root_layer_count= diagram->rootLayer()->subLayers().count();
diagram_form->set_tool(WB_TOOL_LAYER);
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, 10, 10, (mdc::EventState)0);
diagram_form->handle_mouse_move(50, 50, mdc::SLeftButtonMask);
diagram_form->handle_mouse_button(mdc::ButtonLeft, false, 50, 50, (mdc::EventState)0);
check_only_one_undo_added();
ensure_equals("layer add", diagram->layers().count(), old_layer_count+1);
ensure_equals("layer root add", diagram->rootLayer()->subLayers().count(), old_root_layer_count+1);
check_undo();
ensure_equals("layer add undo", diagram->layers().count(), old_layer_count);
ensure_equals("layer root add undo", diagram->rootLayer()->subLayers().count(), old_root_layer_count);
check_redo();
ensure_equals("layer add redo", diagram->layers().count(), old_layer_count+1);
ensure_equals("layer root add redo", diagram->rootLayer()->subLayers().count(), old_root_layer_count+1);
check_undo();
}
TEST_FUNCTION(16) // Place something inside a Layer
{
size_t old_figure_count= diagram->figures().count();
size_t old_layer_count= diagram->layers().count();
size_t old_root_layer_count= diagram->rootLayer()->subLayers().count();
// place layer
diagram_form->set_tool(WB_TOOL_LAYER);
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, 10, 10, (mdc::EventState)0);
diagram_form->handle_mouse_move(150, 150, (mdc::EventState)0);
diagram_form->handle_mouse_button(mdc::ButtonLeft, false, 150, 150, (mdc::EventState)0);
check_only_one_undo_added();
ensure_equals("layer add", diagram->layers().count(), old_layer_count+1);
ensure_equals("layer root add", diagram->rootLayer()->subLayers().count(), old_root_layer_count+1);
model_LayerRef layer(diagram->layers()[old_layer_count]);
ensure("layer", layer.is_valid());
ensure_equals("layer empty", layer->figures().count(), 0U);
// place a note inside the layer
place_figure_with_tool(WB_TOOL_NOTE, 50, 50);
check_only_one_undo_added();
ensure_equals("note add", diagram->figures().count(), old_figure_count+1);
model_FigureRef figure(diagram->figures()[old_figure_count]);
ensure_equals("new note pos", *figure->top(), 40);
ensure_equals("new note pos", *figure->left(), 40);
ensure_equals("layer contains figure", layer->figures().count(), 1U);
ensure("note layer", figure->layer() == layer);
check_undo();
ensure_equals("note add undo", diagram->figures().count(), old_figure_count);
ensure_equals("layer contains figure undo", layer->figures().count(), 0U);
check_redo();
ensure_equals("note add undo", diagram->figures().count(), old_figure_count+1);
ensure_equals("layer contains figure undo", layer->figures().count(), 1U);
check_undo();
check_undo();
}
TEST_FUNCTION(17) // Place Layer around something
{
size_t old_figure_count= diagram->figures().count();
size_t old_layer_count= diagram->layers().count();
size_t old_root_layer_count= diagram->rootLayer()->subLayers().count();
// place a note
diagram_form->set_tool(WB_TOOL_NOTE);
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, 200, 200, (mdc::EventState)0);
check_only_one_undo_added();
model_FigureRef figure(diagram->figures()[old_figure_count]);
ensure_equals("note add", diagram->figures().count(), old_figure_count+1);
// place layer around the note
diagram_form->set_tool(WB_TOOL_LAYER);
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, 190, 190, (mdc::EventState)0);
diagram_form->handle_mouse_move(300, 300, (mdc::EventState)0);
diagram_form->handle_mouse_button(mdc::ButtonLeft, false, 300, 300, (mdc::EventState)0);
check_only_one_undo_added();
ensure_equals("layer add", diagram->layers().count(), old_layer_count+1);
ensure_equals("layer root add", diagram->rootLayer()->subLayers().count(), old_root_layer_count+1);
model_LayerRef layer(diagram->layers()[old_layer_count]);
ensure("layer", layer.is_valid());
ensure("note layer", figure->layer() == layer);
ensure_equals("layer contains note only", layer->figures().count(), 1U);
ensure("layer contains note only", layer->figures().get_index(figure) != BaseListRef::npos);
ensure_equals("layer add", diagram->layers().count(), old_layer_count+1);
ensure_equals("layer root add", diagram->rootLayer()->subLayers().count(), old_root_layer_count+1);
ensure_equals("layer note", layer->figures().count(), 1U);
ensure_equals("root layer note", layer->figures().count(), 1U);
check_undo();
ensure_equals("layer add undo", diagram->layers().count(), old_layer_count);
ensure_equals("layer root add undo", diagram->rootLayer()->subLayers().count(), old_root_layer_count);
ensure_equals("layer note", layer->figures().count(), 0U);
check_redo();
ensure_equals("layer add redo", diagram->layers().count(), old_layer_count+1);
ensure_equals("layer root add redo", diagram->rootLayer()->subLayers().count(), old_root_layer_count+1);
ensure_equals("layer note", layer->figures().count(), 1U);
check_undo(); // undo the layer
check_undo(); // undo the note place
}
TEST_FUNCTION(20) // Move Object
{
double x, y;
model_FigureRef figure(diagram->figures()[0]);
x= figure->left();
y= figure->top();
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, static_cast<int>(x+5), static_cast<int>(y+5), (mdc::EventState)0);
diagram_form->handle_mouse_move(50, 50, mdc::SLeftButtonMask);
diagram_form->handle_mouse_button(mdc::ButtonLeft, false, 50, 50, mdc::SLeftButtonMask);
check_only_one_undo_added();
ensure("object moved", *figure->left() != x);
check_undo();
ensure_equals("move undo", *figure->left(), x);
check_redo();
ensure("move redo", *figure->left() != x);
check_undo();
}
TEST_FUNCTION(22) // Move into and out of Layer
{
double x, y;
model_FigureRef figure(diagram->figures()[0]);
model_LayerRef layer(diagram->layers()[0]);
ensure("layer is not root", layer != diagram->rootLayer());
x= figure->left();
y= figure->top();
ensure("object is in root", figure->layer() == diagram->rootLayer());
ensure_equals("layer begins empty", layer->figures().count(), 0U);
// move object into layer
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, static_cast<int>(x+5), static_cast<int>(y+5), (mdc::EventState)0);
diagram_form->handle_mouse_move(150, 400, mdc::SLeftButtonMask);
diagram_form->handle_mouse_button(mdc::ButtonLeft, false, 150, 400, mdc::SLeftButtonMask);
check_only_one_undo_added();
ensure("object moved", *figure->left() != x);
ensure("object moved into layer", figure->layer() == layer);
ensure("layer contains object", layer->figures().get_index(figure) != BaseListRef::npos);
ensure("object not in root", diagram->rootLayer()->figures()->get_index(figure) == BaseListRef::npos);
check_undo();
ensure_equals("move undo", *figure->left(), x);
ensure("object moved into layer undo", figure->layer() == diagram->rootLayer());
ensure_equals("layer empty on undo", layer->figures().count(), 0U);
ensure("layer not contains object", layer->figures().get_index(figure) == BaseListRef::npos);
ensure("object in root", diagram->rootLayer()->figures()->get_index(figure) != BaseListRef::npos);
check_redo();
ensure("move redo", *figure->left() != x);
ensure("object moved into layer redo", figure->layer() == layer);
ensure_equals("layer contains stuff after redo", layer->figures().count(), 1U);
ensure("layer contains object", layer->figures().get_index(figure) != BaseListRef::npos);
ensure("object not in root", diagram->rootLayer()->figures()->get_index(figure) == BaseListRef::npos);
// Move object out of layer.
double new_x = figure->left();
double mouse_x = figure->left() + layer->left();
double mouse_y = figure->top() + layer->top();
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, (int)(mouse_x + 5), (int)(mouse_y + 5), (mdc::EventState)0);
diagram_form->handle_mouse_move(10, 10, mdc::SLeftButtonMask);
diagram_form->handle_mouse_button(mdc::ButtonLeft, false, 10, 10, mdc::SLeftButtonMask);
check_only_one_undo_added();
ensure("object moved", *figure->left() != new_x);
ensure("object moved out of layer", figure->layer() == diagram->rootLayer());
ensure("layer is empty", layer->figures().get_index(figure) == BaseListRef::npos);
ensure("object in root layer", diagram->rootLayer()->figures().get_index(figure) != BaseListRef::npos);
check_undo();
ensure("object moved undo", *figure->left() == new_x);
ensure("object moved out of layer undo", figure->layer() == layer);
ensure("layer is not empty", layer->figures().get_index(figure) != BaseListRef::npos);
ensure("object not in root layer", diagram->rootLayer()->figures().get_index(figure) == BaseListRef::npos);
check_redo();
ensure("object moved", *figure->left() != new_x);
ensure("object moved out of layer", figure->layer() == diagram->rootLayer());
ensure("layer is empty", layer->figures().get_index(figure) == BaseListRef::npos);
ensure("object in root layer", diagram->rootLayer()->figures().get_index(figure) != BaseListRef::npos);
// undo both operations
check_undo();
check_undo();
}
template<class C>
static void resize_object(ModelDiagramForm *diagram_form, C obj, double w, double h)
{
double px, py;
px= obj->left() + obj->width() + 1;
py= obj->top() + obj->height() + 1;
// Click once to select the layer.
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, (int)px - 20, (int)py - 20, mdc::SNone);
diagram_form->handle_mouse_button(mdc::ButtonLeft, false, (int)px - 20, (int)py - 20, mdc::SNone);
// Resize it by dragging the lower right resize handle.
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, (int)px, (int)py, mdc::SNone);
diagram_form->handle_mouse_move((int)(obj->left() + w), (int)(obj->top() + h), mdc::SLeftButtonMask);
// We cannot switch auto scrolling off in the diagram so we revert its effect when we performed mouse dragging.
diagram_form->get_view()->set_offset(Point(0, 0));
diagram_form->handle_mouse_button(mdc::ButtonLeft, false, (int)(obj->left() + w), (int)(obj->top() + h), mdc::SLeftButtonMask);
}
template<class C>
static void drag_object(ModelDiagramForm *diagram_form, C object, double deltaX, double deltaY)
{
double x = object->left();
double y = object->top();
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, (int)(x + 20), (int)(y + 13), mdc::SNone);
diagram_form->handle_mouse_move((int)(x + deltaX + 20), (int)(y + deltaY + 13), mdc::SLeftButtonMask);
diagram_form->handle_mouse_button(mdc::ButtonLeft, false, (int)(x + deltaX + 20), (int)(y + deltaY + 13), mdc::SLeftButtonMask);
}
TEST_FUNCTION(24) // Move Layer
{
// Not implemented.
}
TEST_FUNCTION(26) // Move Layer under object to capture it
{
// Not implemented.
}
TEST_FUNCTION(28) // Resize Layer to eat a figure
{
model_LayerRef layer(diagram->layers()[0]);
place_figure_with_tool(WB_TOOL_NOTE, 580, 480);
check_only_one_undo_added();
diagram->unselectAll();
model_FigureRef figure(find_named_object_in_list(diagram->figures(), "text1"));
// resize the layer to cover figure
resize_object(diagram_form, layer, 800, 800);
check_only_one_undo_added();
ensure_equals("layer resized properly", *layer->width(), 800);
ensure_equals("layer resized properly", *layer->height(), 800);
// At this point the layer should have captured the text figure, but there's a long term bug
// pending where figure <-> layer relationship is only updated when a figure was dragged
// (regardless which of both was dragged, layer or child figure).
// TODO: For now we drag the layer a bit to make this work. Needs to be addressed sooner or later.
drag_object(diagram_form, layer, 10, 10);
check_only_one_undo_added();
ensure("layer contains object", layer->figures().get_index(figure) != BaseListRef::npos);
ensure("object not in root", diagram->rootLayer()->figures().get_index(figure) == BaseListRef::npos);
ensure("object layer changed", figure->layer() == layer);
check_undo();
ensure("layer not contains object", layer->figures().get_index(figure) == BaseListRef::npos);
ensure("object in root", diagram->rootLayer()->figures().get_index(figure) != BaseListRef::npos);
ensure("object layer changed", figure->layer() != layer);
check_redo();
ensure("layer contains object", layer->figures().get_index(figure) != BaseListRef::npos);
ensure("object not in root", diagram->rootLayer()->figures().get_index(figure) == BaseListRef::npos);
ensure("object layer changed", figure->layer() == layer);
check_undo(); // Layer dragging.
check_undo(); // Layer resize.
check_undo(); // Note add.
}
// XXX: for now disabled as there's a bug which must be fixed first (but cannot right now).
// Internal bug number #268.
// TEST_FUNCTION(30) // Resize Table
// {
// model_FigureRef figure(find_named_object_in_list(diagram->figures(), "table1"));
//
// ensure("table found", figure.is_valid());
//
// double w,h;
// w= figure->width();
// h= figure->height();
//
// // resize the figure
// resize_object(diagram_form, figure, 150, 200);
// check_only_one_undo_added();
//
// ensure_equals("Table width is wrong", *figure->width(), 150);
// ensure_equals("Table height is wrong", *figure->height(), 200);
//
// check_undo();
// ensure_equals("Table width is wrong", *figure->width(), w);
// ensure_equals("Table height is wrong", *figure->height(), h);
//
// check_redo();
// ensure_equals("Table width is wrong", *figure->width(), 150);
// ensure_equals("Table height is wrong", *figure->height(), 200);
// check_undo();
// }
static mforms::DialogResult message_ok_callback()
{
return mforms::ResultOk;
}
TEST_FUNCTION(32) // Delete Table
{
model_FigureRef figure(find_named_object_in_list(diagram->figures(), "table1"));
ensure("table found", figure.is_valid());
// delete the figure
mforms::stub::UtilitiesWrapper::set_message_callback(message_ok_callback);
wbui->get_wb()->get_model_context()->delete_object(figure);
check_only_one_undo_added();
ensure("table delete", !find_named_object_in_list(diagram->figures(), "table1").is_valid());
ensure("table delete", !find_named_object_in_list(diagram->rootLayer()->figures(), "table1").is_valid());
check_undo();
ensure("table delete undo", find_named_object_in_list(diagram->figures(), "table1").is_valid());
ensure("table delete undo", find_named_object_in_list(diagram->rootLayer()->figures(), "table1").is_valid());
check_redo();
ensure("table delete redo", !find_named_object_in_list(diagram->figures(), "table1").is_valid());
ensure("table delete redo", !find_named_object_in_list(diagram->rootLayer()->figures(), "table1").is_valid());
check_undo();
}
TEST_FUNCTION(34) // Delete layer with stuff inside
{
// Not implemented.
}
TEST_FUNCTION(36) // Place with Drag/Drop
{
db_TableRef table(find_named_object_in_list(tester.get_pmodel()->catalog()->schemata()[0]->tables(), "table3"));
ensure("table found", table.is_valid());
std::list<GrtObjectRef> list;
list.push_back(table);
diagram_form->perform_drop(10, 10, WB_DBOBJECT_DRAG_TYPE, list);
check_only_one_undo_added();
ensure("table figure added", find_named_object_in_list(diagram->figures(), "table3").is_valid());
model_FigureRef figure(find_named_object_in_list(diagram->figures(), "table3"));
ensure("figure has proper layer set", figure->layer().is_valid());
ensure("figure has proper layer set", figure->layer() == diagram->rootLayer());
ensure("figure has proper owner set", figure->owner() == diagram);
check_undo();
ensure("table figure added undo", !find_named_object_in_list(diagram->figures(), "table3").is_valid());
check_redo();
ensure("table figure added", find_named_object_in_list(diagram->figures(), "table3").is_valid());
check_undo();
}
TEST_FUNCTION(38) // Place with Drag/Drop on a layer
{
db_TableRef table(find_named_object_in_list(tester.get_pmodel()->catalog()->schemata()[0]->tables(), "table3"));
ensure("table found", table.is_valid());
std::list<GrtObjectRef> list;
list.push_back(table);
diagram_form->perform_drop(200, 500, WB_DBOBJECT_DRAG_TYPE, list);
check_only_one_undo_added();
model_LayerRef layer(diagram->layers()[0]);
model_FigureRef figure;
figure= find_named_object_in_list(diagram->figures(), "table3");
ensure("table figure added", figure.is_valid());
ensure("table in layer", figure->layer() == layer);
ensure("layer contains table", layer->figures().get_index(figure) != BaseListRef::npos);
check_undo();
ensure("table figure added undo", !find_named_object_in_list(diagram->figures(), "table3").is_valid());
//not needed ensure("table not in layer", !figure->layer().is_valid());
ensure("layer not contains table", layer->figures().get_index(figure) == BaseListRef::npos);
check_redo();
ensure("table figure added", find_named_object_in_list(diagram->figures(), "table3").is_valid());
ensure("table in layer", figure->layer() == layer);
ensure("layer contains table", layer->figures().get_index(figure) != BaseListRef::npos);
check_undo();
}
TEST_FUNCTION(40) // Create Relationship (in diagram)
{
diagram_form->set_tool(WB_TOOL_PREL1n);
model_FigureRef table1(find_named_object_in_list(diagram->figures(), "table1"));
model_FigureRef table2(find_named_object_in_list(diagram->figures(), "table2"));
ensure("found tables", table1.is_valid() && table2.is_valid());
ensure_equals("rel count", diagram->connections().count(), 1U);
// click table1
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, static_cast<int>(*table1->left()+20), static_cast<int>(*table1->top()+20), (mdc::EventState)0);
// click table2
diagram_form->handle_mouse_button(mdc::ButtonLeft, true, static_cast<int>(*table2->left()+20), static_cast<int>(*table2->top()+20), (mdc::EventState)0);
check_only_one_undo_added();
ensure_equals("rel count", diagram->connections().count(), 2U);
check_undo();
ensure_equals("rel count after undo", diagram->connections().count(), 1U);
check_redo();
ensure_equals("rel count after redo", diagram->connections().count(), 2U);
check_undo();
}
TEST_FUNCTION(42) // Create Relationship (indirectly with FK)
{
db_TableRef table1(find_named_object_in_list(tester.get_pmodel()->catalog()->schemata()[0]->tables(), "table1"));
db_TableRef table2(find_named_object_in_list(tester.get_pmodel()->catalog()->schemata()[0]->tables(), "table2"));
ensure("table valid", table1.is_valid() && table2.is_valid());
ensure_equals("rel count", diagram->connections().count(), 1U);
db_ForeignKeyRef fk;
fk= bec::TableHelper::create_foreign_key_to_table(table1, table2,
true, true,
true, false,
tester.get_rdbms(),
DictRef(tester.grt),
DictRef(tester.grt));
check_only_one_undo_added();
ensure_equals("rel count", diagram->connections().count(), 2U);
check_undo();
ensure_equals("rel count after undo", diagram->connections().count(), 1U);
check_redo();
ensure_equals("rel count after redo", diagram->connections().count(), 2U);
check_undo();
}
TEST_FUNCTION(44) // Create Relationship (dropping table with FK)
{
db_TableRef table(find_named_object_in_list(tester.get_pmodel()->catalog()->schemata()[0]->tables(), "table_with_fk"));
ensure("table found", table.is_valid());
ensure_equals("rel count", diagram->connections().count(), 1U);
std::list<GrtObjectRef> list;
list.push_back(table);
diagram_form->perform_drop(200, 500, WB_DBOBJECT_DRAG_TYPE, list);
check_only_one_undo_added();
model_FigureRef figure;
figure= find_named_object_in_list(diagram->figures(), "table_with_fk");
ensure("table figure added", figure.is_valid());
ensure_equals("rel count", diagram->connections().count(), 2U);
check_undo();
ensure("table figure added undo", !find_named_object_in_list(diagram->figures(), "table_with_fk").is_valid());
ensure_equals("rel count", diagram->connections().count(), 1U);
check_redo();
ensure("table figure added redo", find_named_object_in_list(diagram->figures(), "table_with_fk").is_valid());
ensure_equals("rel count", diagram->connections().count(), 2U);
check_undo();
}
TEST_FUNCTION(46) // Create Relationship (dropping table referenced by FK)
{
ensure_equals("rel count", diagram->connections().count(), 1U);
ensure("Table already in diagram", !find_named_object_in_list(diagram->figures(), "table_with_fk").is_valid());
ensure_equals("Wrong figure count", diagram->figures().count(), 5U);
ensure_equals("Wrong relationship count", diagram->connections().count(), 1U);
// Now drag/drop the table to the diagram.
std::list<GrtObjectRef> list;
list.push_back(find_named_object_in_list(tester.get_pmodel()->catalog()->schemata()[0]->tables(), "table_with_fk"));
diagram_form->perform_drop(10, 10, WB_DBOBJECT_DRAG_TYPE, list);
check_only_one_undo_added();
ensure("Table not found", find_named_object_in_list(diagram->figures(), "table_with_fk").is_valid());
ensure_equals("Wrong relationship count", diagram->connections().count(), 2U);
check_undo();
ensure_equals("Wrong figure count", diagram->figures().count(), 5U);
ensure_equals("Wrong relationship count", diagram->connections().count(), 1U);
check_redo();
ensure_equals("Wrong figure count", diagram->figures().count(), 6U);
ensure_equals("Wrong relationship count", diagram->connections().count(), 2U);
check_undo();
}
TEST_FUNCTION(48) // Delete Relationship (in diagram)
{
ensure_equals("rel count", diagram->connections().count(), 1U);
model_ConnectionRef conn(diagram->connections()[0]);
diagram->unselectAll();
diagram->selectObject(conn);
ensure_equals("selection", diagram->selection().count(), 1U);
// Message callback set in case 32.
diagram_form->delete_selection();
check_only_one_undo_added();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
ensure_equals("rel count after undo", diagram->connections().count(), 1U);
check_redo();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
}
TEST_FUNCTION(50) // Delete Relationship (indirectly with FK)
{
db_TableRef table2(find_named_object_in_list(tester.get_pmodel()->catalog()->schemata()[0]->tables(), "table2"));
ensure("table valid", table2.is_valid());
ensure_equals("rel count", diagram->connections().count(), 1U);
ensure_equals("fk count", table2->foreignKeys().count(), 1U);
db_ColumnRef column(table2->columns()[1]);
table2->removeColumn(column);
check_only_one_undo_added();
ensure_equals("fk count", table2->foreignKeys().count(), 0U);
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
ensure_equals("rel count after undo", diagram->connections().count(), 1U);
ensure_equals("fk count", table2->foreignKeys().count(), 1U);
check_redo();
ensure_equals("rel count after redo", diagram->connections().count(), 0U);
check_undo();
}
TEST_FUNCTION(52) // Delete Relationship (deleted table)
{
ensure_equals("rel count", diagram->connections().count(), 1U);
model_ConnectionRef conn(diagram->connections()[0]);
diagram->unselectAll();
diagram->selectObject(find_named_object_in_list(diagram->figures(), "table2"));
ensure_equals("selection", diagram->selection().count(), 1U);
// Message callback set in case 32.
diagram_form->delete_selection();
check_only_one_undo_added();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
ensure_equals("rel count after undo", diagram->connections().count(), 1U);
check_redo();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
}
static mforms::DialogResult message_cancel_callback()
{
return mforms::ResultCancel;
}
TEST_FUNCTION(54) // Delete Relationship (deleted table figure only)
{
ensure_equals("rel count", diagram->connections().count(), 1U);
model_ConnectionRef conn(diagram->connections()[0]);
diagram->unselectAll();
diagram->selectObject(find_named_object_in_list(diagram->figures(), "table2"));
ensure_equals("selection", diagram->selection().count(), 1U);
// Keep db objects
mforms::stub::UtilitiesWrapper::set_message_callback(message_cancel_callback);
diagram_form->delete_selection();
check_only_one_undo_added();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
ensure_equals("rel count after undo", diagram->connections().count(), 1U);
check_redo();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
}
TEST_FUNCTION(56) // Delete Relationship (deleted referenced table)
{
ensure_equals("rel count", diagram->connections().count(), 1U);
model_ConnectionRef conn(diagram->connections()[0]);
diagram->unselectAll();
diagram->selectObject(find_named_object_in_list(diagram->figures(), "table1"));
ensure_equals("selection", diagram->selection().count(), 1U);
diagram_form->delete_selection();
check_only_one_undo_added();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
ensure_equals("rel count after undo", diagram->connections().count(), 1U);
check_redo();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
}
TEST_FUNCTION(58) // Delete Relationship and Ref Table
{
ensure_equals("rel count", diagram->connections().count(), 1U);
model_ConnectionRef conn(diagram->connections()[0]);
diagram->unselectAll();
diagram->selectObject(conn->endFigure());
diagram->selectObject(conn);
ensure_equals("selection", diagram->selection().count(), 2U);
diagram_form->delete_selection();
check_only_one_undo_added();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
ensure_equals("rel count after undo", diagram->connections().count(), 1U);
check_redo();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
}
TEST_FUNCTION(60) // Delete Relationship and Table
{
ensure_equals("rel count", diagram->connections().count(), 1U);
model_ConnectionRef conn(diagram->connections()[0]);
diagram->unselectAll();
diagram->selectObject(conn);
diagram->selectObject(conn->startFigure());
ensure_equals("selection", diagram->selection().count(), 2U);
mforms::stub::UtilitiesWrapper::set_message_callback(message_ok_callback);
diagram_form->delete_selection();
check_only_one_undo_added();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
ensure_equals("rel count after undo", diagram->connections().count(), 1U);
check_redo();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
}
TEST_FUNCTION(62) // Delete Relationship and both Tables
{
ensure_equals("rel count", diagram->connections().count(), 1U);
model_ConnectionRef conn(diagram->connections()[0]);
diagram->unselectAll();
diagram->selectObject(conn->startFigure());
diagram->selectObject(conn);
diagram->selectObject(conn->endFigure());
ensure_equals("selection", diagram->selection().count(), 3U);
mforms::stub::UtilitiesWrapper::set_message_callback(message_ok_callback);
diagram_form->delete_selection();
check_only_one_undo_added();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
ensure_equals("rel count after undo", diagram->connections().count(), 1U);
check_redo();
ensure_equals("rel count", diagram->connections().count(), 0U);
check_undo();
}
END_TESTS
|