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 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429
|
# Features covered: XPath capabilities
#
# This file contains a collection of tests for the XPath engine of
# tDOM.
# Tested commands and object commands:
# xpath-1.*: Function tests
# xpath-2.*: i18n
# xpath-3.*: NaN/Inf, number conversion
# xpath-4.*: Tcl coded XPath functions and additional Tcl coded
# XPath functions
# xpath-5.*: XPath lexer/parser tests
# xpath-6.*: Doc order after modifying tree
# xpath-7.*: Asorted XPath expressions, which are not occur in the xslt
# tests outside this tcltest based test suite
#
# Copyright (c) 2002 - 2007 Rolf Ade.
#
# RCS: @(#) $Id$
source [file join [file dir [info script]] loadtdom.tcl]
test xpath-1.1 {function normalize-space} {
set doc [dom createDocument foo]
set root [$doc documentElement]
set r [$root selectNodes {normalize-space('f ')}]
$doc delete
string length $r
} {1}
set doc [dom createDocument foo]
set root [$doc documentElement]
test xpath-1.2 {starts-with, according errata to section 4.2} {
$root selectNodes {starts-with('someString','')}
} {1}
test xpath-1.3 {starts-with, according errata to section 4.2} {
$root selectNodes {starts-with('','')}
} {1}
test xpath-1.4 {contains, according errata to section 4.2} {
$root selectNodes {contains('someString','')}
} {1}
test xpath-1.5 {contains, according errata to section 4.2} {
$root selectNodes {contains('','')}
} {1}
test xpath-1.6 {substring-before, according errata to section 4.2} {
$root selectNodes {substring-before('someString','')}
} {}
test xpath-1.7 {substring-before, according errata to section 4.2} {
$root selectNodes {substring-before('','')}
} {}
test xpath-1.8 {substring-after, according errata to section 4.2} {
$root selectNodes {substring-after('someString','')}
} {someString}
test xpath-1.9 {substring-after, according errata to section 4.2} {
$root selectNodes {substring-after('','')}
} {}
test xpath-1.10 {floor, according errata to section 4.4} {
$root selectNodes {floor('notANumber')}
} {NaN}
test xpath-1.11 {floor, according errata to section 4.4} {
$root selectNodes {floor('+3.2')}
} {NaN}
test xpath-1.12 {floor, according errata to section 4.4} {
$root selectNodes {floor('3.2e2')}
} {NaN}
test xpath-1.13 {ceiling, according errata to section 4.4} {
$root selectNodes {ceiling('notANumber')}
} {NaN}
test xpath-1.14 {ceiling, according errata to section 4.4} {
$root selectNodes {ceiling('+3.2')}
} {NaN}
test xpath-1.15 {ceiling, according errata to section 4.4} {
$root selectNodes {ceiling('3.2e2')}
} {NaN}
$doc delete
test xpath-2.1 {non ASCII chars in element names} {
set doc [dom parse "<\u00e4\u00f6\u00fc\u00df/>"]
set root [$doc documentElement]
set nodes [$root selectNodes /\u00e4\u00f6\u00fc\u00df]
$doc delete
llength $nodes
} {1}
set doc [dom createDocument foo]
set root [$doc documentElement]
test xpath-2.2 {non ASCII chars in string-length() call} {
$root selectNodes "string-length('\u20AC')"
} 1
test xpath-2.3 {non ASCII chars in substring() call} {
$root selectNodes "substring('ab\u20ACde',3,3)"
} \u20ACde
test xpath-2.4 {non ASCII chars in substring() call} {
$root selectNodes "substring('ab\u20ACde',4,3)"
} de
test xpath-2.5 {non ASCII chars in substring() call} {
$root selectNodes "substring('ab\u20ACde',2,3)"
} b\u20ACd
test xpath-2.6 {non ASCII chars in substring-after() call} {
$root selectNodes "substring-after('ab\u20ACde', '\u20AC')"
} de
test xpath-2.7 {non ASCII chars in substring-before() call} {
$root selectNodes "substring-before('ab\u20ACde', '\u20AC')"
} ab
test xpath-3.1 {positive number mod by 0} {
$root selectNodes {4 mod 0}
} {NaN}
test xpath-3.2 {0 mod 0} {
$root selectNodes {0 mod 0}
} {NaN}
test xpath-3.3 {negative number mod 0} {
$root selectNodes {-1 mod 0}
} {NaN}
test xpath-3.4 {positive number div by 0} {
$root selectNodes {4 div 0}
} {Infinity}
test xpath-3.5 {0 div 0} {
$root selectNodes {0 div 0}
} {NaN}
test xpath-3.6 {negative div 0} {
$root selectNodes {-4 div 0}
} {-Infinity}
test xpath-3.7 {number value of a literal} {
$root selectNodes {number('foobar')}
} {NaN}
test xpath-3.8 {number value of an empty node set} {
$root selectNodes {number(noChilds)}
} {NaN}
test xpath-3.9 {propagation of NaN throu multiplication} {
$root selectNodes {2 * (4 mod 0)}
} {NaN}
test xpath-3.10 {propagation of Infinity throu multiplication} {
$root selectNodes {2 * (4 div 0)}
} {Infinity}
test xpath-3.11 {propagation of Infinity throu multiplication} {
$root selectNodes {-2 * (3 div 0)}
} {-Infinity}
test xpath-3.12 {propagation of Infinity throu multiplication} {
$root selectNodes {2 * (-7 div 0)}
} {-Infinity}
test xpath-3.13 {propagation of Infinity throu multiplication} {
$root selectNodes {-2 * (-23 div 0)}
} {Infinity}
test xpath-3.14 {multiplication of Infinity with Infinity} {
$root selectNodes {(2 div 0) * (3 div 0)}
} {Infinity}
test xpath-3.15 {multiplication of Infinity with -Infinity} {
$root selectNodes {(2 div 0) * (-3 div 0)}
} {-Infinity}
test xpath-3.16 {positive number divided by Infinity} {
$root selectNodes {2 div (23 div 0)}
} {0}
test xpath-3.17 {negative number divided by Infinity} {
$root selectNodes {-2 div (23 div 0)}
} {0}
test xpath-3.18 {positive number divided by -Infinity} {
$root selectNodes {2 div (-23 div 0)}
} {0}
test xpath-3.19 {negative number divided by -Infinity} {
$root selectNodes {-2.2 div (-23.7 div 0)}
} {0}
test xpath-3.20 {Infinity divided by Infinity} {
$root selectNodes {(2 div 0) div (3 div 0)}
} {NaN}
test xpath-3.21 {Infinity divided by positive number} {
$root selectNodes {(2.7 div 0) div 23}
} {Infinity}
test xpath-3.22 {Infinity divided by negative number} {
$root selectNodes {(2.7 div 0) div -23}
} {-Infinity}
test xpath-3.23 {-Infinity divided by positive number} {
$root selectNodes {(-2.7 div 0) div 23}
} {-Infinity}
test xpath-3.24 {-Infinity divided by negative number} {
$root selectNodes {(-2.7 div 0) div -23}
} {Infinity}
test xpath-3.25 {Infinity divided by NaN} {
$root selectNodes {(2 div 0) div (2 mod 0)}
} {NaN}
test xpath-3.26 {NaN divided by Infinity} {
$root selectNodes {(2 mod 0) div (2 div 0)}
} {NaN}
test xpath-3.27 {Infinity divided by zero} {
$root selectNodes {(2 div 0) div 0}
} {Infinity}
test xpath-3.28 {-Infinity divided by zero} {
$root selectNodes {(-2 div 0) div 0}
} {-Infinity}
test xpath-3.29 {Infinity plus positive number} {
$root selectNodes {(1 div 0) + 345}
} {Infinity}
test xpath-3.30 {Infinity minus positive number} {
$root selectNodes {(1 div 0) - 5}
} {Infinity}
test xpath-3.31 {number minus Infinity} {
$root selectNodes {27 - (1 div 0)}
} {-Infinity}
test xpath-3.32 {number minus -Infinity} {
$root selectNodes {5 - (-1 div 0)}
} {Infinity}
test xpath-3.33 {Infinity plus Infinity} {
$root selectNodes {(1 div 0) + (1 div 0)}
} {Infinity}
test xpath-3.34 {Infinity plus -Infinity} {
$root selectNodes {(1 div 0) + (-1 div 0)}
} {NaN}
test xpath-3.35 {Infinity minus -Infinity} {
$root selectNodes {(1 div 0) - (-1 div 0)}
} {Infinity}
$doc delete
set doc [dom parse {<a>
<b>
<number>1</number>
</b>
<b>
<number>4</number>
</b>
<b>
<number>6</number>
</b>
<b>
<number>7</number>
</b>
<b>
<number>0xA</number>
</b>
<b>
<number>0xB</number>
</b>
</a>}]
test xpath-3.36 {number conversion} {
$doc selectNodes {count(/a/b[number>4])}
} {2}
test xpath-3.37 {number conversion} {
$doc selectNodes {count(/a/b[4<number])}
} {2}
test xpath-3.38 {mod by a float that casts to integer 0} {
$doc selectNodes { 2 mod 0.2}
} {NaN}
$doc delete
set doc [dom parse {<root xmlns:myNS="myNS">Foo</root>}]
set root [$doc documentElement]
test xpath-4.1 {function-available} {
$root selectNodes function-available('count')
} {1}
test xpath-4.2 {function-available} {
$root selectNodes function-available('foobar')
} {0}
test xpath-4.3 {system-property} {
$root selectNodes system-property('xsl:version')
} {1.0}
proc ::dom::xpathFunc::mycontains {ctxNode pos nodeListNode nodeList args} {
if {[llength $args] != 4} {
error "mycontains(): wrong # of args!"
}
foreach {arg1Typ arg1Value arg2Typ arg2Value} $args break
set text [::dom::xpathFuncHelper::coerce2string $arg1Typ $arg1Value]
set str [::dom::xpathFuncHelper::coerce2string $arg2Typ $arg2Value]
if {[string first [string tolower $str] [string tolower $text]] != -1} {
return [list bool true]
} else {
return [list bool false]
}
}
test xpath-4.4 {tcl coded additional XPath function} {
$root selectNodes {mycontains(., 'fo')}
} {1}
test xpath-4.5 {tcl coded additional XPath function} {
$root selectNodes {mycontains(., 'bo')}
} {0}
test xpath-4.6 {tcl coded additional XPath function - error reported} {
catch {$root selectNodes {mycontains(., 'bo', 'ba')}} errMsg
set errMsg
} {Tcl error while executing XPath extension function 'mycontains':
mycontains(): wrong # of args!}
proc ::dom::xpathFunc::wrongreturn {ctxNode pos nodeListNode nodeList args} {
return [list footype "foo"]
}
test xpath-4.7 {tcl coded additional XPath function - unknown return type} {
catch {$root selectNodes {wrongreturn('foo')}} errMsg
set errMsg
} {Unknown type of return value "footype" from Tcl coded XPath function "wrongreturn"!}
proc ::dom::xpathFunc::returnnumber {ctxNode pos nodeListNode nodeList args} {
return [list number "42"]
}
test xpath-4.8 {tcl coded additional XPath function - return number} {
$root selectNodes {returnnumber()}
} {42}
test xpath-4.9 {tcl coded XPath function - erroneous function name} {
catch {$root selectNodes {thisFunctiondoesNotExists('foo',.)}} errMsg
set errMsg
} {Unknown XPath function: "thisFunctiondoesNotExists"!}
test xpath-4.10 {full qualified tcl coded XPath function - erroneous prefix} {
catch {$root selectNodes notdefinedprefix:mycontains()} errMsg
set errMsg
} {Prefix doesn't resolve}
namespace eval ::dom::xpathFunc::myNS {
proc mycontains {ctxNode pos nodeListNode nodeList args} {
if {[llength $args] != 4} {
error "myNS::mycontains(): wrong # of args!"
}
foreach {arg1Typ arg1Value arg2Typ arg2Value} $args break
set text [::dom::xpathFuncHelper::coerce2string $arg1Typ $arg1Value]
set str [::dom::xpathFuncHelper::coerce2string $arg2Typ $arg2Value]
if {[string first [string tolower $str] [string tolower $text]] != -1} {
return [list bool true]
} else {
return [list bool false]
}
}
}
test xpath-4.11 {full qualified tcl coded XPath function} {
$root selectNodes {myNS:mycontains(., 'fo')}
} {1}
test xpath-4.12 {full qualified tcl coded XPath function} {
$root selectNodes {myNS:mycontains(., 'bo')}
} {0}
test xpath-4.13 {error in arg expr of tcl coded XPath function} {
catch {$root selectNodes {mycontains(foo::bar, 'bo')}} errMsg
} {1}
test xpath-4.14 {error in arg expr of full qual. tcl coded XPath function} {
catch {$root selectNodes {myNS:mycontains(foo::bar, 'bo')}}
} {1}
proc ::dom::xpathFunc::buggyproc {ctxNode pos nodeListNode nodeList args} {
if {[llength $args] != 2} {
error "returnstring(): wrong # of args!"
}
foreach {arg1Typ arg1Value} $args break
set str [::dom::xpathFuncHelper::coerce2string $arg1Typ $arg1Value]
# There isn't a [string split ..] - this will trigger the tcl error
set charList [string split $str ""]
set result ""
foreach char $charList {
set result $char$result
}
return [list string $result]
}
test xpath-4.15 {tcl coded XPath function - tcl error in XPath func} {
catch {$root selectNodes {buggyproc('bambo')}}
} {1}
proc ::dom::xpathFunc::returnstring {ctxNode pos nodeListNode nodeList args} {
if {[llength $args] != 2} {
error "returnstring(): wrong # of args!"
}
foreach {arg1Typ arg1Value} $args break
set str [::dom::xpathFuncHelper::coerce2string $arg1Typ $arg1Value]
set charList [split $str ""]
set result ""
foreach char $charList {
set result $char$result
}
return [list string $result]
}
test xpath-4.16 {tcl coded additional XPath function - tcl error in XPath func} {
$root selectNodes {returnstring('bambo')}
} {obmab}
proc ::dom::xpathFunc::returnnodes {ctxNode pos nodeListNode nodeList args} {
if {[llength $args] != 2} {
error "returnnodes(): wrong # of args!"
}
foreach {arg1Typ arg1Value} $args break
if {$arg1Typ != "nodes"} {
error "returnnodes(): argument must be a nodeset"
}
set node [[lindex $arg1Value 0] selectNodes {/*[1]}]
# This returns a node list with 2 nodes. Since both nodes are
# the same, this node only shows up one time in the result set
# of the query
return [list nodes [list $node $node]]
}
test xpath-4.17 {tcl coded additional XPath function - return nodes} {
set queryresult [$root selectNodes {returnnodes(.)}]
if {$queryresult == $root} {
set result 1
} else {
set result 0
}
set result
} {1}
# Called from ::dom::xpathFunc::errorStack
proc ::dom::xpathFunc::errorStack1 {} {
error "Some error"
}
proc ::dom::xpathFunc::errorStack {ctxNode pos nodeListNode nodeList args} {
errorStack1
return [list string "Not reached"]
}
test xpath-4.18 {error stack in tcl coded additional XPath function} {
set result [catch {$root selectNodes errorStack()} errMsg]
lappend result $errMsg
} {1 {Tcl error while executing XPath extension function 'errorStack':
Some error}}
proc ::dom::xpathFunc::stringReturn {args} {return x}
test xpath-4.19 {tcl coded additional XPath function - return implicit string result} {
$root selectNodes stringReturn(.)
} {x}
test xpath-4.20 {tcl coded additional XPath function - return implicit string result} {
$root selectNodes stringReturn()
} {x}
proc ::dom::xpathFunc::ctxNode {ctxNode args} {
return [list "nodes" $ctxNode]
}
test xpath-4.21 {tcl coded additional XPath function - return node} {
$root selectNodes {string(ctxNode()/node())}
} {Foo}
dom parse {<doc>
<e>1</e>
<e>2</e>
<e>3</e>
<e>4</e>
<e>5</e>
</doc>} doc1
proc ::dom::xpathFunc::useXPath {ctxNode pos nodeListNode nodeList args} {
if {[llength $args] != 2} {
error "useXPath(): wrong # of args!"
}
foreach { arg1Typ arg1Value } $args break
if {$arg1Typ ne "nodes" || [llength $arg1Value] != 1} {
error "wrong argument: expecting one node"
}
set result [list]
for {set i 5} {$i > 0} {incr i -2} {
lappend result [$arg1Value selectNodes {*[position()=$i]}]
}
for {set i 1} {$i < 6} {incr i 2} {
lappend result [$arg1Value selectNodes {*[position()=$i]}]
}
# Result will be a XPath result set, that means in document order
# and de-duplicated.
return [list "nodes" $result]
}
test xpath-4.22 {tcl coded additional XPath function - use XPath on the document in the function} {
set result [list]
foreach node [$doc1 selectNodes useXPath(/doc)] {
lappend result [$node text]
}
join $result " "
} {1 3 5}
proc ::dom::xpathFunc::long0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789name {ctxNode args} {
return [list "string" "fromlongprocname"]
}
test xpath-4.23 {tcl coded additional XPath function - long XPath function name} {
$doc1 selectNodes long0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789name()
} {fromlongprocname}
proc ::dom::xpathFunc::toolong0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789name {ctxNode args} {
return [list "string" "fromlongprocname"]
}
test xpath-4.24 {tcl coded additional XPath function - long XPath function name} {
catch {$doc1 selectNodes toolong0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789name()}
} {1}
$doc1 delete
test xpath-5.1 {erroneous XPath expr: missing right brace in predicate} {
set result [catch {$root selectNodes {*[1}} errMsg]
list $result $errMsg
} {1 {Predicate: Expected "RBRACKET" for '*[1'
Parsed symbols:
0 WCARDNAME 0 000000000 0 *
1 LBRACKET 0 000000000 1
2 INTNUMBER 1 000000001 2 }}
test xpath-5.2 {erroneous XPath expr: missing right brace in predicate} {
set result [catch {$root selectNodes {*[1][@attr}} errMsg]
list $result $errMsg
} {1 {Predicate: Expected "RBRACKET" for '*[1][@attr'
Parsed symbols:
0 WCARDNAME 0 000000000 0 *
1 LBRACKET 0 000000000 1
2 INTNUMBER 1 000000001 2
3 RBRACKET 0 000000000 3
4 LBRACKET 0 000000000 4
5 ATTRIBUTE 0 000000000 9 attr}}
test xpath-5.3 {erroneous XPath expr: missing left brace in predicate} {
catch {$root selectNodes {*1]}}
} {1}
test xpath-5.4 {erroneous XPath expr} {
catch {$root selectNodes {myNS: bar}} errMsg
set errMsg
} {Illegal character in localname}
test xpath-5.5 {erroneous XPath expr} {
catch {$root selectNodes {foo :bar}} errMsg
set errMsg
} {Unexpected token ':'}
test xpath-5.6 {erroneous XPath expr} {
catch {$root selectNodes {:foo}} errMsg
set errMsg
} {Unexpected token ':'}
$doc delete
dom parse {<Sample attr="attrvalue"/>} doc
$doc documentElement root
test xpath-5.7 {White space after @ is allowed} {
$root selectNodes {string(@ attr)}
} {attrvalue}
$doc delete
test xpath-5.8 {xpath namespace axis} {
set doc [dom parse {<doc xmlns="foo"/>}]
$doc selectNodesNamespaces {bar foo}
set result [$doc selectNodes //namespace::*]
$doc delete
set result
} {{xmlns:xml http://www.w3.org/XML/1998/namespace} {xmlns foo}}
test xpath-5.9 {Illegal axis name with //} {
set xml {
<doc>
<foo>
<bar>boo</bar>
<bar>boo</bar>
<bar>boo</bar>
</foo>
</doc>}
set doc [dom parse $xml]
set result [catch {$doc selectNodes //bar::text()}]
$doc delete
set result
} {1}
test xpath-5.10 {White space between steps is allowed} {
set xml {<doc><e1><e2/></e1></doc>}
set doc [dom parse $xml]
set node [$doc selectNodes "doc / e1 \n\r\t / e2"]
set result [$node nodeName]
$doc delete
set result
} {e2}
test xpath-5.11 {Parsing of floats} {
set doc [dom createDocumentNode]
set result [$doc selectNodes "1 + .2"]
set result [expr {$result + [$doc selectNodes "1.0 + 0.2"]}]
$doc delete
set result
} {2.4}
test xpath-5.12 {Parsing of floats} {
set doc [dom createDocumentNode]
set result [catch {$doc selectNodes "1 + .2.2"}]
$doc delete
set result
} {1}
test xpath-5.13 {tcl var resolution in expr} {
set doc [dom parse {<root><elem id="foo">footext</elem></root>}]
set root [$doc documentElement]
set var "foo"
set resultNode [$root selectNodes {elem[@id=$var]}]
set result [$resultNode text]
$doc delete
set result
} {footext}
test xpath-5.14 {tcl var resolution in expr} {
set doc [dom parse {<root><elem id="foo">footext</elem></root>}]
set root [$doc documentElement]
set resultNode [$root selectNodes {elem[@id='foo']}]
set result [$resultNode text]
$doc delete
set result
} {footext}
test xpath-5.15 {tcl var resolution in expr} {
set doc [dom parse {<root><elem id="foo">footext</elem></root>}]
set root [$doc documentElement]
catch {unset dontExists}
set result [catch {[$root selectNodes {elem[@id=$dontExists]}]} errMsg]
$doc delete
lappend result $errMsg
} {1 {can't read "dontExists": no such variable}}
proc xpath-5.16 {doc} {
set root [$doc documentElement]
set var "foo"
set resultNode [$root selectNodes {elem[@id=$var]}]
return [$resultNode text]
}
test xpath-5.16 {tcl var resolution in expr} {
set doc [dom parse {<root><elem id="foo">footext</elem></root>}]
catch {unset var}
set result [xpath-5.16 $doc]
$doc delete
set result
} {footext}
proc xpath-5.17 {doc} {
set root [$doc documentElement]
set resultNode [$root selectNodes {elem[@id=$::var]}]
return [$resultNode text]
}
test xpath-5.17 {tcl var resolution in expr} {
set doc [dom parse {<root><elem id="foo">footext</elem></root>}]
set var "foo"
set result [xpath-5.17 $doc]
$doc delete
set result
} {footext}
proc xpath-5.18 {doc} {
set root [$doc documentElement]
set resultNode [$root selectNodes {elem[@id=${::uncommon varname}]}]
return [$resultNode text]
}
test xpath-5.18 {tcl var resolution in expr} {
set doc [dom parse {<root><elem id="foo">footext</elem></root>}]
set {uncommon varname} "foo"
set result [xpath-5.18 $doc]
$doc delete
set result
} {footext}
test xpath-5.19 {tcl var resolution in expr} {
set doc [dom parse {<root><elem id="foo">footext</elem></root>}]
set root [$doc documentElement]
set array(key) "foo"
set resultNode [$root selectNodes {elem[@id=$array(key)]}]
set result [$resultNode text]
$doc delete
set result
} {footext}
test xpath-5.20 {tcl var resolution in expr} {
set doc [dom parse {<root><elem id="foo">footext</elem></root>}]
set root [$doc documentElement]
set array(key) "foo"
set var "key"
set resultNode [$root selectNodes {elem[@id=$array($var)]}]
set result [$resultNode text]
$doc delete
set result
} {footext}
proc xpath-5.21 {doc} {
set root [$doc documentElement]
set var "foo"
set resultNode [$root selectNodes {elem[@id=$var]}]
return [$resultNode text]
}
test xpath-5.21 {tcl var resolution in expr} {
set doc [dom parse {<root><elem id="foo">footext</elem></root>}]
set root [$doc documentElement]
set var "bar"
set result [xpath-5.21 $doc]
$doc delete
set result
} {footext}
proc xpath-5.22 {doc} {
set root [$doc documentElement]
set var "bar"
return [$root selectNodes {elem[@id=$var]}]
}
test xpath-5.22 {tcl var resolution in expr} {
set doc [dom parse {<root><elem id="foo">footext</elem></root>}]
set root [$doc documentElement]
set var "foo"
set result [xpath-5.22 $doc]
$doc delete
set result
} {}
proc xpath-5.23 {doc} {
set root [$doc documentElement]
set result [catch {$root selectNodes {elem[@id=$var]}} errMsg]
return [list $result $errMsg]
}
test xpath-5.23 {tcl var resolution in expr} {
set doc [dom parse {<root><elem id="foo">footext</elem></root>}]
set root [$doc documentElement]
set var "foo"
set result [xpath-5.23 $doc]
$doc delete
set result
} {1 {can't read "var": no such variable}}
test xpath-5.24 {tcl var resolution in expr} {
set doc [dom parse {<root><elem id="foo">footext</elem></root>}]
set root [$doc documentElement]
set result [catch {$root selectNodes {elem[@id=$ or @id='bar']}} errMsg]
$doc delete
list $result $errMsg
} {1 {Missing var name after '$'.}}
test xpath-5.25 {tcl var resolution in expr} {
set doc [dom createDocument doc]
set a 2
set result [$doc selectNodes {2 + $a}]
$doc delete
set result
} {4.0}
test xpath-5.26 {erroneous XPath expr} {
set doc [dom createDocument doc]
set result [catch {$doc selectNodes {/[position()=1]}}]
$doc delete
set result
} {1}
test xpath-5.27 {erroneous XPath expr} {
set doc [dom parse {<!--yes--> <doc><e1/></doc><?foo bar?>}]
set result [catch {$doc selectNodes {/[position()=1]}} errMsg]
$doc delete
set result
} {1}
test xpath-5.28 {afl-fuzz found seg faulting 'xpath expr'} {
set doc [dom parse <a/>]
set result [catch {$doc selectNodes {@a//b::*}}]
$doc delete
set result
} {1}
test xpath-5.29 {afl-fuzz found seg faulting 'xpath expr'} {
set doc [dom parse <a/>]
set result [catch {$doc selectNodes {a[1=a::a]}}]
$doc delete
set result
} {1}
test xpath-5.30 {afl-fuzz found seg faulting 'xpath expr'} {
set doc [dom parse <a/>]
set result [catch {$doc selectNodes [string repeate 9 239]@d}]
$doc delete
set result
} {1}
test xpath-5.31 {Limits} {
set doc [dom parse <a/>]
set result [$doc selectNodes {999999999999999 + 999999999999999}]
$doc delete
set result
} {1999999999999998.0}
test xpath-5.32 {Limits} {
set doc [dom parse <a/>]
set result [$doc selectNodes {9999999999999999999 + 9999999999999999999}]
$doc delete
set result
} {2e+19}
test xpath-5.33 {afl-fuzz found seg faulting 'xpath expr'} {
set doc [dom parse <a/>]
set result [catch {$doc selectNodes "[string repeat Q 1380](1)"}]
$doc delete
set result
} {1}
test xpath-5.34 {tcl var resolution in expr} {
set doc [dom parse {<doc><e att="1"/><e att="2"/><e att="3"/></doc>}]
set which 2
# Tcl var value is always seen as string by the xpath engine. Any
# non empty string is always true
set node [$doc selectNodes {/doc/e[$which]}]
set result [llength $node]
# If another xpath data type is needed, cast explicitly
set node [$doc selectNodes {/doc/e[number($which)]}]
lappend result [llength $node]
lappend result [$node @att]
set which ""
# Empty string is false, by xpath converting rules
set node [$doc selectNodes {/doc/e[$which]}]
lappend result [llength $node]
$doc delete
set result
} {3 1 2 0}
test xpath-5.35 {tcl var resolution in xpath expr} {
set doc [dom parse {<doc><e>1</e><e>2</e><e>3</e><e>4</e></doc>}]
set node [$doc documentElement]
set i 2
set result [list]
lappend result [$node selectNodes -cache 1 {string(*[position()=$i])}]
set i 3
lappend result [$node selectNodes -cache 1 {string(*[position()=$i])}]
$doc delete
set result
} {2 2}
test xpath-5.36 {tcl var resolution in xpath expr} {
set doc [dom parse {<doc><e>1</e><e>2</e><e>3</e><e>4</e></doc>}]
set node [$doc documentElement]
set i 2
set result [list]
lappend result [$node selectNodes {string(*[position()=$i])}]
set i 3
lappend result [$node selectNodes {string(*[position()=$i])}]
$doc delete
set result
} {2 3}
proc xpath-5.37 {node} {
set i 4
return [$node selectNodes -cache 1 {string(*[position()=$i])}]
}
test xpath-5.37 {tcl var resolution in xpath expr} {
set doc [dom parse {<doc><e>1</e><e>2</e><e>3</e><e>4</e></doc>}]
set node [$doc documentElement]
set i 2
set result [list]
lappend result [$node selectNodes -cache 1 {string(*[position()=$i])}]
lappend result [xpath-5.37 $node]
set i 3
$doc delete
set result
} {2 2}
test xpath-5.38 {tcl var resolution in xpath expr} {
set doc [dom parse <doc/>]
set xpath "/doc"
for {set i 1} {$i <= 20} {incr i} {
set var$i $i
append xpath "/e\[position()=\$var$i\]"
}
set result [$doc selectNodes $xpath]
$doc delete
} {}
test xpath-5.39 {tcl var resolution in xpath expr} {
set xml {
<doc>
<e att="a" elm="1"/>
<e att="a" elm="2"/>
<e att="b" elm="3"/>
<e att="b" elm="4"/>
</doc>
}
set doc [dom parse $xml]
set attvalue "b"
set pos 2
set result [[$doc selectNodes {/doc/e[@att=$attvalue][position()=$pos]}] asXML -indent none]
$doc delete
set result
} {<e att="b" elm="4"/>}
test xpath-5.40 {tcl var resolution in xpath expr} {
set doc [dom parse {<doc><e>1</e><e>2</e><e>3</e><e>4</e></doc>}]
# What this test tests depend on NUM_STATIC_TOKENS. Which is 20 in
# the tcl core distribution at the time, this test was written.
unset -nocomplain a
for {set i 0} {$i < 25} {} {
set a($i) [incr i]
}
set a(25) 2
set xpath "string(/doc/e\[position()="
for {set i 0} {$i < 26} {incr i} {
append xpath "\$a("
}
append xpath 0
for {set i 0} {$i < 26} {incr i} {
append xpath ")"
}
append xpath "\])"
set result [$doc selectNodes $xpath]
lappend result [$doc selectNodes -cache 1 $xpath]
$doc delete
unset a
set result
} {2 2}
test xpath-5.41 {tcl var resolution in xpath expr} {
set doc [dom parse {<doc><e>1</e><e>2</e><e>3</e><e>4</e></doc>}]
# What this test tests depend on NUM_STATIC_TOKENS.
unset -nocomplain a
for {set i 0} {$i < 25} {} {
set a($i) [incr i]
}
set a(25) 2
set xpath "/doc"
for {set i 1} {$i <= 20} {incr i} {
set var$i $i
append xpath "/e\[position()=\$var$i\]"
}
append xpath "/e\[position()="
for {set i 0} {$i < 26} {incr i} {
append xpath "\$a("
}
append xpath 0
for {set i 0} {$i < 26} {incr i} {
append xpath ")"
}
append xpath "\]"
set result [$doc selectNodes $xpath]
append result [$doc selectNodes -cache 1 $xpath]
$doc delete
unset a
set result
} ""
test xpath-5.42 {tcl var resolution in xpath expr} {
set doc [dom parse {<doc><e>1</e><e>2</e><e>3</e><e>4</e></doc>}]
# What this test tests depend on NUM_STATIC_TOKENS.
unset -nocomplain a
for {set i 0} {$i < 25} {} {
set a($i) [incr i]
}
set a(25) 2
set xpath "/doc/e\[position()="
for {set i 0} {$i < 26} {incr i} {
append xpath "\$a("
}
append xpath 0
for {set i 0} {$i < 26} {incr i} {
append xpath ")"
}
append xpath "\]"
for {set i 1} {$i <= 20} {incr i} {
set var$i $i
append xpath "/e\[position()=\$var$i\]"
}
set result [$doc selectNodes $xpath]
append result [$doc selectNodes -cache 1 $xpath]
$doc delete
unset a
set result
} ""
test xpath-5.43 {XPath is commutative} {
set xml {
<doc>
<e>
<ee>eins</ee>
</e>
<e>
<ee>zwei</ee>
</e>
</doc>}
set doc [dom parse $xml]
set result [expr {[$doc selectNodes {doc/e[ee='zwei']}]
== [$doc selectNodes {doc/e['zwei'=ee]}]}]
lappend result [llength [$doc selectNodes {doc/e[ee='zwei']}]]
lappend result [$doc selectNodes {string(doc/e[ee='zwei'])}]
$doc delete
set result
} {1 1 zwei}
test xpath-5.44 {Element name injected with tcl variable} {
set doc [dom parse -json {{"member name with spaces":"the value"}}]
set nodeName "member name with spaces"
set node [$doc selectNodes %nodeName]
set result [list]
lappend result [$node nodeName]
lappend result [$doc selectNodes string(%nodeName)]
set node [$doc selectNodes /%nodeName]
lappend result [$node nodeName]
$doc delete
set result
} {{member name with spaces} {the value} {member name with spaces}}
test xpath-5.45 {Element name injected with tcl variable} {
set doc [dom parse -json {{"a":{"with spaces":"the value"},"a":{"with spaces":"another value"}}}]
set nodeName "with spaces"
set node [$doc selectNodes {a[%nodeName='another value']}]
set result [list]
lappend result [$node nodeName]
lappend result [$doc selectNodes {string(a[%nodeName='another value'])}]
$doc delete
set result
} {a {another value}}
test xpath-5.46 {Element name injected with tcl variable - wrong xpath syntax} {
set doc [dom parse -json {{"a":{"with spaces":"the value"},"a":{"with spaces":"another value"}}}]
set result [catch {$doc selectNodes {a[b %nodeName='another value']}} errMsg]
lappend result $errMsg
$doc delete
set result
} {1 {Predicate: Expected "RBRACKET" for 'a[b %nodeName='another value']'
Parsed symbols:
0 WCARDNAME 0 000000000 0 a
1 LBRACKET 0 000000000 1
2 WCARDNAME 0 000000000 2 b
--> 3 WCARDNAME 1 000000000 12 with spaces
4 EQUAL 0 000000000 13
5 LITERAL 0 000000000 28 another value
6 RBRACKET 0 000000000 29 }}
test xpath-5.47 {Element name injected with tcl variable} {
set doc [dom parse -json {{"a":{"":"the value"},"a":{"":"another value"}}}]
set nodeName ""
set node [$doc selectNodes {a[%nodeName='another value']}]
set result [list]
lappend result [$node nodeName]
lappend result [$doc selectNodes {string(a[%nodeName='another value'])}]
$doc delete
set result
} {a {another value}}
test xpath-5.48 {Element name injected with tcl variable} {
set doc [dom parse -json {{"a":{"a\u0001b":"the value"},"a":{"a\u0001b":"another value"}}}]
set nodeName "a\u0001b"
set node [$doc selectNodes {a[%nodeName='another value']}]
set result [list]
lappend result [$node nodeName]
lappend result [$doc selectNodes {string(a[%nodeName='another value'])}]
$doc delete
set result
} {a {another value}}
test xpath-5.49 {Element name injected with tcl variable} {
set doc [dom parse -json {{"a":{"a\u0000b":"the value"},"a":{"a\u0000b":"another value"}}}]
set nodeName "a\u0000b"
set node [$doc selectNodes {a[%nodeName='another value']}]
set result [list]
lappend result [$node nodeName]
lappend result [$doc selectNodes {string(a[%nodeName='another value'])}]
$doc delete
set result
} {a {another value}}
test xpath-5.50 {Element name injected with tcl variable} {
set doc [dom parse -json {{"a":"1","*":"2","c":"3"}}]
set nodeName "*"
set result [llength [$doc selectNodes %nodeName]]
$doc delete
set result
} {1}
test xpath-5.51 {Element name injected with tcl variable} {
set doc [dom parse -json {{"member name with spaces":"the value"}}]
set nodeName "member name with spaces"
set node [$doc selectNodes %nodeName]
set result [list]
lappend result [$node nodeName]
lappend result [$doc selectNodes string(%nodeName)]
set node [$doc selectNodes child::%nodeName]
lappend result [$node nodeName]
$doc delete
set result
} {{member name with spaces} {the value} {member name with spaces}}
test xpath-5.52 {Element name injected with tcl variable} {
set doc [dom parse -json {{"a:b":"value"}}]
set nodeName "a:b"
set result [$doc selectNodes string(%nodeName)]
$doc delete
set result
} {value}
test xpath-5.53 {Element name injected with tcl variable} {
set doc [dom parse -json {{"a:b":"value"}}]
set nodeName "a:b"
set result [$doc selectNodes string(child::%nodeName)]
$doc delete
set result
} {value}
test xpath-5.54 {Element name injected with tcl variable} {
set doc [dom parse -json {{"a:b":"value"}}]
set nodeName "a:b"
set result [$doc selectNodes string(descendant-or-self::%nodeName)]
$doc delete
set result
} {value}
test xpath-5.55 {Element name injected with tcl variable} {
set doc [dom parse <a><b/></a>]
set nodeName "a/b"
set result [llength [$doc selectNodes %nodeName]]
lappend result [llength [$doc selectNodes a/b]]
$doc delete
set result
} {0 1}
test xpath-5.56 {Element name injected with tcl variable} {
set doc [dom parse -json {{"a":{"a/b":"a/b"},"a":{"a":{"b":"b"}}}}]
set nodeName0 "a"
set nodeName1 "a/b"
set result [list]
lappend result [$doc selectNodes string(%nodeName0/%nodeName1)]
lappend result [$doc selectNodes string(a/a/b)]
$doc delete
set result
} {a/b b}
test xpath-5.57 {afl-fuzz found seg fault in reporting error in invalid expr} {
set doc [dom createDocument doc]
catch {$doc selectNodes /[string repeat 1 2500]}
catch {$doc selectNodes /[string repeat 1 250]}
$doc delete
} {}
test xpath-5.58 {afl-fuzz found seg fault in reporting error in invalid expr} {
set doc [dom createDocument doc]
catch {$doc selectNodes concat([string repeat 1 250],1,1)}
$doc delete
} {}
test xpath-5.59 {afl-fuzz found floating point exception in mod calulation} {
set doc [dom createDocument doc]
set result [list]
lappend result [$doc selectNodes "1111111111 mod -1"]
lappend result [$doc selectNodes "111111111111111111111111111111111111111 mod -1"]
$doc delete
set result
} {0 NaN}
test xpath-5.60 {afl-fuzz found floating point exception in mod calulation} {
set doc [dom createDocument doc]
set result [list]
for {set i 1} {$i < 20} {incr i} {
for {set j 1} {$j < 20} {incr j} {
set this [$doc selectNodes "$i mod $j"]
if {$this != ($i % $j)} {
lappend result [list $i $j $this [expr "$i % $j"]]
}
}
}
$doc delete
set result
} {}
set doc [dom parse {
<root>
<asub>asub2</asub>
<asub>asub3</asub>
<asub>asub4</asub>
<bsub>bsub1</bsub>
<bsub>bsub2</bsub>
</root>}]
set root [$doc documentElement]
test xpath-6.1 {document order in modified DOM tree} {
set newAsub [$doc createElement asub]
$newAsub appendChild [$doc createTextNode "asub1"]
$root insertBefore $newAsub [$root firstChild]
set result ""
foreach node [$root selectNodes {bsub|asub}] {
append result "[$node text] "
}
set result
} {asub1 asub2 asub3 asub4 bsub1 bsub2 }
catch {$doc delete}
set doc [dom parse {
<!-- comment 1 -->
<!-- comment 2 -->
<?api pi data?>
<!-- still not the document element -->
<root/>
<!-- comment 1 -->
<!-- comment 2 -->
<?api pi data?>
<!-- still not the end of the document -->}]
set root [$doc documentElement]
test xpath-7.1 {preceding-sibling axis with documentElement als current node} {
$root selectNodes {count(preceding-sibling::node())}
} {4}
test xpath-7.2 {following-sibling axis with documentElement als current node} {
$root selectNodes {count(following-sibling::node())}
} {4}
$doc delete
test xpath-7.3 {NCName equal to an operator in a union expr} {
dom parse {<root><div/></root>} doc
$doc documentElement root
set node [$root selectNodes {p|div}]
set result [$node nodeName]
$doc delete
set result
} {div}
test xpath-7.4 {Name test * in a union expr} {
dom parse {<root><div/></root>} doc
$doc documentElement root
set node [$root selectNodes {processing-instruction()|*}]
set result [$node nodeName]
$doc delete
set result
} {div}
test xpath-7.5 {ancestor-or-self axis on /} {
dom parse {<root/>} doc
set result [$doc selectNodes {count(./ancestor-or-self::*)}]
lappend result [$doc selectNodes {count(ancestor-or-self::*)}]
lappend result [$doc selectNodes {count(./ancestor-or-self::node())}]
lappend result [$doc selectNodes {count(ancestor-or-self::node())}]
$doc delete
set result
} {0 0 1 1}
test xpath-7.6 {parent axis on /} {
dom parse {<root/>} doc
set result [$doc selectNodes {count(parent::*)}]
lappend result [$doc selectNodes {count(parent::node())}]
lappend result [$doc selectNodes {count(..)}]
$doc delete
set result
} {0 0 0}
test xpath-7.7 {Document order in complexer // expressions} -setup {
set doc [dom parse {
<doc>
<a>
<b>1</b>
<a>
<b>11</b>
</a>
<b>2</b>
</a>
<a>
<a>
<b>22</b>
</a>
<b>3</b>
<b>4</b>
<a>
<b>33</b>
</a>
</a>
</doc>}]} -body {
set result [list]
foreach node [$doc selectNodes //a/b] {
lappend result [$node selectNodes string()]
}
join $result " - "
} -cleanup {
$doc delete
} -result {1 - 11 - 2 - 22 - 3 - 4 - 33}
test xpath-7.8 {Attribute node as context node of a lang() call} -setup {
set doc [dom parse <doc/>]
} -body {
$doc selectNodes {/namespace::node()[lang('en')]}
} -cleanup {
$doc delete
} -result ""
test xpath-7.9 {Attribute node as context node of an id() call} -setup {
set doc [dom parse {<doc foo="bar"/>}]
} -body {
$doc selectNodes {doc/@foo[id(.)]}
} -cleanup {
$doc delete
} -result ""
test xpath-7.10 {processing-instruction with literal argument} -setup {
set doc [dom parse {<h>
<?mypi whatever?>
<stuff>does not matter</stuff>
</h>
}]
} -body {
$doc selectNodes //processing-instruction('dontexist')
} -cleanup {
$doc delete
} -result {}
test xpath-7.11 {processing-instruction with literal argument} -setup {
set doc [dom parse {<h>
<?mypi whatever?>
<stuff>does not matter</stuff>
</h>
}]
} -body {
[$doc selectNodes //processing-instruction('mypi')] asXML -indent none
} -cleanup {
$doc delete
} -result {<?mypi whatever?>}
test xpath-7.12 {string value of processing-instruction} -setup {
set doc [dom parse {<h>
<?mypi whatever?>
<stuff>does not matter</stuff>
</h>
}]
} -body {
$doc selectNodes string(//processing-instruction('mypi'))
} -cleanup {
$doc delete
} -result {whatever}
test xpath-7.13 {string value of processing-instruction} -setup {
set doc [dom parse {<h>
<?mypi whatever ?>
<stuff>does not matter</stuff>
</h>
}]
} -body {
$doc selectNodes string(//processing-instruction('mypi'))
} -cleanup {
$doc delete
} -result "whatever "
test xpath-7.14 {local-name value of processing-instruction} -setup {
set doc [dom parse {<h>
<?mypi whatever ?>
<stuff>does not matter</stuff>
</h>
}]
} -body {
$doc selectNodes local-name(//processing-instruction('mypi'))
} -cleanup {
$doc delete
} -result {mypi}
# cleanup
::tcltest::cleanupTests
return
|