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
|
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="XQTSCatalog.xsl" ?>
<test-suite
xmlns="http://www.w3.org/2005/02/query-test-XQTSCatalog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
CatalogDesignDate="2003-04-03"
version="0.1"
SourceOffsetPath="./"
ResultOffsetPath="ExpectedTestResults/"
XQueryQueryOffsetPath="Queries/XQuery/"
XQueryXQueryOffsetPath="Queries/XQueryX/"
XQueryFileExtension=".xq"
XQueryXFileExtension=".xqx"
xsi:schemaLocation="http://www.w3.org/2005/02/query-test-XQTSCatalog XQTSCatalog.xsd">
<test-suite-info>
<title>KXQTS Harness Test Suite</title>
<description>This collection of test cases in the XQTS format does not exist
for testing an XPath, XQuery or XSL-T implementation, but to verify
the test harness tool that runs an actual XQTS test suite. Therefore,
some tests intentionally fail in this test suite.</description>
</test-suite-info>
<citations>
<citation-spec name="XQuery">
<description last-mod="2004-10-29">XQuery 1.0: An XML Query Language</description>
<spec-URI>http://www.w3.org/TR/2004/WD-xquery-20041029/</spec-URI>
</citation-spec>
<citation-spec name="FuncOps">
<description last-mod="2004-10-29">XQuery 1.0 and XPath 2.0 Functions and Operators</description>
<spec-URI>http://www.w3.org/TR/2004/WD-xpath-functions-20041029/</spec-URI>
</citation-spec>
<citation-spec name="DataModel">
<description last-mod="2004-10-29">XQuery 1.0 and XPath 2.0 Data Model</description>
<spec-URI>http://www.w3.org/TR/2004/WD-xpath-datamodel-20041029/</spec-URI>
</citation-spec>
<citation-spec name="FormalSemantics">
<description last-mod="2004-02-20">XQuery 1.0 and XPath 2.0 Formal Semantics</description>
<spec-URI>http://www.w3.org/TR/2004/WD-xquery-semantics-20040220/</spec-URI>
</citation-spec>
<citation-spec name="SchemaPart2">
<description last-mod="2003-03-25">XML Schema Part 2: Datatypes</description>
<spec-URI>http://www.w3.org/TR/xmlschema-2/</spec-URI>
</citation-spec>
<citation-spec name="Schema-Errata">
<description last-mod="2003-03-25">XML Schema Errata</description>
<note>Current practice is to have one Errata document for all parts of Schema.</note>
<spec-URI>http://www.w3.org/2001/05/xmlschema-errata</spec-URI>
</citation-spec>
<citation-spec name="UseCases">
<description last-mod="2003-11-12">XML Query Use Cases</description>
<spec-URI>http://www.w3c.org/TR/xquery-use-cases/</spec-URI>
</citation-spec>
</citations>
<comparisons>
<comparison name="XML">
<description last-mod="2003-03-25">The XML InfoSets should be canonicalized and compared.</description>
</comparison>
<comparison name="Fragment">
<description last-mod="2004-10-20">A 'fragment' refers to an XML based instance which has multiple top-level elements and NO XML declaration.
The comparator for this should simply wrap the entire fragment in a container element and perform XML comparisson.
</description>
</comparison>
<comparison name="Text">
<description last-mod="2003-03-25">
Each line of non-whitespace text should match. New-line sequences
may vary and should be neutralized. Due to issues with the XML serialization of certain characters (e.g. '<'),
it is not possible to simply compare the actual and expected results. Rather (as is the case with the 'Fragment' comparator)
the test harness should convert the results into valid XML (by adding a container element) and perform comparisson
on the XML canonicalized versions of the results.
</description>
</comparison>
<comparison name="Ignore">
<description last-mod="2003-03-25">
Only the presence/absence of this file is significant,
not its content.
</description>
</comparison>
<comparison name="Inspect">
<description last-mod="2003-03-25">
Automated comparison is not possible. the output should be
inspected by a human.
</description>
</comparison>
</comparisons>
<roles>
<role name="principal-data">
<description last-mod="2003-03-25">
This is the source that is handed in to the processor as the
initial input sequence, setting the "evaluation context" as described in XQuery chapter 2.
</description>
</role>
<role name="supplemental-data">
<description last-mod="2003-03-25">
These are sources that may be read by functions such as
fn:document() as the query is evaluated.
</description>
</role>
<role name="schema">
<description last-mod="2003-03-25">
These are schema definitions that may be referenced by sources
or in the query.
</description>
</role>
<role name="dtd">
<description last-mod="2003-03-25">
These are dtd definitions that may be referenced by sources
or in the query.
</description>
</role>
<role name="principal">
<description last-mod="2003-03-25">
This is an output (either text or XML) that will contain the
query results. If the processor invocation sequence accepts a filename for results, this name may be
passed, possibly prefixed by a partial directory path to allow storage of the results in a separate
directory tree.
</description>
</role>
<role name="console-log">
<description last-mod="2003-03-25">
This is an output (text file tagged .log) that will contain the
captured "console" output for a command-line invocation, or equivalent messages from a harness. The
main goal is to capture error messages that came from the processor.
</description>
<note>
A test lab may choose to capture console output for every test case, in which case the presence
of this element is a signal that the console log of this test contains messages that are significant to
the pass/fail determination.
</note>
</role>
</roles>
<scenarios>
<scenario name="standard">
<description last-mod="2005-06-10">
A query this is expected to produce valid results. Principal input should always be specified, even if the query doesn't have any PathExpr.
</description>
</scenario>
<scenario name="parse-error">
<description last-mod="2005-06-10">
A query this is expected to raise a parsing/syntax error at query parse time. Principal input should always be specified, even if the query doesn't have any PathExpr.
</description>
</scenario>
<scenario name="runtime-error">
<description last-mod="2005-06-10">
A query this is expected to raise a runtime error at query parse time. Runtime errors in this case include those raised by static typing rules. Principal input should always be specified, even if the query doesn't have any PathExpr.
</description>
</scenario>
</scenarios>
<sources>
<source ID="XQTSCatalog" FileName="XQTSCatalog.xml" Creator="XQuery Test Task Force" schema="XQTSCatalogxsd">
<description last-mod="2005-04-14">XQuery Test Suite Catalog</description>
</source>
<source ID="bib2" FileName="TestSources/bib2.xml" Creator="spec-authors">
<description last-mod="2003-03-25">Bibliography example with extra comments and PIs.</description>
</source>
<source ID="emptydoc" FileName="TestSources/emptydoc.xml" Creator="David Marston">
<description last-mod="2003-03-25">Contains just a "doc" element, no comments/text/PIs.</description>
</source>
<source ID="fsx" FileName="TestSources/fsx.xml" Creator="Mike Rorke">
<description last-mod="2003-03-25">Data about a filesystem represented in XML.</description>
</source>
<source ID="fsx_NS" FileName="TestSources/fsx_NS.xml" Creator="Mike Rorke">
<description last-mod="2003-03-25">Data about a filesystem represented in XML with namespace-qualified names.</description>
</source>
<source ID="MixNS" FileName="TestSources/MixNS.xml" Creator="David Marston">
<description last-mod="2003-03-25">Small tree with element names in mixed namespaces.</description>
<note>Use @index to identify elements precisely.</note>
</source>
<source ID="nw_Customers" FileName="TestSources/nw_Customers.xml" Creator="Kuen Siew">
<description last-mod="2003-03-25">Customer name/address file with some non-ASCII characters.</description>
</source>
<source ID="TopMany" FileName="TestSources/TopMany.xml" Creator="David Marston">
<description last-mod="2003-03-25">Like TreeCompass, but with comments and PIs off the root. PI targets vary.</description>
<note>All text nodes must have non-whitespace characters.</note>
</source>
<source ID="Tree1Child" FileName="TestSources/Tree1Child.xml" Creator="David Marston">
<description last-mod="2003-03-25">A "compass" tree that has just one child, of an abnormal name, off the center node.</description>
<note>One attribute each on west and center.</note>
</source>
<source ID="Tree1Text" FileName="TestSources/Tree1Text.xml" Creator="David Marston">
<description last-mod="2003-03-25">A "compass" tree that has just a text node and no child element off the center node.</description>
</source>
<source ID="TreeCompass" FileName="TestSources/TreeCompass.xml" Creator="David Marston">
<description last-mod="2003-03-25">A tree intended to allow many kinds of path expressions.</description>
<note>Need multiple attributes on center, west, and south, plus @mark scattered around.</note>
<note>Mix of text and element children in many places, but east should have only a text node.</note>
<note>All text nodes must have non-whitespace characters.</note>
<note>Top element is far-north.</note>
</source>
<source ID="TreeEmpty" FileName="TestSources/TreeEmpty.xml" Creator="David Marston">
<description last-mod="2003-03-25">A "compass" tree that has just one "south" element at the top, bearing one "mark" attribute.</description>
</source>
<source ID="TreeRepeat" FileName="TestSources/TreeRepeat.xml" Creator="David Marston">
<description last-mod="2003-03-25">A "compass" tree that has center elements off the real center node.</description>
<note>Use @mark to distinguish center elements.</note>
<note>"Real" center must have multiple element children, some with duplicate names (south-east).</note>
<note>Repeating attribute names used, including same name on elements of the same name.</note>
<note>Comments and text nodes are strewn about. All text nodes must have non-whitespace characters.</note>
</source>
<source ID="TreeStack" FileName="TestSources/TreeStack.xml" Creator="David Marston">
<description last-mod="2003-03-25">A "compass" tree that has several "south" elements, some stacked within each other.</description>
<note>Use "mark" attributes at several levels and on all south elements.</note>
</source>
<source ID="TreeTrunc" FileName="TestSources/TreeTrunc.xml" Creator="David Marston">
<description last-mod="2003-03-25">A "compass" tree that has no content at all in center or west, no attributes anywhere.</description>
</source>
<source ID="xq311A" FileName="TestSources/xq311A.xml" Creator="David Marston">
<description last-mod="2003-03-25">Data that fits first example in XQuery 3.11.</description>
</source>
<source ID="xq311B" FileName="TestSources/xq311B.xml" Creator="David Marston">
<description last-mod="2003-03-25">Data that fits later examples in XQuery 3.11.</description>
</source>
<source ID="DupNode" FileName="TestSources/DupNode.xml" Creator="Andreas Behm">
<description last-mod="2005-04-26">Simple document with all node kinds</description>
</source>
<source ID="inscope" FileName="TestSources/inscope.xml" Creator="Andreas Behm">
<description last-mod="2005-08-26">Simple document with namespaces</description>
</source>
<source ID="nsmode" FileName="TestSources/nsmode.xml" Creator="Andreas Behm">
<description last-mod="2005-04-26">Source document for namespace copy modes</description>
</source>
<source ID="works" FileName="TestSources/works.xml" Creator="Carmelo Montanez">
<description last-mod="2005-03-04">Data for various NIST tests</description>
</source>
<source ID="works-mod" FileName="TestSources/works-mod.xml" Creator="Carmelo Montanez">
<description last-mod="2005-03-04">Data for various NIST tests (abbreviated, unabbreviated syntax)</description>
</source>
<source ID="lang" FileName="TestSources/lang.xml" Creator="Carmelo Montanez">
<description last-mod="2005-10-19">Data for fn:lang tests.</description>
</source>
<source ID="staff" FileName="TestSources/staff.xml" Creator="Carmelo Montanez">
<description last-mod="2005-03-04">Data for various NIST tests</description>
</source>
<source ID="acme_corp" FileName="TestSources/acme_corp.xml" Creator="Ravindranath Chennoju">
<description last-mod="2005-08-30">Source document for Function Declaration tests</description>
</source>
<source ID="bib" FileName="TestSources/bib.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query XMP use cases</description>
</source>
<source ID="reviews" FileName="TestSources/reviews.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query XMP use cases</description>
</source>
<source ID="books" FileName="TestSources/books.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query XMP use cases</description>
</source>
<source ID="prices" FileName="TestSources/prices.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query XMP use cases</description>
</source>
<source ID="book" FileName="TestSources/book.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query TREE use cases</description>
</source>
<source ID="report1" FileName="TestSources/report1.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query SEQ use cases</description>
</source>
<source ID="items" FileName="TestSources/items.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query RDB use cases</description>
</source>
<source ID="bids" FileName="TestSources/bids.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query RDB use cases</description>
</source>
<source ID="users" FileName="TestSources/users.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query RDB use cases</description>
</source>
<source ID="string" FileName="TestSources/string.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query STRING use cases</description>
</source>
<source ID="company-data" FileName="TestSources/company-data.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query STRING use cases</description>
</source>
<source ID="auction" FileName="TestSources/auction.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query NS use cases</description>
</source>
<source ID="partlist" FileName="TestSources/partlist.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query PARTS use cases</description>
</source>
<source ID="sgml" FileName="TestSources/sgml.xml" Creator="XML Query WG">
<description last-mod="2005-02-11">Data for the the XML Query SGML use cases</description>
</source>
<source ID="atomic" FileName="TestSources/atomic.xml" Creator="Carmelo Montanez" schema="atomicxsd">
<description last-mod="2005-03-08">A Schema validated xml file, that contains values for data types. Can be used by any test.</description>
</source>
<source ID="orderData" FileName="TestSources/orderData.xml" Creator="Carmelo Montanez" schema="orderDataxsd">
<description last-mod="2005-06-01">A Schema validated xml file, that contains values for some of the order by tests generated by NIST.</description>
</source>
<source ID="id-idref" FileName="TestSources/id.xml" Creator="Carmelo Montanez">
<description last-mod="2005-06-01">Data for id and idref related functions.</description>
</source>
<source ID="SpecialTypes" FileName="TestSources/SpecialTypes.xml" Creator="Mike Rorke" schema="SpecialTypesXSD">
<description last-mod="2005-06-01">A Schema validated XML file containing certain special types e.g. interleave types, union types, anySimpleType</description>
</source>
<source ID="QNameSource" FileName="TestSources/QName-source.xml" Creator="Mike Rorke" schema="QNameSourceXSD">
<description last-mod="2005-09-28">A schema validated XML file containing QName and QName derived types.</description>
</source>
<source ID="notation" FileName="TestSources/notation.xml" Creator="Andreas Behm" schema="notationschema">
<description last-mod="2005-10-10">A Scehma validated xml file with NOTATION elements</description>
</source>
<source ID="textWithSpaces" FileName="TestSources/textWithSpaces.xml" Creator="Joanne Tong">
<description last-mod="2005-09-29">Data for normalize-space functions</description>
</source>
<schema ID="XQTSCatalogxsd" uri="http://www.w3.org/2005/02/query-test-XQTSCatalog" FileName="XQTSCatalog.xsd">
<description last-mod="2005-04-14">Schema for XQTSCatalog</description>
</schema>
<schema ID="atomicxsd" uri="http://www.w3.org/XQueryTest" FileName="TestSources/atomic.xsd">
<description last-mod="2005-03-08">A Schema for atomic.xml</description>
</schema>
<schema ID="orderDataxsd" uri="http://www.w3.org/XQueryTestOrderBy" FileName="TestSources/orderData.xsd">
<description last-mod="2005-06-01">A Schema for orderData.xml</description>
</schema>
<schema ID="SpecialTypesXSD" uri="http://typedecl" FileName="TestSources/SpecialTypes.xsd">
<description last-mod="2005-06-01">A Schema containing certain special types e.g. interleave types, union types, anySimpleType</description>
</schema>
<schema ID="QNameSourceXSD" uri="QNameXSD" FileName="TestSources/QName-schema.xsd">
<description last-mod="2005-09-28">A schema containing QName and QName derived types</description>
</schema>
<schema ID="notationschema" uri="http://www.example.com/notation" FileName="TestSources/notationschema.xsd">
<description last-mod="2005-10-10">A Schema for NOTATION data</description>
</schema>
<schema ID="simplexsd" uri="http://www.w3.org/XQueryTest/simple" FileName="TestSources/simple.xsd">
<description last-mod="2005-12-07">A schema for simple context tests</description>
</schema>
<module ID="empty-lib" FileName="TestSources/empty-lib" Creator="Mary Holstege">
<description last-mod="2005-12-05">Library module for "modules-none" query</description>
</module>
<module ID="emptyns-lib" FileName="TestSources/emptyns-lib" Creator="Mary Holstege">
<description last-mod="2005-12-05">Library module with empty namespace</description>
</module>
<module ID="test1-lib" FileName="TestSources/test1-lib" Creator="Mary Holstege">
<description last-mod="2005-12-05">Simple library module</description>
</module>
<module ID="test2-lib" FileName="TestSources/test2-lib" Creator="Carmelo Montanez">
<description last-mod="2006-01-19">Library module with namespace URI set to empty string.</description>
</module>
<module ID="test1a-lib" FileName="TestSources/test1a-lib" Creator="Mary Holstege">
<description last-mod="2005-12-05">Simple library module</description>
</module>
<module ID="test1collide1-lib" FileName="TestSources/test1collide-lib" Creator="Mary Holstege">
<description last-mod="2005-12-05">Library module with colliding definitions</description>
</module>
<module ID="test1collide2-lib" FileName="TestSources/test1collide2-lib" Creator="Mary Holstege">
<description last-mod="2005-12-05">Library module with colliding definitions</description>
</module>
<module ID="test1c1-lib" FileName="TestSources/test1c1-lib" Creator="Mary Holstege">
<description last-mod="2005-12-05">Library module with circular includes</description>
</module>
<module ID="test2c1-lib" FileName="TestSources/test2c1-lib" Creator="Mary Holstege">
<description last-mod="2005-12-05">Library module with circular includes</description>
</module>
<module ID="context-lib" FileName="TestSources/context-lib" Creator="Mary Holstege">
<description last-mod="2005-12-05">Library module with interesting context</description>
</module>
<module ID="module-defs" FileName="TestSources/moduleDefs-lib" Creator="Carmelo Montanez">
<description last-mod="2006-01-06">Library module with definitions for various NIST tests.</description>
</module>
</sources>
<implementation-defined-items>
<implementation-defined-item name="expressionUnicode" spec="XQuery">
<description last-mod="2005-04-04">The version of Unicode that is used to construct expressions.</description>
</implementation-defined-item>
<implementation-defined-item name="collations" spec="XQuery">
<description last-mod="2005-04-04">The statically-known collations.</description>
</implementation-defined-item>
<implementation-defined-item name="implicitTimezone" spec="XQuery">
<description last-mod="2005-04-04">The implicit timezone.</description>
</implementation-defined-item>
<implementation-defined-item name="warningsMethod" spec="XQuery">
<description last-mod="2005-04-04">The circumstances in which warnings are raised, and the ways in which warnings are handled.</description>
</implementation-defined-item>
<implementation-defined-item name="errorsMethod" spec="XQuery">
<description last-mod="2005-04-04">The method by which errors are reported to the external processing environment.</description>
</implementation-defined-item>
<implementation-defined-item name="XMLVersion" spec="XQuery">
<description last-mod="2005-10-10">Whether the implementation is based on the rules of [XML 1.0] and [XML Names] or the rules of [XML 1.1] and [XML Names 1.1]. One of these sets of rules must be applied consistently by all aspects of the implementation.</description>
</implementation-defined-item>
<implementation-defined-item name="overwrittenContextComponents" spec="XQuery">
<description last-mod="2005-04-04">Any components of the static context or dynamic context that are overwritten or augmented by the implementation.</description>
</implementation-defined-item>
<implementation-defined-item name="axes" spec="XQuery">
<description last-mod="2005-04-04">Which of the optional axes are supported by the implementation, if the Full-Axis Feature is not supported.</description>
</implementation-defined-item>
<implementation-defined-item name="defaultOrderEmpty" spec="XQuery">
<description last-mod="2005-04-04">The default handling of empty sequences returned by an ordering key (sortspec) in an order by clause (empty least or empty greatest).</description>
</implementation-defined-item>
<implementation-defined-item name="pragmas" spec="XQuery">
<description last-mod="2005-04-04">The names and semantics of any extension expressions (pragmas) recognized by the implementation.</description>
</implementation-defined-item>
<implementation-defined-item name="optionDeclarations" spec="XQuery">
<description last-mod="2005-04-04">The names and semantics of any option declarations recognized by the implementation.</description>
</implementation-defined-item>
<implementation-defined-item name="externalFunctionProtocols" spec="XQuery">
<description last-mod="2005-04-04">Protocols (if any) by which parameters can be passed to an external function, and the result of the function can returned to the invoking query.</description>
</implementation-defined-item>
<implementation-defined-item name="moduleLocationHints" spec="XQuery">
<description last-mod="2005-11-01">The process by which the specific modules to be imported by a module import are identified, if the Module Feature is supported (includes processing of location hints, if any.)</description>
</implementation-defined-item>
<implementation-defined-item name="staticTypingExtensions" spec="XQuery">
<description last-mod="2005-04-04">Any static typing extensions supported by the implementation, if the Static Typing Feature is supported.</description>
</implementation-defined-item>
<implementation-defined-item name="serializationInvocation" spec="XQuery">
<description last-mod="2005-04-04">The means by which serialization is invoked, if the Serialization Feature is supported.</description>
</implementation-defined-item>
<implementation-defined-item name="serializationDefaults" spec="XQuery">
<description last-mod="2005-10-10">The default values for the byte-order-mark, encoding, media-type, normalization-form, omit-xml-declaration, standalone, and version parameters, if the Serialization Feature is supported.</description>
</implementation-defined-item>
<implementation-defined-item name="limits" spec="XQuery">
<description last-mod="2005-11-01">Limits on ranges of values for various data types, as enumerated in 5.3 Data Model Conformance.</description>
</implementation-defined-item>
<implementation-defined-item name="traceDestination" spec="FuncOps">
<description last-mod="2005-10-10">The destination of the trace output is implementation-defined. See 4 The Trace Function.</description>
</implementation-defined-item>
<implementation-defined-item name="integerOperations" spec="FuncOps">
<description last-mod="2005-10-10">For xs:integer operations, implementations that support limited-precision integer operations must either raise an error [err:FOAR0002] or provide an implementation-defined mechanism that allows users to choose between raising an error and returning a result that is modulo the largest representable integer value. See 6.2 Operators on Numeric Values.</description>
</implementation-defined-item>
<implementation-defined-item name="decimalDigits" spec="FuncOps">
<description last-mod="2005-11-01">For xs:decimal values the number of digits of precision returned by the numeric operators is implementation-defined. See 6.2 Operators on Numeric Values. See also 17.1.3.3 Casting to xs:decimal and 17.1.3.4 Casting to xs:integer.</description>
</implementation-defined-item>
<implementation-defined-item name="roundOrTruncate" spec="FuncOps">
<description last-mod="2005-10-10">If the number of digits in the result exceeds the number of digits that the implementation supports, the result is truncated or rounded in an implementation-defined manner. See 6.2 Operators on Numeric Values. See also 17.1.3.3 Casting to xs:decimal and 17.1.3.4 Casting to xs:integer.</description>
</implementation-defined-item>
<implementation-defined-item name="Unicode" spec="FuncOps">
<description last-mod="2005-11-01">It is implementation-defined which version of Unicode is supported by the features defined in this specification, but it is recommended that the most recent version of Unicode be used. See 7.1 String Types.</description>
</implementation-defined-item>
<implementation-defined-item name="normalizationForms" spec="FuncOps">
<description last-mod="2005-10-10">For 7.4.6 fn:normalize-unicode, conforming implementations must support normalization form "NFC" and may support normalization forms "NFD", "NFKC", "NFKD", "FULLY-NORMALIZED". They may also support other normalization forms with implementation-defined semantics.</description>
</implementation-defined-item>
<implementation-defined-item name="collationUnits" spec="FuncOps">
<description last-mod="2005-10-10">The ability to decompose strings into collation units suitable for substring matching is an implementation-defined property of a collation. See 7.5 Functions Based on Substring Matching.</description>
</implementation-defined-item>
<implementation-defined-item name="secondsDigits" spec="FuncOps">
<description last-mod="2005-10-10">All minimally conforming processors must support year values with a minimum of 4 digits (i.e., YYYY) and a minimum fractional second precision of 1 millisecond or three digits (i.e., s.sss). However, conforming processors may set larger implementation-defined limits on the maximum number of digits they support in these two situations. See 10.1.1 Limits and Precision.</description>
</implementation-defined-item>
<implementation-defined-item name="docProcessing" spec="FuncOps">
<description last-mod="2005-10-10">Various aspects of the processing provided by 15.5.4 fn:doc are implementation-defined. Implementations may provide external configuration options that allow any aspect of the processing to be controlled by the user.</description>
</implementation-defined-item>
<implementation-defined-item name="additionalTypes" spec="DataModel">
<description last-mod="2005-04-04">Support for additional user-defined or implementation-defined types is implementation-defined. (See 2.6.1 Representation of Types)</description>
</implementation-defined-item>
<implementation-defined-item name="undefinedProperties" spec="DataModel">
<description last-mod="2005-04-04">Some typed values in the data model are undefined. Attempting to access an undefined property is always an error. Behavior in these cases is implementation-defined and the host language is responsible for determining the result. (See 5 Accessors)</description>
</implementation-defined-item>
<implementation-defined-item name="sequenceNormalization" spec="Serialization">
<description last-mod="2005-04-04">For any implementation-defined output method, it is implementation-defined whether sequence normalization process takes place. (See 2 Sequence Normalization)</description>
</implementation-defined-item>
<implementation-defined-item name="outputMethods" spec="Serialization">
<description last-mod="2005-04-04">If the namespace URI is non-null for the method serialization parameter, then the parameter specifies an implementation-defined output method. (See 3 Serialization Parameters)</description>
</implementation-defined-item>
<implementation-defined-item name="normalizationForm" spec="Serialization">
<description last-mod="2005-04-04">If the value of the normalization-form form parameter is not NFC, NFD, NFKC, NFKD, fully-normalized, or none then the meaning of the value and it's effect is implementation-defined. (See 4 Phases of Serialization)</description>
</implementation-defined-item>
<implementation-defined-item name="additionalParams" spec="Serialization">
<description last-mod="2005-11-01">The effect of additional serialization parameters on the output of the serializer, where the name of such a parameter must be namespace-qualified, is implementation-defined or implementation-dependent. The extent of this effect on the output must not override the provisions of this specification. (See 3 Serialization Parameters)</description>
</implementation-defined-item>
<implementation-defined-item name="encodingPhase" spec="Serialization">
<description last-mod="2005-04-04">The effect of providing an option that allows the encoding phase to be skipped, so that the result of serialization is a stream of Unicode characters, is implementation-defined. The serializer is not required to support such an option. (See 4 Phases of Serialization)</description>
</implementation-defined-item>
<implementation-defined-item name="CDATASerialization" spec="Serialization">
<description last-mod="2005-04-04">An serializer may provide an implementation-defined mechanism to place CDATA sections in the result tree. (See 5.1.4 XML Output Method: the cdata-section-elements Parameter)</description>
</implementation-defined-item>
</implementation-defined-items>
<features>
<feature name="Minimal Conformance"/>
<feature name="Schema Import"/>
<feature name="Schema Validation"/>
<feature name="Static Typing"/>
<feature name="Static Typing Extensions"/>
<feature name="Full Axis"/>
<feature name="Module"/>
<feature name="Serialization"/>
<feature name="Trivial XML Embedding"/>
</features>
<context-properties>
<context-property name="Statically known namespaces" context-type="static"/>
<context-property name="Default element/type namespace" context-type="static"/>
<context-property name="Default function namespace" context-type="static"/>
<context-property name="In-scope schema types" context-type="static"/>
<context-property name="In-scope element declarations" context-type="static"/>
<context-property name="In-scope attribute declarations" context-type="static"/>
<context-property name="In-scope variables" context-type="static"/>
<context-property name="Context item static type" context-type="static"/>
<context-property name="Function signatures" context-type="static"/>
<context-property name="Statically known collations" context-type="static"/>
<context-property name="Default collation" context-type="static"/>
<context-property name="Construction mode" context-type="static"/>
<context-property name="Ordering mode" context-type="static"/>
<context-property name="Default order for empty sequences" context-type="static"/>
<context-property name="Boundary-space policy" context-type="static"/>
<context-property name="Copy-namespaces mode" context-type="static"/>
<context-property name="Base URI" context-type="static"/>
<context-property name="Statically known documents" context-type="static"/>
<context-property name="Statically known collections" context-type="static"/>
<context-property name="Statically known default collection type" context-type="static"/>
<context-property name="Context item" context-type="dynamic"/>
<context-property name="Context position" context-type="dynamic"/>
<context-property name="Context size" context-type="dynamic"/>
<context-property name="Variable values" context-type="dynamic"/>
<context-property name="Function implementations" context-type="dynamic"/>
<context-property name="Current dateTime" context-type="dynamic"/>
<context-property name="Implicit timezone" context-type="dynamic"/>
<context-property name="Available documents" context-type="dynamic"/>
<context-property name="Available collections" context-type="dynamic"/>
<context-property name="Default collection" context-type="dynamic"/>
</context-properties>
<test-group name="ShouldFail">
<GroupInfo>
<title>Failing Tests</title>
<description>These tests should fail -- it's intentional.</description>
</GroupInfo>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-1"
FilePath="ShouldFail/"
scenario="standard">
<description>
The query is a syntax error, but the test-case requires a pass.
</description>
<query name="fail-1" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Text">fail-1.txt</output-file>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-2"
FilePath="ShouldFail/"
scenario="standard">
<description>
The query is a dynamic error due to call to fn:error(), but the test-case requires a pass.
</description>
<query name="fail-2" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Text">fail-2.txt</output-file>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-3"
FilePath="ShouldFail/"
scenario="parse-error">
<description>
The query evaluates to a xs:string, but the test-case requires
a parse-error with error code XPST0003.
</description>
<query name="fail-3" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<expected-error>XPST0003</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-4"
FilePath="ShouldFail/"
scenario="runtime-error">
<description>
The query evaluates to a xs:string, but the test-case requires
a runtime-error with error code FORG0006.
</description>
<query name="fail-4" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<expected-error>FORG0006</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-5"
FilePath="ShouldFail/"
scenario="parse-error">
<description>
The query evaluates to a parse error with error code XPST0003, but the
test case required a parse error with code XPST0081.
</description>
<query name="fail-5" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<expected-error>XPST0081</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-6"
FilePath="ShouldFail/"
scenario="runtime-error">
<description>
The query evaluates to a parse error with error code XPST0003, but the
test case required a runtime error with code FORG0006.
</description>
<query name="fail-6" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<expected-error>FORG0006</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-7"
FilePath="ShouldFail/"
scenario="parse-error">
<description>
The query evaluates to a dynamic error with error code FOER0000, but the
test case required a parse error with code FOER0000.
</description>
<query name="fail-7" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<expected-error>FOER0000</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-8"
FilePath="ShouldFail/"
scenario="runtime-error">
<description>
The query evaluates to a dynamic error with error code FOER0000, but the
test case required a parse error with code FORG0006.
</description>
<query name="fail-8" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<expected-error>FORG0006</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-9"
FilePath="ShouldFail/"
scenario="runtime-error">
<description>
The query evaluates to an xs:string, but none of the baselines match.
</description>
<query name="fail-9" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Text">succeed-9-1.txt</output-file>
<output-file role="principal" compare="Text">succeed-9-2.txt</output-file>
<output-file role="principal" compare="Text">succeed-9-3.txt</output-file>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-10"
FilePath="ShouldFail/"
scenario="runtime-error">
<description>
The query evaluates to an xs:string, but the baseline doesn't match.
</description>
<query name="fail-10" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Text">succeed-10.txt</output-file>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-11"
FilePath="ShouldFail/"
scenario="parse-error">
<description>
The query contains a parse error, but none of the baselines match.
</description>
<query name="fail-11" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Text">succeed-11-1.txt</output-file>
<output-file role="principal" compare="Text">succeed-11-2.txt</output-file>
<expected-error>FOER0000</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-12"
FilePath="ShouldFail/"
scenario="runtime-error">
<description>
The query contains a runtime error due to call to fn:error(), but none of the baselines match.
</description>
<query name="fail-12" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Text">succeed-12-1.txt</output-file>
<output-file role="principal" compare="Text">succeed-12-2.txt</output-file>
<expected-error>FORG0006</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-13"
FilePath="ShouldFail/"
scenario="parse-error">
<description>
The test-case requires a parse error with error code XPST0003,
but the query file does not exist.
</description>
<query name="DoesNotExist" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<expected-error>XPST0003</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="fail-14"
FilePath="ShouldFail/"
scenario="standard">
<description>
The query evaluates to a xs:string literal, but the specified
baseline file does not exist.
</description>
<query name="fail-14" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Text">fail-DOESNOTEXIST.txt</output-file>
</test-case>
<test-case is-XPath2="false" name="fail-15" FilePath="ShouldFail/"
scenario="standard" Creator="Frans Englich">
<description>An "Ignore" baseline with a query that generates a runtime error.</description>
<query name="fail-15" date="2006-10-25"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Ignore"/>
</test-case>
<test-case is-XPath2="false" name="fail-16" FilePath="ShouldFail/"
scenario="standard" Creator="Frans Englich">
<description>An "Ignore" baseline with a query that generates a parse error.</description>
<query name="fail-16" date="2006-10-25"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Ignore"/>
</test-case>
<test-case is-XPath2="false" name="fail-17" FilePath="ShouldFail/"
scenario="standard" Creator="Frans Englich" >
<description>Space is significant.</description>
<query name="fail-17" date="2007-06-07"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="XML">fail-3.txt</output-file>
</test-case>
<test-case is-XPath2="false" name="fail-18" FilePath="ShouldFail/"
scenario="runtime-error" Creator="Frans Englich" >
<description>Test that XML documents that differs on the top level, are flagged(type being runtime-error).</description>
<query name="fail-18" date="2007-10-08"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="XML">fail-18.txt</output-file>
</test-case>
<test-case is-XPath2="false" name="fail-19" FilePath="ShouldFail/"
scenario="runtime-error" Creator="Frans Englich" >
<description>Test that XML documents that differs on the top level, are flagged(type being runtime-error, comparing as Fragment).</description>
<query name="fail-18" date="2007-10-08"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Fragment">fail-18.txt</output-file>
</test-case>
<test-case is-XPath2="false" name="fail-20" FilePath="ShouldFail/"
scenario="standard" Creator="Frans Englich" >
<description>Test that XML documents that differs on the top level, are flagged(type being standard, comparing as XML).</description>
<query name="fail-18" date="2007-10-08"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="XML">fail-18.txt</output-file>
</test-case>
<test-case is-XPath2="false" name="fail-21" FilePath="ShouldFail/"
scenario="standard" Creator="Frans Englich" >
<description>Test that XML documents that differs on the top level, are flagged(type being standard, comparing as fragment).</description>
<query name="fail-18" date="2007-10-08"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Fragment">fail-18.txt</output-file>
</test-case>
<test-case Creator="Frans Englich" is-XPath2="false" name="fail-22" FilePath="ShouldFail/" scenario="standard">
<description>Top elements differing in name, should fail.</description>
<query name="fail-22" date="2007-10-08+01:00"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="XML">fail-22.txt</output-file>
</test-case>
<test-case Creator="Frans Englich" is-XPath2="false" name="fail-23" FilePath="ShouldFail/" scenario="standard">
<description>Attributes differing with the XML prefix, should fail.</description>
<query name="fail-23" date="2007-10-08+01:00"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="XML">fail-23.txt</output-file>
</test-case>
<test-case is-XPath2="false" name="fail-24" FilePath="ShouldFail/"
scenario="runtime-error" Creator="Frans Englich" >
<description>Test that XML documents that differs on the top level, are flagged(type being runtime-error, comparing as Fragment).</description>
<query name="fail-18" date="2007-10-08"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="XML">fail-18.txt</output-file>
</test-case>
</test-group>
<test-group name="ShouldSucceed">
<GroupInfo>
<title>Succeeding Tests</title>
<description>These tests should succeed.</description>
</GroupInfo>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="succeed-1"
FilePath="ShouldSucceed/"
scenario="standard">
<description>A 'success' test where the query, which is a
string literal, evaluates to a string, which must match the baseline.
</description>
<query name="succeed-1" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Text">succeed-1.txt</output-file>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="false"
name="succeed-2"
FilePath="ShouldSucceed/"
scenario="standard">
<description>
A 'success' test where multiple output baselines exists.
</description>
<query name="succeed-2" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Text">succeed-2-1.txt</output-file>
<output-file role="principal" compare="Text">succeed-2-2.txt</output-file>
<output-file role="principal" compare="Text">succeed-2-3.txt</output-file>
<output-file role="principal" compare="Text">succeed-2-4.txt</output-file>
<output-file role="principal" compare="Text">succeed-2-5.txt</output-file>
<output-file role="principal" compare="Text">succeed-2-6.txt</output-file>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="succeed-3"
FilePath="ShouldSucceed/"
scenario="parse-error">
<description>
A 'parse-error' specifying error code XPST0003,
and where the query also is that; a syntax error.
</description>
<query name="succeed-3" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<expected-error>XPST0003</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="succeed-4"
FilePath="ShouldSucceed/"
scenario="runtime-error">
<description>
A 'runtime-error' specifying error code FOER0000,
and where the query, containing a call to fn:error(), also results in that.
</description>
<query name="succeed-4" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<expected-error>FOER0000</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="succeed-5"
FilePath="ShouldSucceed/"
scenario="runtime-error">
<description>
A 'runtime-error' specifying error code XPTY0004,
and where the query, contains an invalid operator mapping. While the test case
is specified as a runtime error, some implementations detects it at compile time, but
should nevertheless flag it as a passed test case(even though it failed at compile time
instead of runtime).
</description>
<query name="succeed-5" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<expected-error>XPTY0004</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="succeed-6"
FilePath="ShouldSucceed/"
scenario="parse-error">
<description>
The query results in a parse error with error code XPST0003, while the test-case contains
many baselines, one of them the error code XPST0003.
</description>
<query name="succeed-6" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Text">succeed-6-1.txt</output-file>
<output-file role="principal" compare="Text">succeed-6-2.txt</output-file>
<expected-error>XPTY0004</expected-error>
<expected-error>XPST0003</expected-error>
</test-case>
<test-case
Creator="Frans Englich"
is-XPath2="true"
name="succeed-7"
FilePath="ShouldSucceed/"
scenario="runtime-error">
<description>
The query results in a runtime error with error code FOER0000, while the test-case contains
many baselines, one of them the error code FOER0000.
</description>
<query name="succeed-7" date="2006-04-06"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Text">succeed-7-1.txt</output-file>
<output-file role="principal" compare="Text">succeed-7-2.txt</output-file>
<expected-error>XPTY0004</expected-error>
<expected-error>FOER0000</expected-error>
</test-case>
<test-case is-XPath2="false" name="succeed-8" FilePath="ShouldSucceed/" scenario="standard" Creator="Frans Englich">
<description>A 'standard' test with multiple baselines that caused an assert crash in KXQTS.</description>
<query name="succeed-8" date="2006-04-19"/>
<input-file role="principal-data" variable="input-context1">emptydoc</input-file>
<output-file role="principal" compare="Text">succeed-8.txt</output-file>
<expected-error>XQST0046</expected-error>
</test-case>
<test-case is-XPath2="true" name="succeed-9" FilePath="ShouldSucceed/" scenario="standard" Creator="Frans Englich">
<description>A test whose comparison method is 'Fragment'. Caused assert in KXQTS.</description>
<query name="succeed-9" date="2006-04-19"/>
<input-file role="principal-data" variable="input-context">bib2</input-file>
<output-file role="principal" compare="Text">succeed-9.txt</output-file>
</test-case>
<test-case is-XPath2="true" name="succeed-10" FilePath="ShouldSucceed/" scenario="runtime-error" Creator="Frans Englich">
<description>A test which accepts any runtime error code, by specifying "*".</description>
<query name="succeed-10" date="2006-04-19"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<expected-error>*</expected-error>
</test-case>
<test-case is-XPath2="false" name="succeed-11" FilePath="ShouldSucceed/"
scenario="standard" Creator="Frans Englich">
<description>A 'standard' test that accept output, a particular error code, plus any error code(yes, it makes no sense).</description>
<query name="succeed-11" date="2006-04-19"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Text">succeed-11.txt</output-file>
<expected-error>XQST0038</expected-error>
<expected-error>*</expected-error>
</test-case>
<test-case is-XPath2="false" name="succeed-12" FilePath="ShouldSucceed/"
scenario="standard" Creator="Frans Englich">
<description>An "Ignore" baseline with a query that generates output.</description>
<query name="succeed-12" date="2006-10-25"/>
<input-file role="principal-data" variable="input-context">emptydoc</input-file>
<output-file role="principal" compare="Ignore"/>
</test-case>
<test-case is-XPath2="true" name="succeed-13" FilePath="ShouldSucceed/" scenario="runtime-error" Creator="Frans Englich">
<description>The scenario is runtime-error despite it not having an error baseline, and despite that we succeed on a non-error baseline. This could the driver not handle.</description>
<query name="succeed-13" date="2007-10-23"/>
<output-file compare="Text" role="principal">succeed-13.txt</output-file>
</test-case>
<test-case is-XPath2="true" name="succeed-14" FilePath="ShouldSucceed/" scenario="standard" Creator="Frans Englich">
<description>Check that an XML prolog is not considered a processing instruction when comparing.</description>
<query name="succeed-14" date="2008-02-19"/>
<output-file compare="XML" role="principal">succeed-14.txt</output-file>
</test-case>
</test-group>
</test-suite>
<!-- // vim: et:ts=2:sw=2:sts=2
-->
|