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 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329
|
#!/usr/bin/env ruby
require "#{ENV['PWD']}/../scripts/vym-ruby"
require 'colored'
require 'date'
require 'fileutils'
require 'optparse'
def waitkey
puts "Press return to continue..."
STDIN.gets
end
def expect (comment, v_real, v_exp)
if v_exp == v_real
puts " Ok: #{comment}".green
$tests_passed += 1
#waitkey
else
puts "Failed: #{comment}. Expected '#{v_exp}', but got '#{v_real}'".red
$tests_failed += 1
waitkey
end
$tests_total += 1
end
def expectInclude (comment, s, substring)
if s.include? substring
puts " Ok: #{comment}".green
$tests_passed += 1
# waitkey
else
puts "Failed: #{comment}. Could not find '#{substring}' in string below:".red
puts "'#{s}'"
$tests_failed += 1
waitkey
end
$tests_total += 1
end
def expectNot (comment, v_real, v_exp)
if v_exp != v_real
puts " Ok: #{comment}".green
$tests_passed += 1
# waitkey
else
puts "Failed: #{comment}. Expected not to get '#{v_exp}'".red
$tests_failed += 1
waitkey
end
$tests_total += 1
end
def expect_warning_only (comment, v_real, v_exp)
if v_exp == v_real
puts " Ok: #{comment}".green
$tests_passed += 1
# waitkey
else
puts "Warning: #{comment}. Expected '#{v_exp}', but got '#{v_real}'".red
$tests_warnings += 1
end
$tests_total += 1
end
def expect_error (comment, error)
if error.length == 0
puts "Failed: #{comment}. Command did not return error.".red
$tests_failed += 1
else
puts " Ok: #{comment}".green
$tests_passed += 1
end
$tests_total += 1
end
def heading (s)
puts "\n#{s}\n#{'-' * s.length}\n".yellow
end
def init_map( mapPath, files = [])
# Copy the map referenced above to @testDir/test-current.[vym|xml]
# and try to load it
@currentMapPath = "#{@testDir}/test-current#{File.extname(mapPath)}"
begin
FileUtils.cp mapPath, @currentMapPath
rescue
puts "Failed to copy #{mapPath} to #{@currentMapPath}".red
exit
end
files.each do |fn|
begin
FileUtils.cp fn, @testDir
puts "# Copied #{fn} to #{@testDir}".blue
rescue
puts "Failed to copy #{fn} to #{@testDir}".red
exit
end
end
if @vym.loadMap (@currentMapPath)
id = @vym.currentMapID
puts "# Loaded #{mapPath} -> #{@currentMapPath} (id: #{id})".blue
return @vym.map (id)
end
puts "Failed to load #{mapPath}".red
exit
end
def close_current_map
id = @vym.currentMapID
r = @vym.closeMapWithID(id)
if r
puts "# Closed map (id: #{id})".blue
else
puts "# Failed to close map with id = #{id}. CurrentMapID = #{id}".red
end
end
def summary
puts "\nTests done : #{$tests_total}"
puts "Tests passed: #{$tests_passed}"
puts "Warnings: #{$tests_warnings}"
puts "Tests failed: #{$tests_failed}"
end
#######################
def test_vym
#@vym.clearConsole
heading "Mainwindow checks:"
version = "2.9.518"
expect_warning_only "Version is #{version}", @vym.version, version
expect "Temporary directory exists at '#{@testDir}'", File.exists?(@testDir), true
map = init_map @testMapDefault
expect "init_map copies default testmap to '#{@currentMapPath}'", File.file?(@currentMapPath), true
expect "Title of copied map title is accessible and not empty", map.getTitle.length > 0, true
close_current_map
end
#######################
def test_basics
heading "Basic checks:"
map = init_map @testMapDefault
title = "vym map used for testing"
expect "map title is '#{title}'", map.getMapTitle, title
author ="Uwe Drechsel"
expect "Author is '#{author}'", map.getMapAuthor, author
map.select @main_A
expect "select mainbranch A", map.getSelectionString, @main_A
expect "getHeadingPlainText", map.getHeadingPlainText, "Main A"
expect "branchCount", map.branchCount, 3
map.selectLastBranch
expect "selectLastBranch", map.getHeadingPlainText, "Main B"
map.selectFirstBranch
expect "selectFirstBranch", map.getHeadingPlainText, "Main A"
map.selectParent
expect "selectParent", map.getHeadingPlainText, "MapCenter 0"
expect "getDestPath: Got #{map.getDestPath}", map.getDestPath, @testDir + "/test-current.vym"
expect "getFileDir: Got #{map.getFileDir}", map.getFileDir, @testDir + "/"
close_current_map
end
#######################
def test_adding_branches
heading "Adding branches:"
map = init_map @testMapDefault
map.select @main_A
n = map.branchCount.to_i
map.addBranch()
expect( "addBranch", map.branchCount.to_i, n + 1 )
map.selectLatestAdded
expect "selectLatestAdded", map.getSelectionString, @main_A + ",bo:3"
map.selectParent
expect "selectParent", map.getSelectionString, @main_A
map.undo
expect( "Undo: addBranch", map.branchCount.to_i, n )
close_current_map
map = init_map @testMapDefault
map.select @main_A
n = map.branchCount.to_i
map.select @branch_0Aa
map.addBranchAt( -3 )
map.addBranchAt( -1 )
map.select @main_A
expect "addBranchAbove/Below", map.branchCount.to_i, n + 2
map.undo
map.undo
expect "Undo: addBranchAbove/Below", map.branchCount.to_i, n
close_current_map
map = init_map @testMapDefault
map.select @branch_0Aa
map.addBranchBefore
map.select @main_A
expect "addBranchBefore: check branchcount", map.branchCount.to_i, n
map.select @branch_0Aa
expect "addBranchBefore: check heading", map.getHeadingPlainText, ""
# Undo twice: addBranchNew and relinkTo
map.undo
map.undo
map.select @main_A
expect "Undo: addBranchBefore", map.branchCount.to_i, n
close_current_map
end
#######################
def test_adding_maps
heading "Adding maps"
map = init_map @testMapDefault
map.select @branch_0Aa
n = map.branchCount.to_i
map.addMapReplace @currentMapPath
map.select @main_A
expect "addMapReplace: check branch count in #{@main_A}", map.branchCount.to_i, n + 1
map.select @branch_0Aa
expect "addMapReplace: check if #{@branch_0Aa} is new", map.branchCount.to_i, 2
expect "addMapReplace: Loaded MapCenter 0", map.getHeadingPlainText, "MapCenter 0"
map.select @branch_0Ab
expect "addMapReplace: Loaded MapCenter 1", map.getHeadingPlainText, "MapCenter 1"
map.undo
map.select @main_A
expect "Undo: check branch count in #{@main_A}", map.branchCount.to_i, 3
map.select @branch_0Aa
expect "Undo: check if #{@branch_0Aa} is back", map.branchCount.to_i, 3
close_current_map
map = init_map @testMapDefault
map.select @branch_0Aa
n = map.branchCount.to_i
map.addMapInsert @currentMapPath, 1 # Create testmap with several MCs
map.select @branch_0Aa
expect "addMapInsert: branch count", map.branchCount.to_i, n + 2
map.select @branch_0Aa + ",bo:1"
expect "addMapInsert: new heading", map.getHeadingPlainText, "MapCenter 0"
map.select @branch_0Aa + ",bo:2"
expect "addMapInsert: new heading", map.getHeadingPlainText, "MapCenter 1"
map.undo
map.select @branch_0Aa
expect "Undo: check branch count in #{@branch_0Aa}", map.branchCount.to_i, 3
map.select @branch_0Ab
expect "Undo: check heading of #{@branch_0Ab}", map.getHeadingPlainText, "branch b"
close_current_map
end
#######################
def test_attributes
heading "Attributes:"
map = init_map "maps/test-attributes.xml"
map.select @main_A
expect "String attribute is '6 * 9'", map.getStringAttribute("string-attribute"), "6 * 9"
expect "Integer attribute is 42", map.getIntAttribute("int-attribute"), 42
close_current_map
end
######################
def test_bugfixes
heading "Bugfixes:"
map = init_map @testMapDefault
close_current_map
end
#######################
def test_copy_paste
heading "Copy, cut & Paste"
map = init_map @testMapDefault
map.select @main_A
n = map.branchCount.to_i
map.copy
map.paste
map.selectLatestAdded #FIXME-5 not set for ImportAdd, which is used by paste
s = map.getSelectionString
expect "Normal paste of branch, check heading of #{s}", map.getHeadingPlainText, "Main A"
map.undo
map.select @main_A
expect "Undo paste: branchCount of #{@main_A}", map.branchCount.to_i, n
map.redo
map.select s
expect "redo paste: check heading", map.getHeadingPlainText, "Main A"
map.select @branch_0Aa
map.cut
map.select @main_A
expect "cut: branchCount of #{@main_A}", map.branchCount.to_i, n
map.paste
map.selectLastChildBranch
s = map.getSelectionString
expect "Normal paste of branch, check heading of #{s}", map.getHeadingPlainText, "branch a"
map.cut
close_current_map
end
#######################
def test_delete_parts
heading "Deleting parts"
map = init_map @testMapDefault
map.select @main_A
n=map.branchCount.to_i
map.select @branch_0Aa
m=map.branchCount.to_i
map.remove
map.select @main_A
expect "Remove branch: branchcount", map.branchCount.to_i, n - 1
map.undo
map.select @main_A
expect "Undo Remove branch: branchcount parent", map.branchCount.to_i, n
map.select @branch_0Aa
expect "Undo Remove branch: branchcount restored branch", map.branchCount.to_i, m
close_current_map
map = init_map @testMapDefault
map.select @branch_0Aa
n = map.branchCount.to_i
map.removeChildren
map.select @branch_0Aa
expect "removeChildren: branchcount", map.branchCount.to_i, 0
map.undo
map.select @branch_0Aa
expect "Undo: removeChildren: branchcount", map.branchCount.to_i, n
close_current_map
map = init_map @testMapDefault
map.select @main_A
n=map.branchCount.to_i
map.select @branch_0Aa
m=map.branchCount.to_i
map.removeKeepChildren
map.select @main_A
expect "removeKeepChildren: branchcount", map.branchCount.to_i, n + m - 1
map.undo
map.select @main_A
expect "Undo: removeKeepChildren: branchcount of parent", map.branchCount.to_i, n
map.select @branch_0Aa
expect "Undo: removeKeepChildren: branchcount of branch", map.branchCount.to_i, m
close_current_map
map = init_map @testMapDefault
n = map.centerCount.to_i
map.select @center_1
map.remove
expect "remove mapCenter: number of centers decreased", map.centerCount.to_i, n - 1
map.undo
expect "Undo remove mapCenter: number of centers increased", map.centerCount.to_i, n
close_current_map
end
#######################
def test_export
heading "Export:"
map = init_map @testMapDefault
#HTML
exportdir = "#{@testDir}/export-html"
Dir.mkdir(exportdir)
htmlpath = "#{exportdir}/output.html"
flagdir = "#{exportdir}/flags"
pngpath = "#{exportdir}/output.png"
csspath = "#{exportdir}/vym.css"
map.exportMap("HTML", htmlpath, exportdir)
expect "exportHTML: HTML file exists", File.exists?(htmlpath), true
expect "exportHTML: HTML image exists", File.exists?(pngpath), true
expect "exportHTML: HTML flags dir exists", Dir.exists?(flagdir), true
if Dir.exists?(flagdir)
expect "exportHTML: HTML flags dir not empty", Dir.empty?(flagdir), false
end
expect "exportHTML: HTML CSS exists", File.exists?(csspath), true
File.delete(htmlpath)
FileUtils.rm_r(flagdir)
File.delete(pngpath)
File.delete(csspath)
map.exportMap("Last")
expect "exportLast: HTML #{htmlpath} file exists", File.exists?(htmlpath), true
expect "exportLast: HTML image exists", File.exists?(pngpath), true
expect "exportHTML: HTML flags dir exists", Dir.exists?(flagdir), true
if Dir.exists?(flagdir)
expect "exportHTML: HTML flags dir not empty", Dir.empty?(flagdir), false
end
expect "exportLast: HTML CSS exists", File.exists?(csspath), true
#AO
exportdir = "#{@testDir}/export-ao"
Dir.mkdir(exportdir)
filepath = "#{exportdir}/output.txt"
map.exportMap("AO", filepath)
expect "exportAO: AO file exists", File.exists?(filepath), true
File.delete(filepath)
map.exportMap("Last")
expect "exportLast: AO file exists", File.exists?(filepath), true
#ASCII
exportdir = "#{@testDir}/export-ascii"
Dir.mkdir(exportdir)
filepath = "#{exportdir}/output.txt"
map.exportMap("ASCII", filepath, false)
expect "exportASCII: ASCII file exists", File.exists?(filepath), true
File.delete(filepath)
map.exportMap("Last")
expect "exportLast: ASCII file exists", File.exists?(filepath), true
#CSV
exportdir = "#{@testDir}/export-csv"
Dir.mkdir(exportdir)
filepath = "#{exportdir}/output.csv"
map.exportMap("CSV", filepath)
expect "exportCSV: CSV file exists", File.exists?(filepath), true
File.delete(filepath)
map.exportMap("Last")
expect "exportLast: CSV file exists", File.exists?(filepath), true
#Image
exportdir = "#{@testDir}/export-image"
Dir.mkdir(exportdir)
filepath = "#{exportdir}/output.png"
map.exportMap("Image", filepath,"PNG")
expect "exportImage: PNG file exists", File.exists?(filepath), true
File.delete(filepath)
map.exportMap("Last")
expect "exportLast: PNG file exists", File.exists?(filepath), true
#LaTeX
exportdir = "#{@testDir}/export-latex"
Dir.mkdir(exportdir)
filepath = "#{exportdir}/output.tex"
map.exportMap("LaTeX", filepath)
expect "exportLaTeX: LaTeX file exists", File.exists?(filepath), true
File.delete(filepath)
map.exportMap("Last")
expect "exportLast: LaTeX file exists", File.exists?(filepath), true
#Markdown
exportdir = "#{@testDir}/export-markdown"
Dir.mkdir(exportdir)
filepath = "#{exportdir}/output.md"
map.exportMap("Markdown", filepath)
expect "exportMarkdown: Markdown file exists", File.exists?(filepath), true
File.delete(filepath)
map.exportMap("Last")
expect "exportLast: Markdown file exists", File.exists?(filepath), true
#OrgMode
exportdir = "#{@testDir}/export-orgmode"
Dir.mkdir(exportdir)
filepath = "#{exportdir}/output.org"
map.exportMap("OrgMode", filepath)
expect "exportOrgMode: OrgMode file exists", File.exists?(filepath), true
File.delete(filepath)
map.exportMap("Last")
expect "exportLast: OrgMode file exists", File.exists?(filepath), true
#PDF
exportdir = "#{@testDir}/export-pdf"
Dir.mkdir(exportdir)
filepath = "#{exportdir}/output.pdf"
map.exportMap("PDF", filepath)
expect "exportPDF: PDF file exists", File.exists?(filepath), true
File.delete(filepath)
map.exportMap("Last")
expect "exportLast: PDF file exists", File.exists?(filepath), true
#SVG
exportdir = "#{@testDir}/export-svg"
Dir.mkdir(exportdir)
filepath = "#{exportdir}/output.svg"
map.exportMap("SVG", filepath)
expect "exportSVG: SVG file exists", File.exists?(filepath), true
File.delete(filepath)
map.exportMap("Last")
expect "exportLast: SVG file exists", File.exists?(filepath), true
#XML
exportdir = "#{@testDir}/export-xml"
Dir.mkdir(exportdir)
filepath = "#{exportdir}/output.xml"
map.exportMap("XML", filepath, @testDir)
expect "exportXML: XML file exists", File.exists?(filepath), true
File.delete(filepath)
map.exportMap("Last")
expect "exportLast: XML file exists", File.exists?(filepath), true
#OpenOffice Impress //FIXME-5
#Taskjuggler //FIXME-5
close_current_map
end
#######################
def test_extrainfo
heading "Extra information:"
map = init_map @testMapDefault
map.setMapAuthor("Fra Erasmas")
expect "Set and get map author", map.getMapAuthor, "Fra Erasmas"
map.setMapComment("xy z")
expect "Set and get map comment", map.getMapComment, "xy z"
map.setMapTitle("vym rules!")
expect "Set and get map title", map.getMapTitle, "vym rules!"
close_current_map
end
######################
def test_frames
heading "Frames:"
map = init_map @testMapFrames
map.select @center_0
expect "Mapcenter of #{@center_0} has no inner frame", map.getFrameType(true), "NoFrame"
expect "Mapcenter of #{@center_0} has no outer frame", map.getFrameType(true), "NoFrame"
map.select @center_1
expect "Mapcenter of #{@center_1} has no inner frame", map.getFrameType(true), "NoFrame"
expectNot "Mapcenter of #{@center_1} has outer frame", map.getFrameType(false), "NoFrame"
map.select @center_2
expectNot "Mapcenter of #{@center_2} has inner frame", map.getFrameType(true), "NoFrame"
expect "Mapcenter of #{@center_2} has no outer frame", map.getFrameType(false), "NoFrame"
map.select @center_3
expectNot "Mapcenter of #{@center_3} has inner frame", map.getFrameType(true), "NoFrame"
expectNot "Mapcenter of #{@center_3} has outer frame", map.getFrameType(false), "NoFrame"
close_current_map
end
def test_headings
heading "Headings:"
# FIXME same checks like for notes above for headings
end
#######################
def test_history
heading "History"
map = init_map @testMapDefault
map.select @main_A
map.setHeadingPlainText "A"
map.setHeadingPlainText "B"
map.setHeadingPlainText "C"
map.undo
map.undo
map.undo
expect "Undo 3 times, after changing heading -> 'A' -> 'B' -> 'C'", map.getHeadingPlainText, "Main A"
map.redo
expect "Redo once", map.getHeadingPlainText, "A"
map.copy
map.redo
expect "Redo once more", map.getHeadingPlainText, "B"
map.redo
expect "Redo yet again", map.getHeadingPlainText, "C"
map.setHeadingPlainText "Main A"
map.paste
map.selectLastChildBranch
expect "Paste from the past", map.getHeadingPlainText, "A"
map.remove
close_current_map
end
#######################
def test_scrolling
heading "Scrolling and unscrolling"
map = init_map @testMapDefault
map.select @main_A
map.toggleScroll
expect "toggleScroll", map.isScrolled, true
map.undo
expect "undo toggleScroll", map.isScrolled, false
map.scroll
expect "scroll", map.isScrolled, true
map.unscroll
expect "unscroll", map.isScrolled, false
map.scroll
map.select @branch_0Aa
map.scroll
map.select @main_A
map.unscrollChildren
map.select @branch_0Aa
expect "unscrollChildren", map.isScrolled, false
map.undo
expect "undo unscrollChildren", map.isScrolled, true
close_current_map
end
#######################
def test_slides
heading "Slides"
map = init_map "maps/test-slides.xml"
map.select @main_A
expect "Successfully loaded map with slides", map.slideCount, 3
close_current_map
end
#######################
def test_modify_branches
heading "Modifying branches"
map = init_map @testMapDefault
map.select @branch_0Aa
map.setHeadingPlainText "Changed!"
expect "setHeadingPlainText", map.getHeadingPlainText, "Changed!"
map.undo
expect "Undo: setHeadingPlainText", map.getHeadingPlainText, "branch a"
map.redo
expect "redo: setHeadingPlainText", map.getHeadingPlainText, "Changed!"
map.undo
close_current_map
end
#######################
def test_moving_parts
heading "Moving parts"
map = init_map @testMapDefault
map.select @branch_0Aa
map.moveDown
map.select @branch_0Aa
expect "Moving down", map.getHeadingPlainText, "branch b"
map.undo
map.select @branch_0Aa
expect "Undo Moving down", map.getHeadingPlainText, "branch a"
#map = init_map( vym )
map.select @branch_0Ab
map.moveUp
map.select @branch_0Aa
expect "Moving up", map.getHeadingPlainText, "branch b"
map.undo
map.select @branch_0Ab
expect "Undo Moving up", map.getHeadingPlainText, "branch b"
#map = init_map( vym )
map.select @main_B
n=map.branchCount.to_i
map.select @branch_0Aa
map.relinkTo @main_B,0,0,0
map.select @main_B
expect "RelinkTo #{@main_B}: branchCount increased there", map.branchCount.to_i, n+1
map.undo
map.select @branch_0Ab
expect "Undo: RelinkTo #{@main_B}: branchCount decreased there", map.branchCount.to_i, n
#map = init_map( vym )
map.select @main_A
err = map.relinkTo @branch_0Aa,0,0,0
#FIXME-5 disabled, error not supported atm expect_error "RelinkTo myself fails.", err
#map = init_map( vym )
map.select @branch_0Aa
n=map.branchCount.to_i
map.select @main_B
map.relinkTo @branch_0Aa, 1, 0, 0
map.select @branch_0Aa
expect "RelinkTo #{@branch_0Aa}, pos 1: branchCount increased there", map.branchCount.to_i, n+1
map.select "#{@branch_0Aa},bo:1"
expect "RelinkTo #{@branch_0Aa}, pos 1: Mainbranch really moved", map.getHeadingPlainText, "Main B"
map.undo
map.select @center_0
expect "Undo RelinkTo pos 1: branchCount of center", map.branchCount.to_i, 2
close_current_map
end
######################
def test_notes
heading "Notes:"
# Plaintext notes basic actions
map = init_map @testMapDefault
map.select @main_A
note_plain = "vymnote plaintext"
map.setNotePlainText(note_plain)
expect "Set note to \"#{note_plain}\". Still plaintext?", map.hasRichTextNote, false
map.select @center_0
map.select @main_A
expect "After reselect, is note plaintext?", map.hasRichTextNote, false
note_plain = "<b>plaintext, not bold!</b>"
map.setNotePlainText(note_plain)
expect "Set note to plaintext containing html tags. Still plaintext", map.hasRichTextNote, false
note_new = map.getNotePlainText
map.select @center_0
map.select @main_A
expect "After reselect, is note text unchanged?", map.getNotePlainText, note_new
expect "After reselect, is note plaintext?", map.hasRichTextNote, false
# Plaintext notes copy & paste
map.copy
map.paste
map.selectLastChildBranch
s=map.getSelectionString
expect "After copy& paste: New note unchanged?", map.getNotePlainText, note_plain
expect "After copy& paste: New note Still plaintext?", map.hasRichTextNote, false
map.remove
# Plaintext notes undo & redo
map.select @main_A
map.setNotePlainText('Foobar')
map.undo
expect "Undo after setNotePlainText restores previous note", map.getNotePlainText, note_plain
map.redo
map.select @main_A
expect "Redo restores previous note", map.getNotePlainText, 'Foobar'
# Plaintext notes load & save
note_org = IO.read('notes/note-plain.txt')
map.loadNote("test/notes/note-plain.txt")
expect "Load plain text note from file. Still plaintext?", map.hasRichTextNote, false
expect "Note contains 'not bold'", map.getNotePlainText.include?("not bold"), true
filepath = "#{@testDir}/save-note.txt"
map.saveNote(filepath)
expect "Save note to file. Check if it contains 'textMode=\"plainText\"'", IO.read(filepath).include?("textMode=\"plainText\""), true
expect "Save note to file. Check if it contains 'not bold'", IO.read(filepath).include?("not bold"), true
expect "Save note to file. Check new format: no longer contains '<b>' element", IO.read(filepath).include?("<b>"), false
expect "Save note to file. Check new format: no longer contains '<![CDATA['", IO.read(filepath).include?("<![CDATA["), false
expect "Save note to file. Check new format: contains 'text=\"Plaintext'", IO.read(filepath).include?("text=\"Plaintext"), true
# Delete note
map.setNotePlainText("")
expect "setNotePlainText(\"\") deletes note", map.hasNote, false
close_current_map
# RichText basic actions
map = init_map @testMapDefault
map.select @main_A
rt_note = '<vymnote textMode="richText"><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:"Arial"; font-size:12pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:"DejaVu Sans Mono"; color:#000000;">Rich Text note with <b>not bold text</b></span></p></body></html>]]></vymnote>'
map.parseVymText(rt_note)
expect "parseVymText of richText note produces note", map.hasNote, true
expect "parseVymText of richText note produces richText note", map.hasRichTextNote, true
map.select @center_0
map.select @main_A
expect "After reselect, is note RichText?", map.hasRichTextNote, true
# RichText notes copy & paste
rt_note = map.getNoteXML
map.copy
map.paste
map.selectLastChildBranch
s = map.getSelectionString
expect "After copy & paste: New note Still RichText?", map.hasRichTextNote, true
expect "After copy & paste: New note unchanged?", map.getNoteXML, rt_note
map.remove
# RichText notes undo & redo
map.select @main_A
map.setNotePlainText('Foobar')
map.undo
expect "Undo after setNotePlainText restores RichText note", map.getNoteXML, rt_note
map.redo
map.select @main_A
expect "Redo restores previous plaintext note", map.getNotePlainText, 'Foobar'
# RichText notes load & save
map.loadNote("test/notes/note.html")
expect "Load HTML note from file and try to detect textMode. Is RichText?", map.hasRichTextNote, true
filepath = "#{@testDir}/save-note.txt"
map.saveNote(filepath)
expect "Save note to file. Check if it contains 'textMode=\"richText\"'", IO.read(filepath).include?("textMode=\"richText\""), true
expect "Save note to file. Check if it contains 'bold'", IO.read(filepath).include?("bold"), true
expect "Save note to file. Check new format: no longer contains '<b>' element", IO.read(filepath).include?("<b>"), false
expect "Save note to file. Check new format: no longer contains '<![CDATA['", IO.read(filepath).include?("<![CDATA["), false
expect "Save note to file. Check new format: contains 'text=\"<'", IO.read(filepath).include?("text=\"<"), true
# Delete note
map.setNotePlainText("")
expect "setNotePlainText(\"\") deletes note", map.hasNote, false
# Compatibility with notes from version < 2.5.0 # FIXME-3 missing
close_current_map
end
#######################
def test_references
heading "References"
map = init_map @testMapDefault
map.select @main_A
url = "www.insilmaril.de"
map.setURL url
expect "setURL to '#{url}'", map.getURL, url
map.undo
expect "undo setURL", map.getURL, ""
map.redo
expect "redo setURL", map.getURL, url
map.setURL ""
expect "setURL: unset URL with empty string", map.getURL, ""
vl = "default.vym"
map.setVymLink vl
s = map.getVymLink
expect "setVymLink returns absolute path", map.getFileDir + vl, s
map.undo
expect "undo: setVymLink", map.getVymLink, ""
map.redo
expect "redo: setVymLink", map.getVymLink, s
map.undo
close_current_map
end
#######################
def test_standard_flags
heading "Standard flags"
map = init_map @testMapDefault
map.select @main_A
def set_flags (map, flags)
flags.each do |f|
map.setFlagByName( f )
expect "Flag set: #{f}", map.hasActiveFlag( f ), true
end
end
def unset_flags (map, flags)
flags.each do |f|
map.unsetFlagByName( f )
expect "Flag unset: #{f}", map.hasActiveFlag( f ), false
end
end
# Group standard-mark
set_flags( map, [ "exclamationmark","questionmark"] )
# Group standard-status
set_flags( map, [ "hook-green",
"wip",
"cross-red",
"stopsign" ] )
# Group standard-smiley
smileys = [ "smiley-good",
"smiley-sad",
"smiley-omb" ]
set_flags( map, smileys )
# Group standard-arrow
set_flags( map, [ "arrow-up",
"arrow-down",
"2arrow-up",
"2arrow-down" ] )
# Group standard-thumb
set_flags( map, [ "thumb-up", "thumb-down" ] )
# Without group
set_flags( map, [ "clock",
"phone",
"lamp",
"rose",
"heart",
"present",
"flash",
"info",
"lifebelt" ] )
unset_flags( map, smileys )
map.clearFlags
expect "clearFlags cleared exclamationmark", map.hasActiveFlag( "exclamationmark" ), false
expect "clearFlags cleared smiley-good", map.hasActiveFlag( "smiley-good" ), false
# Toggling flags
a = ["stopsign", "lifebelt"]
a.each do |flag|
#puts "Flag is now: #{flag}"
map.toggleFlagByName flag
expect "toggleFlag: flag #{flag} activated", map.hasActiveFlag(flag), true
map.toggleFlagByName flag
expect "toggleFlag: flag #{flag} deactivated", map.hasActiveFlag(flag), false
end
close_current_map
end
#######################
def test_user_flags
heading "User flags"
map = init_map "maps/test-userflag.vym"
map.select @branch_0Aa
flagName = "userflag-vym"
expect "Has active flag '#{flagName}'", map.hasActiveFlag(flagName), true
close_current_map
end
#######################
def test_xlinks
heading "XLinks:"
map = init_map @testMapDefault
map.select @main_A
n = map.xlinkCount
map.addXLink(@main_A, @main_B, 2,"#ff0000","Qt::DashDotLine")
expect "xlink count increased after creating xlink", map.xlinkCount, n + 1
map.selectXLink 0
expect "Default color of XLink", map.getXLinkColor, "#ff0000"
expect "Default width of XLink", map.getXLinkWidth.to_i, 2
expect "Default style of XLink", map.getXLinkPenStyle, "Qt::DashDotLine"
expect "Default style of XLink begin", map.getXLinkStyleBegin, "HeadFull"
expect "Default style of XLink end", map.getXLinkStyleEnd, "HeadFull"
map.setXLinkWidth(3)
expect "New width of XLink", map.getXLinkWidth.to_i, 3
map.undo
expect "Undo width of XLink", map.getXLinkWidth.to_i, 2
map.setXLinkColor("#00ff00")
expect "New color of XLink", map.getXLinkColor, "#00ff00"
map.undo
expect "Undo color of XLink", map.getXLinkColor, "#ff0000"
map.setXLinkStyle("Qt::SolidLine")
expect "New style of XLink", map.getXLinkPenStyle, "Qt::SolidLine"
map.undo
expect "Undo style of XLink", map.getXLinkPenStyle, "Qt::DashDotLine"
map.setXLinkStyleBegin("None")
expect "New style of XLink begin", map.getXLinkStyleBegin, "None"
map.undo
expect "Undo style of XLink begin", map.getXLinkStyleBegin, "HeadFull"
map.setXLinkStyleEnd("None")
expect "New style of XLink end", map.getXLinkStyleEnd, "None"
map.undo
expect "Undo style of XLink end", map.getXLinkStyleEnd, "HeadFull"
map.select @main_A
map.selectXLinkOtherEnd 0
expect "xlink connects '#{@main_A}' and '#{@main_B}'", map.getSelectionString, @main_B
close_current_map
end
#######################
def test_tasks
heading "Tasks:"
map = init_map "maps/test-tasks.xml"
map.select @branch_0Aa
expect "After loading #{@branch_0Aa} has no task", map.hasTask, false
map.select @branch_0Ab
expect "After loading #{@branch_0Ab} has task", map.hasTask, true
expect "After loading #{@branch_0Ab} task sleeps more than 1000 days",
map.getTaskSleepDays.to_i > 1000, true
map.select @branch_0Aa
map.toggleTask
expect "Toggle task", map.hasTask, true
date_today = DateTime.now
delta_days = 123
date_later = date_today + delta_days
date_later_iso = date_later.strftime("%Y-%m-%dT%H:%M:%S")
# Input: number of days
date_new = delta_days
expect "Set task sleep to number of days '#{date_new}' accepts input", map.setTaskSleep(date_new), true
expect "Set task sleep to number of days '#{date_new}' has correct sleep value '#{delta_days}' days", map.getTaskSleepDays.to_i, delta_days
# Input: number of seconds
date_new = "10s"
expect "Set task sleep to number of seconds '#{date_new}' accepts input", map.setTaskSleep(date_new), true
# Input: number of hours
date_new = "10h"
expect "Set task sleep to number of hours '#{date_new}' accepts input", map.setTaskSleep(date_new), true
# Input: Date
date_new = date_later.strftime("%Y-%m-%d")
expect "Set task sleep to ISO Date '#{date_new}' accepts input", map.setTaskSleep(date_new), true
expect "Set task sleep to ISO Date '#{date_new}' has correct sleep value '#{delta_days}' days", map.getTaskSleepDays.to_i, delta_days
date_new = date_later.strftime("%d.%m.")
expect "Set task sleep to German short form '#{date_new}' accepts input '#{date_new}'", map.setTaskSleep(date_new), true
expect "Set task sleep to German short form '#{date_new}' has correct sleep value (days)", map.getTaskSleepDays.to_i, delta_days
date_new = date_later.strftime("%d.%m.%Y")
expect "Set task sleep to German long form '#{date_new}' accepts input '#{date_new}'", map.setTaskSleep(date_new), true
expect "Set task sleep to German long form '#{date_new}' has correct sleep value (days)", map.getTaskSleepDays.to_i, delta_days
# Input: Invalid strings
date_new = "invalidDate"
expect "Set task sleep to '#{date_new}' should fail", map.setTaskSleep(date_new), false
date_new = date_later.strftime("%d %m.%Y")
expect "Set task sleep to '#{date_new}' should fail", map.setTaskSleep(date_new), false
# DateTime
date_new = date_later_iso
expect "Set task sleep to ISO DateTime '#{date_new}' accepts input", map.setTaskSleep(date_new), true
expect "Set task sleep to ISO DateTime '#{date_new}' returns correct sleep value '#{date_later_iso}'", map.getTaskSleep, date_later_iso
# Time only
date_later = date_today
date_new = "12:34"
date_later_iso = date_today.strftime("%Y-%m-%dT12:34:00")
expect "Set task sleep to time '#{date_new}' accepts input", map.setTaskSleep(date_new), true
expect "Set task sleep to time '#{date_new}' returns correct sleep value '#{date_later_iso}'",
map.getTaskSleep, date_later_iso
date_new = "2:4"
date_later_iso = date_today.strftime("%Y-%m-%dT02:04:00")
expect "Set task sleep to time '#{date_new}' accepts input", map.setTaskSleep(date_new), true
expect "Set task sleep to time '#{date_new}' returns correct sleep value '#{date_later_iso}'",
map.getTaskSleep, date_later_iso
date_new = "03:05"
date_later_iso = date_today.strftime("%Y-%m-%dT03:05:00")
expect "Set task sleep to time '#{date_new}' accepts input", map.setTaskSleep(date_new), true
expect "Set task sleep to time '#{date_new}' returns correct sleep value '#{date_later_iso}'",
map.getTaskSleep, date_later_iso
close_current_map
end
######################
def test_saving
heading "Saving:"
map = init_map @testMapDefault
#
# Save selection without overwriting original map
map.select @branch_0Aa
fn = @testDir + "/test-saveSelection.vyp"
map.saveSelection(fn)
expect "#Save selection: #{@branch_0Aa} to #{fn}", File.file?(fn), true
close_current_map
map = init_map fn
map.select @center_0
expect "Save selection: After loading of #{fn} #{@center_0} is ok", map.getHeadingPlainText, "branch a"
map.select @main_A
expect "Save selection: After loading of #{fn} #{@main_A} is ok", map.getHeadingPlainText, "branch a1"
close_current_map
end
######################
def test_load_legacy_maps
heading "Load legacy maps:"
map = init_map "maps/legacy/legacy-text-2.4.0.xml"
map.select @branch_0Aa
expect "Heading with plaintext as characters is read", map.getHeadingPlainText, "Heading in characters"
map.select @center_0
expect "Checking parsing 'absPos': x-position of #{@center_0} is ok", map.getPosX().to_f, 314
expect "Checking parsing 'absPos': y-position of #{@center_0} is ok", map.getPosY().to_f, 0
map.select @main_A
expect "Checking parsing 'relPos': x-position of #{@main_A} is ok", map.getPosX().to_f, 123
expect "Checking parsing 'relPos': y-position of #{@main_A} is ok", map.getPosY().to_f, 42
close_current_map
map = init_map "maps/legacy/time-management-1.13.33.vym"
map.select @main_A
s = "To see an explanation"
expect "<heading> using characters: Heading includes '#{s}'", map.getHeadingPlainText.include?(s), true
expect "<vymnote> using <html>: creates RichText note", map.hasRichTextNote, true
s = "time management"
expect "<vymnote> using <html>: Note contains '#{s}'", map.getNotePlainText.include?(s), true
close_current_map
map = init_map "maps/legacy/lifeforms-2.1.11.vym"
map.select @center_0
s = "Life forms"
expect "<heading> using characters and HTML: includes '#{s}'", map.getHeadingXML.include?(s), true
s = "textMode=\"richText"
expect "<heading> using characters creates RichText", map.getHeadingXML.include?(s), true
close_current_map
map = init_map "maps/legacy/faq-2.5.21.xml"
map.select @branch_0Ab
s = "libqt5-devel.rpm"
expect "<vymnote> using characters and CDATA: has RichText note", map.hasRichTextNote, true
expect "<vymnote> using characters and CDATA: includes '#{s}'", map.getNotePlainText.include?(s), true
expect "<vymnote> using characters and CDATA: has RichText note", map.hasRichTextNote, true
map.select @branch_0Ac
s = "textMode=\"richText"
expect "<heading> using characters and CDATA: creates RichText", map.getHeadingXML.include?(s), true
s = "CDATA heading"
expect "<heading> using characters and CDATA: includes '#{s}'", map.getHeadingPlainText.include?(s), true
close_current_map
files = [
"maps/legacy/external-note-plaintext.txt",
"maps/legacy/external-note-richtext.html" ]
map = init_map "maps/legacy/notes.xml", files
map.select @branch_0Aa
expect"<note> with plaintext in external file: text has type PlainText",
map.hasRichTextNote, false
expectInclude "<note> with plaintext in external file: text is read correctly",
map.getNotePlainText,
"PlainText note in file"
map.select @branch_0Ab
expect"<note> with plaintext in characters: text has type PlainText",
map.hasRichTextNote, false
expectInclude "<note> reads plaintext from characters",
map.getNotePlainText,
"PlainText note in characters"
map.select @branch_0Ac
expect"<note> with RichText in external file: text has type RichText",
map.hasRichTextNote, true
expectInclude "<note> reads RichText from external file",
map.getNotePlainText,
"RichText note in file"
map.select @branch_0Ab
map.select @branch_0Ba
expect"<htmlnote> with PlainText in characters: text has type PlainText",
map.hasRichTextNote, false
expectInclude "<htmlnote> reads PlainText from characters",
map.getNotePlainText,
"PlainText note in characters"
map.select @branch_0Bb
expect"<htmlnote> with RichText in characters: text has type RichText",
map.hasRichTextNote, true
expectInclude "<htmlnote> reads RichText from characters",
map.getNotePlainText,
"RichText note in characters"
close_current_map
map = init_map "maps/legacy/xlinks.xml"
# FIXME-5 add test: xlinks in subitems of branches (pre 1.13.2)
map.select @main_A
expect "<xlink> within <branch> is read", map.xlinkCount, 1
map.selectXLinkOtherEnd 0
expect "<xlink> connects '#{@main_A}' and '#{@main_B}'", map.getSelectionString, @main_B
close_current_map
end
#######################
=begin
# Untested commands:
#
addSlide
centerOnID
colorBranch
colorSubtree
cycleTask
delete (image)
deleteSlide
importDir
loadImage
loadNote
move
moveRel
moveSlideDown
moveSlideUp
note2URLs
paste
redo
relinkTo (for images)
saveImage
saveNote
selectID
selectLastImage
selectLatestAdd
setFrameBorderWidth
setFrameBrushColor
setFrameIncludeChildren
setFramePadding
setFramePenColor
setFrameType
setHeading
setHideExport
setHideLinksUnselected
setIncludeImagesHorizontally
setIncludeImagesVertically
setMapAnimCurve
setMapAnimDuration
setMapBackgroundColor
setMapDefLinkColor
setMapLinkStyle
setMapRotation
setMapZoom
setNote
setScale
setSelectionColor
setTaskSleep
setURL
setVymLink
so far:
sortChildren
toggleFrameIncludeChildren
toggleTarget
toggleTask
=end
begin
options = {}
OptionParser.new do |opts|
opts.banner = "Usage: vym-test.rb [options]"
opts.on('-d', '--directory NAME', 'Directory name') { |s| options[:testDir] = s }
end.parse!
@testDir = options[:testDir]
@testMapDefault= "maps/test-default.vym"
@testMapFrames = "maps/test-frames.vym"
$tests_passed = 0
$tests_failed = 0
$tests_warnings = 0
$tests_total = 0
#######################
@center_0 = "mc:0"
@main_A = "mc:0,bo:0"
@branch_0Aa = @main_A + ",bo:0"
@branch_0Ab = @main_A + ",bo:1"
@branch_0Ac = @main_A + ",bo:2"
@main_B="mc:0,bo:1"
@branch_0Ba = @main_B + ",bo:0"
@branch_0Bb = @main_B + ",bo:1"
@center_1 = "mc:1"
@center_2 = "mc:2"
@center_3 = "mc:3"
instance_name = 'test'
vym_mgr = VymManager.new
#vym_mgr.show_running
@vym = vym_mgr.find(instance_name)
if !@vym
puts "Couldn't find instance name \"#{instance_name}\", please start one:"
puts "vym -l -n \"#{instance-name}\" -t test/default.vym"
exit
end
test_vym
#test_basics
test_adding_branches
#test_adding_maps
#test_attributes
#test_bugfixes
#test_copy_paste
#test_delete_parts
#test_export
test_extrainfo
#test_frames
#test_history
#test_load_legacy_maps
#test_modify_branches
test_moving_parts
#test_notes
#test_references
#test_saving
#test_scrolling
#test_slides
#test_standard_flags
#test_tasks
#test_user_flags
#test_xlinks
summary
end
|