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 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206
|
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QBuffer>
#include <QByteArray>
#include <QCoreApplication>
#include <QDebug>
#include <QFile>
#include <QList>
#include <QRegExp>
#include <QScopeGuard>
#include <QTextStream>
#include <QtTest/QtTest>
#include <QtXml>
#include <QVariant>
#include <cmath>
QT_FORWARD_DECLARE_CLASS(QDomDocument)
QT_FORWARD_DECLARE_CLASS(QDomNode)
class tst_QDom : public QObject
{
Q_OBJECT
private slots:
void initTestCase();
void namespacedAttributes() const;
void setContent_data();
void setContent();
void toString_01_data();
void toString_01();
void toString_02_data();
void toString_02();
void hasAttributes_data();
void hasAttributes();
void setGetAttributes();
void save_data();
void save();
void saveWithSerialization() const;
void saveWithSerialization_data() const;
void cloneNode_data();
void cloneNode();
void ownerDocument_data();
void ownerDocument();
void ownerDocumentTask27424_data();
void ownerDocumentTask27424();
void parentNode_data();
void parentNode();
void documentCreationTask27424_data();
void documentCreationTask27424();
void browseElements();
void ownerElementTask45192_data();
void ownerElementTask45192();
void domNodeMapAndList();
void nullDocument();
void invalidName_data();
void invalidName();
void invalidQualifiedName_data();
void invalidQualifiedName();
void invalidCharData_data();
void invalidCharData();
void nonBMPCharacters();
void roundTripAttributes() const;
void normalizeEndOfLine() const;
void normalizeAttributes() const;
void serializeWeirdEOL() const;
void reparentAttribute() const;
void serializeNamespaces() const;
void flagInvalidNamespaces() const;
void flagUndeclaredNamespace() const;
void indentComments() const;
void checkLiveness() const;
void reportDuplicateAttributes() const;
void appendChildFromToDocument() const;
void iterateCDATA() const;
void appendDocumentNode() const;
void germanUmlautToByteArray() const;
void germanUmlautToFile() const;
void setInvalidDataPolicy() const;
void crashInSetContent() const;
void doubleNamespaceDeclarations() const;
void setContentQXmlReaderOverload() const;
void toStringWithoutNewlines() const;
void checkIntOverflow() const;
void setContentWhitespace() const;
void setContentWhitespace_data() const;
void taskQTBUG4595_dontAssertWhenDocumentSpecifiesUnknownEncoding() const;
void cloneDTD_QTBUG8398() const;
void DTDNotationDecl();
void DTDEntityDecl();
void DTDInternalSubset() const;
void DTDInternalSubset_data() const;
void QTBUG49113_dontCrashWithNegativeIndex() const;
void cleanupTestCase() const;
private:
static QDomDocument generateRequest();
static int hasAttributesHelper( const QDomNode& node );
static bool compareDocuments( const QDomDocument &doc1, const QDomDocument &doc2 );
static bool compareNodes( const QDomNode &node1, const QDomNode &node2, bool deep );
static QDomNode findDomNode( const QDomDocument &doc, const QList<QVariant> &pathToNode );
static QString onNullWarning(const char *const functionName);
static bool isDeepEqual(const QDomNode &n1, const QDomNode &n2);
static bool isFakeXMLDeclaration(const QDomNode &node);
QList<QByteArray> m_testCodecs;
};
void tst_QDom::setContent_data()
{
const QString doc01(
"<!DOCTYPE a1 [ <!ENTITY blubber 'and'> ]>\n"
"<a1>\n"
" <b1>\n"
" <c1>foo</c1>\n"
" <c2>bar</c2>\n"
" <c3>foo & bar</c3>\n"
" <c4>foo &blubber; bar</c4>\n"
" </b1>\n"
" <b2> </b2>\n"
" <b3>\n"
" <c1/>\n"
" </b3>\n"
"</a1>\n"
);
QTest::addColumn<QString>("doc");
QTest::addColumn<QStringList>("featuresTrue");
QTest::addColumn<QStringList>("featuresFalse");
QTest::addColumn<QString>("res");
QTest::newRow( "01" ) << doc01
<< QStringList()
<< QString("http://trolltech.com/xml/features/report-whitespace-only-CharData").split(' ')
<< QString("<!DOCTYPE a1>\n"
"<a1>\n"
" <b1>\n"
" <c1>foo</c1>\n"
" <c2>bar</c2>\n"
" <c3>foo & bar</c3>\n"
" <c4>foo and bar</c4>\n"
" </b1>\n"
" <b2/>\n"
" <b3>\n"
" <c1/>\n"
" </b3>\n"
"</a1>\n");
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && QT_DEPRECATED_SINCE(5, 15)
// These configurations cannot be supported by the QXmlStreamReader-based implementation
QTest::newRow( "02" ) << doc01
<< QString("http://trolltech.com/xml/features/report-whitespace-only-CharData").split(' ')
<< QStringList()
<< QString("<!DOCTYPE a1>\n"
"<a1>\n"
" <b1>\n"
" <c1>foo</c1>\n"
" <c2>bar</c2>\n"
" <c3>foo & bar</c3>\n"
" <c4>foo and bar</c4>\n"
" </b1>\n"
" <b2> </b2>\n"
" <b3>\n"
" <c1/>\n"
" </b3>\n"
"</a1>\n");
QTest::newRow( "03" ) << doc01
<< QString("http://trolltech.com/xml/features/report-start-end-entity").split(' ')
<< QString("http://trolltech.com/xml/features/report-whitespace-only-CharData").split(' ')
<< QString("<!DOCTYPE a1 [\n"
"<!ENTITY blubber \"and\">\n"
"]>\n"
"<a1>\n"
" <b1>\n"
" <c1>foo</c1>\n"
" <c2>bar</c2>\n"
" <c3>foo & bar</c3>\n"
" <c4>foo &blubber; bar</c4>\n"
" </b1>\n"
" <b2/>\n"
" <b3>\n"
" <c1/>\n"
" </b3>\n"
"</a1>\n");
QTest::newRow( "04" ) << doc01
<< QString("http://trolltech.com/xml/features/report-whitespace-only-CharData http://trolltech.com/xml/features/report-start-end-entity").split(' ')
<< QStringList()
<< QString("<!DOCTYPE a1 [\n"
"<!ENTITY blubber \"and\">\n"
"]>\n"
"<a1>\n"
" <b1>\n"
" <c1>foo</c1>\n"
" <c2>bar</c2>\n"
" <c3>foo & bar</c3>\n"
" <c4>foo &blubber; bar</c4>\n"
" </b1>\n"
" <b2> </b2>\n"
" <b3>\n"
" <c1/>\n"
" </b3>\n"
"</a1>\n");
#endif
QTest::newRow("05") << QString("<message>\n"
" <body><b>foo</b>>]]></body>\n"
"</message>\n")
<< QStringList() << QStringList()
<< QString("<message>\n"
" <body><b>foo</b>>]]></body>\n"
"</message>\n");
}
void tst_QDom::setContent()
{
QFETCH( QString, doc );
QDomDocument domDoc;
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && QT_DEPRECATED_SINCE(5, 15)
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
QXmlInputSource source;
source.setData( doc );
QFETCH( QStringList, featuresTrue );
QFETCH( QStringList, featuresFalse );
QXmlSimpleReader reader;
QStringList::Iterator it;
for ( it = featuresTrue.begin(); it != featuresTrue.end(); ++it ) {
QVERIFY( reader.hasFeature( *it ) );
reader.setFeature( *it, true );
}
for ( it = featuresFalse.begin(); it != featuresFalse.end(); ++it ) {
QVERIFY( reader.hasFeature( *it ) );
reader.setFeature( *it, false );
}
QVERIFY( domDoc.setContent( &source, &reader ) );
QT_WARNING_POP
#else
QXmlStreamReader reader(doc);
QVERIFY(domDoc.setContent(&reader, true));
#endif
QString eRes;
QTextStream ts( &eRes, QIODevice::WriteOnly );
domDoc.save( ts, 4 );
QTEST( eRes, "res" );
// make sure that if we parse our output again, we get the same document
QDomDocument domDoc1;
QDomDocument domDoc2;
QVERIFY( domDoc1.setContent( doc ) );
QVERIFY( domDoc2.setContent( eRes ) );
QVERIFY( compareDocuments( domDoc1, domDoc2 ) );
}
void tst_QDom::toString_01_data()
{
QTest::addColumn<QString>("fileName");
const QString prefix = QFINDTESTDATA("testdata/toString_01");
if (prefix.isEmpty())
QFAIL("Cannot find testdata directory!");
QTest::newRow( "01" ) << QString(prefix + "/doc01.xml");
QTest::newRow( "02" ) << QString(prefix + "/doc02.xml");
QTest::newRow( "03" ) << QString(prefix + "/doc03.xml");
QTest::newRow( "04" ) << QString(prefix + "/doc04.xml");
QTest::newRow( "05" ) << QString(prefix + "/doc05.xml");
QTest::newRow( "euc-jp" ) << QString(prefix + "/doc_euc-jp.xml");
QTest::newRow( "iso-2022-jp" ) << QString(prefix + "/doc_iso-2022-jp.xml");
QTest::newRow( "little-endian" ) << QString(prefix + "/doc_little-endian.xml");
QTest::newRow( "utf-16" ) << QString(prefix + "/doc_utf-16.xml");
QTest::newRow( "utf-8" ) << QString(prefix + "/doc_utf-8.xml");
}
/*! \internal
This function tests that the QDomDocument::toString() function results in the
same XML document. The meaning of "same" in this context means that the
"information" in the resulting XML file is the same as in the original, i.e.
we are not intrested in different formatting, etc.
To achieve this, the XML document of the toString() function is parsed again
and the two QDomDocuments are compared.
*/
void tst_QDom::toString_01()
{
QFETCH(QString, fileName);
QFile f(fileName);
QVERIFY2(f.open(QIODevice::ReadOnly), qPrintable(QString::fromLatin1("Failed to open file %1, file error: %2").arg(fileName).arg(f.error())));
QDomDocument doc;
QString errorMsg;
int errorLine;
int errorCol;
QVERIFY(doc.setContent( &f, &errorMsg, &errorLine, &errorCol )); /*,
QString("QDomDocument::setContent() failed: %1 in line %2, column %3")
.arg( errorMsg ).arg( errorLine ).arg( errorCol )); */
// test toString()'s invariant with different indenting depths
for ( int i=0; i<5; i++ ) {
QString toStr = doc.toString( i );
QDomDocument res;
QVERIFY( res.setContent( toStr ) );
QVERIFY( compareDocuments( doc, res ) );
}
}
void tst_QDom::toString_02_data()
{
save_data();
}
/*
Tests the new QDomDocument::toString(int) overload (basically the same test
as save()).
*/
void tst_QDom::toString_02()
{
QFETCH( QString, doc );
QFETCH( int, indent );
QDomDocument domDoc;
QVERIFY( domDoc.setContent( doc ) );
QTEST( domDoc.toString(indent), "res" );
}
void tst_QDom::hasAttributes_data()
{
QTest::addColumn<int>("visitedNodes");
QTest::addColumn<QByteArray>("xmlDoc");
QByteArray doc1("<top>Make a <blubb>stupid</blubb>, useless test sentence.</top>");
QByteArray doc2("<top a=\"a\">Make a <blubb a=\"a\">stupid</blubb>, useless test sentence.</top>");
QByteArray doc3("<!-- just a useless comment -->\n"
"<?pi foo bar?>\n"
"<foo>\n"
"<bar fnord=\"snafu\" hmpf=\"grmpf\">\n"
"<foobar/>\n"
"</bar>\n"
"<bar>blubber</bar>\n"
"more text, pretty unintresting, though\n"
"<hmpfl blubber=\"something\" />\n"
"<![CDATA[ foo bar @!<>] ]]>\n"
"</foo>\n"
"<!-- just a useless comment -->\n"
"<?pi foo bar?>\n");
QTest::newRow( "01" ) << 6 << doc1;
QTest::newRow( "02" ) << 6 << doc2;
QTest::newRow( "03" ) << 13 << doc3;
}
/*
This function tests that QDomNode::hasAttributes() returns true if and only
if the node has attributes (i.e. QDomNode::attributes() returns a list with
attributes in it).
*/
void tst_QDom::hasAttributes()
{
QFETCH( QByteArray, xmlDoc );
QDomDocument doc;
QVERIFY( doc.setContent( xmlDoc ) );
int visitedNodes = hasAttributesHelper( doc );
QTEST( visitedNodes, "visitedNodes" );
}
void tst_QDom::setGetAttributes()
{
QDomDocument doc;
QDomElement rootNode = doc.createElement("Root");
doc.appendChild(rootNode);
const QLocale oldLocale = QLocale();
QLocale::setDefault(QLocale::German); // decimal separator != '.'
const QString qstringVal("QString");
const qlonglong qlonglongVal = std::numeric_limits<qlonglong>::min();
const qulonglong qulonglongVal = std::numeric_limits<qulonglong>::max();
const int intVal = std::numeric_limits<int>::min();
const uint uintVal = std::numeric_limits<uint>::max();
const float floatVal = 0.1234f;
const double doubleVal1 = 1./6.;
const double doubleVal2 = std::nextafter(doubleVal1, 1.);
const double doubleVal3 = std::nextafter(doubleVal2, 1.);
rootNode.setAttribute("qstringVal", qstringVal);
rootNode.setAttribute("qlonglongVal", qlonglongVal);
rootNode.setAttribute("qulonglongVal", qulonglongVal);
rootNode.setAttribute("intVal", intVal);
rootNode.setAttribute("uintVal", uintVal);
rootNode.setAttribute("floatVal", floatVal);
rootNode.setAttribute("doubleVal1", doubleVal1);
rootNode.setAttribute("doubleVal2", doubleVal2);
rootNode.setAttribute("doubleVal3", doubleVal3);
QDomElement nsNode = doc.createElement("NS");
rootNode.appendChild(nsNode);
nsNode.setAttributeNS("namespace", "qstringVal", qstringVal);
nsNode.setAttributeNS("namespace", "qlonglongVal", qlonglongVal);
nsNode.setAttributeNS("namespace", "qulonglongVal", qulonglongVal);
nsNode.setAttributeNS("namespace", "intVal", intVal);
nsNode.setAttributeNS("namespace", "uintVal", uintVal);
nsNode.setAttributeNS("namespace", "floatVal", floatVal); // not available atm
nsNode.setAttributeNS("namespace", "doubleVal1", doubleVal1);
nsNode.setAttributeNS("namespace", "doubleVal2", doubleVal2);
nsNode.setAttributeNS("namespace", "doubleVal3", doubleVal3);
bool bOk;
QCOMPARE(rootNode.attribute("qstringVal"), qstringVal);
QCOMPARE(rootNode.attribute("qlonglongVal").toLongLong(&bOk), qlonglongVal);
QVERIFY(bOk);
QCOMPARE(rootNode.attribute("qulonglongVal").toULongLong(&bOk), qulonglongVal);
QVERIFY(bOk);
QCOMPARE(rootNode.attribute("intVal").toInt(&bOk), intVal);
QVERIFY(bOk);
QCOMPARE(rootNode.attribute("uintVal").toUInt(&bOk), uintVal);
QVERIFY(bOk);
QCOMPARE(rootNode.attribute("floatVal").toFloat(&bOk), floatVal);
QVERIFY(bOk);
QVERIFY(rootNode.attribute("doubleVal1").toDouble(&bOk) == doubleVal1 && bOk);
QVERIFY(rootNode.attribute("doubleVal2").toDouble(&bOk) == doubleVal2 && bOk);
QVERIFY(rootNode.attribute("doubleVal3").toDouble(&bOk) == doubleVal3 && bOk);
QCOMPARE(nsNode.attributeNS("namespace", "qstringVal"), qstringVal);
QCOMPARE(nsNode.attributeNS("namespace", "qlonglongVal").toLongLong(&bOk), qlonglongVal);
QVERIFY(bOk);
QCOMPARE(nsNode.attributeNS("namespace", "qulonglongVal").toULongLong(&bOk), qulonglongVal);
QVERIFY(bOk);
QCOMPARE(nsNode.attributeNS("namespace", "intVal").toInt(&bOk), intVal);
QVERIFY(bOk);
QCOMPARE(nsNode.attributeNS("namespace", "uintVal").toUInt(&bOk), uintVal);
QVERIFY(bOk);
QCOMPARE(nsNode.attributeNS("namespace", "floatVal").toFloat(&bOk), floatVal);
QVERIFY(bOk);
QVERIFY(nsNode.attributeNS("namespace", "doubleVal1").toDouble(&bOk) == doubleVal1 && bOk);
QVERIFY(nsNode.attributeNS("namespace", "doubleVal2").toDouble(&bOk) == doubleVal2 && bOk);
QVERIFY(nsNode.attributeNS("namespace", "doubleVal3").toDouble(&bOk) == doubleVal3 && bOk);
QLocale::setDefault(oldLocale);
}
int tst_QDom::hasAttributesHelper( const QDomNode& node )
{
int visitedNodes = 1;
if ( node.hasAttributes() ) {
if (node.attributes().count() == 0)
return -1;
// QVERIFY( node.attributes().count() > 0 );
} else {
if (node.attributes().count() != 0)
return -1;
// QVERIFY( node.attributes().count() == 0 );
}
QDomNodeList children = node.childNodes();
for ( int i=0; i<children.count(); i++ ) {
int j = hasAttributesHelper( children.item(i) );
if (j < 0)
return -1;
visitedNodes += j;
}
return visitedNodes;
}
void tst_QDom::save_data()
{
const QString doc01(
"<a1>\n"
" <b1>\n"
" <c1>\n"
" <d1/>\n"
" </c1>\n"
" <c2/>\n"
" </b1>\n"
" <b2/>\n"
" <b3>\n"
" <c1/>\n"
" </b3>\n"
"</a1>\n"
);
QTest::addColumn<QString>("doc");
QTest::addColumn<int>("indent");
QTest::addColumn<QString>("res");
QTest::newRow( "01" ) << doc01 << 0 << QString(doc01).replace( QRegExp(" "), "" );
QTest::newRow( "02" ) << doc01 << 1 << doc01;
QTest::newRow( "03" ) << doc01 << 2 << QString(doc01).replace( QRegExp(" "), " " );
QTest::newRow( "04" ) << doc01 << 10 << QString(doc01).replace( QRegExp(" "), " " );
}
void tst_QDom::save()
{
QFETCH( QString, doc );
QFETCH( int, indent );
QDomDocument domDoc;
QVERIFY( domDoc.setContent( doc ) );
QString eRes;
QTextStream ts( &eRes, QIODevice::WriteOnly );
domDoc.save( ts, indent );
QTEST( eRes, "res" );
}
void tst_QDom::initTestCase()
{
QString testFile = QFINDTESTDATA("testdata/testCodecs.txt");
if (testFile.isEmpty())
QFAIL("Cannot find testdata/testCodecs.txt");
QFile file(testFile);
QVERIFY(file.open(QIODevice::ReadOnly|QIODevice::Text));
QByteArray codecName;
m_testCodecs = file.readAll().split('\n');
if (m_testCodecs.last().isEmpty())
m_testCodecs.removeLast();
}
void tst_QDom::saveWithSerialization() const
{
QFETCH(QString, fileName);
QFile f(fileName);
QVERIFY(f.open(QIODevice::ReadOnly));
QDomDocument doc;
// Read the document
QVERIFY(doc.setContent(&f));
QByteArray codecName;
foreach (codecName, m_testCodecs) {
/* Write out doc in the specified codec. */
QByteArray storage;
QBuffer writeDevice(&storage);
QVERIFY(writeDevice.open(QIODevice::WriteOnly));
QTextStream s(&writeDevice);
QTextCodec *codec = QTextCodec::codecForName(codecName);
QVERIFY2(codec, qPrintable(QString::fromLatin1("Failed to load codec %1").arg(QString::fromLatin1(codecName.constData()))));
s.setCodec(codec);
doc.save(s, 0, QDomNode::EncodingFromTextStream);
s.flush();
writeDevice.close();
QBuffer readDevice(&storage);
QVERIFY(readDevice.open(QIODevice::ReadOnly));
QDomDocument result;
QString msg;
int line = 0;
int column = 0;
QVERIFY2(result.setContent(&readDevice, &msg, &line, &column),
qPrintable(QString::fromLatin1("Failed for codec %1: line %2, column %3: %4, content: %5")
.arg(QString::fromLatin1(codecName.constData()),
QString::number(line),
QString::number(column),
msg,
codec->toUnicode(storage))));
if(!compareDocuments(doc, result))
{
QCOMPARE(doc.toString(), result.toString());
/* We put this one here as well, in case the QCOMPARE above for some strange reason
* nevertheless succeeds. */
QVERIFY2(false, qPrintable(QString::fromLatin1("Failed for codec %1").arg(QString::fromLatin1(codecName.constData()))));
}
}
}
void tst_QDom::saveWithSerialization_data() const
{
QTest::addColumn<QString>("fileName");
const QString prefix = QFINDTESTDATA("testdata/toString_01");
if (prefix.isEmpty())
QFAIL("Cannot find testdata!");
QTest::newRow("doc01.xml") << QString(prefix + "/doc01.xml");
QTest::newRow("doc02.xml") << QString(prefix + "/doc02.xml");
QTest::newRow("doc03.xml") << QString(prefix + "/doc03.xml");
QTest::newRow("doc04.xml") << QString(prefix + "/doc04.xml");
QTest::newRow("doc05.xml") << QString(prefix + "/doc05.xml");
QTest::newRow("doc_euc-jp.xml") << QString(prefix + "/doc_euc-jp.xml");
QTest::newRow("doc_iso-2022-jp.xml") << QString(prefix + "/doc_iso-2022-jp.xml");
QTest::newRow("doc_little-endian.xml") << QString(prefix + "/doc_little-endian.xml");
QTest::newRow("doc_utf-16.xml") << QString(prefix + "/doc_utf-16.xml");
QTest::newRow("doc_utf-8.xml") << QString(prefix + "/doc_utf-8.xml");
}
void tst_QDom::cloneNode_data()
{
const QString doc01(
"<a1>\n"
" <b1>\n"
" <c1>\n"
" <d1/>\n"
" </c1>\n"
" <c2/>\n"
" </b1>\n"
" <b2/>\n"
" <b3>\n"
" <c1/>\n"
" </b3>\n"
"</a1>\n"
);
QList<QVariant> nodeB1;
nodeB1 << 0;
QList<QVariant> nodeC1;
nodeC1 << 0 << 0;
QList<QVariant> nodeC2;
nodeC2 << 0 << 1;
QTest::addColumn<QString>("doc");
QTest::addColumn<QList<QVariant> >("pathToNode");
QTest::addColumn<bool>("deep");
QTest::newRow( "noDeep_01" ) << doc01 << nodeB1 << false;
QTest::newRow( "noDeep_02" ) << doc01 << nodeC1 << false;
QTest::newRow( "noDeep_03" ) << doc01 << nodeC2 << false;
QTest::newRow( "deep_01" ) << doc01 << nodeB1 << true;
QTest::newRow( "deep_02" ) << doc01 << nodeC1 << true;
QTest::newRow( "deep_03" ) << doc01 << nodeC2 << true;
}
void tst_QDom::cloneNode()
{
QFETCH( QString, doc );
QFETCH( QList<QVariant>, pathToNode );
QFETCH( bool, deep );
QDomDocument domDoc;
QVERIFY( domDoc.setContent( doc ) );
QDomNode node = findDomNode( domDoc, pathToNode );
QVERIFY(!node.isNull());
QDomNode clonedNode = node.cloneNode( deep );
QVERIFY( compareNodes( node, clonedNode, deep ) );
QDomNode parent = node.parentNode();
if ( !parent.isNull() ) {
node = parent.replaceChild( clonedNode, node ); // swap the nodes
QVERIFY( !node.isNull() );
QVERIFY( compareNodes( node, clonedNode, deep ) );
}
}
void tst_QDom::ownerElementTask45192_data()
{
const QString doc(
"<root>\n"
" <item name=\"test\" >\n"
" </item>\n"
"</root>"
);
QTest::addColumn<QString>("doc");
QTest::newRow("doc") << doc;
}
void tst_QDom::ownerElementTask45192()
{
QFETCH( QString, doc );
QDomDocument domDoc;
QVERIFY( domDoc.setContent( doc ) );
QDomNode item = domDoc.documentElement().firstChild();
QDomNode clone = item.cloneNode(false);
QVERIFY( clone == clone.attributes().namedItem("name").toAttr().ownerElement() );
}
void tst_QDom::ownerDocument_data()
{
cloneNode_data();
}
#define OWNERDOCUMENT_CREATE_TEST( t, x ) \
{ \
t n = x; \
QVERIFY( n.ownerDocument() == domDoc ); \
}
#define OWNERDOCUMENT_IMPORTNODE_TEST( t, x ) \
{ \
QDomNode importedNode; \
t n = x; \
QVERIFY( n.ownerDocument() != domDoc ); \
importedNode = domDoc.importNode( n, deep ); \
QVERIFY( n.ownerDocument() != domDoc ); \
QVERIFY( importedNode.ownerDocument() == domDoc ); \
}
void tst_QDom::ownerDocument()
{
QFETCH( QString, doc );
QFETCH( QList<QVariant>, pathToNode );
QFETCH( bool, deep );
QDomDocument domDoc;
QVERIFY( domDoc.setContent( doc ) );
QDomNode node = findDomNode( domDoc, pathToNode );
QVERIFY(!node.isNull());
QVERIFY( node.ownerDocument() == domDoc );
// Does cloneNode() keep the ownerDocument()?
{
QDomNode clonedNode = node.cloneNode( deep );
QVERIFY( node.ownerDocument() == domDoc );
QVERIFY( clonedNode.ownerDocument() == domDoc );
}
// If the original DOM node is replaced with the cloned node, does this
// keep the ownerDocument()?
{
QDomNode clonedNode = node.cloneNode( deep );
QDomNode parent = node.parentNode();
if ( !parent.isNull() ) {
node = parent.replaceChild( clonedNode, node ); // swap the nodes
QVERIFY( node.ownerDocument() == domDoc );
QVERIFY( clonedNode.ownerDocument() == domDoc );
}
}
// test QDomDocument::create...()
{
OWNERDOCUMENT_CREATE_TEST( QDomAttr, domDoc.createAttribute( "foo" ) );
OWNERDOCUMENT_CREATE_TEST( QDomAttr, domDoc.createAttributeNS( "foo", "bar" ) );
OWNERDOCUMENT_CREATE_TEST( QDomCDATASection, domDoc.createCDATASection( "foo" ) );
OWNERDOCUMENT_CREATE_TEST( QDomComment, domDoc.createComment( "foo" ) );
OWNERDOCUMENT_CREATE_TEST( QDomDocumentFragment, domDoc.createDocumentFragment() );
OWNERDOCUMENT_CREATE_TEST( QDomElement, domDoc.createElement( "foo" ) );
OWNERDOCUMENT_CREATE_TEST( QDomElement, domDoc.createElementNS( "foo", "bar" ) );
OWNERDOCUMENT_CREATE_TEST( QDomEntityReference, domDoc.createEntityReference( "foo" ) );
OWNERDOCUMENT_CREATE_TEST( QDomProcessingInstruction, domDoc.createProcessingInstruction( "foo", "bar" ) );
OWNERDOCUMENT_CREATE_TEST( QDomText, domDoc.createTextNode( "foo" ) );
}
// test importNode()
{
QDomDocument doc2;
OWNERDOCUMENT_IMPORTNODE_TEST( QDomAttr, doc2.createAttribute( "foo" ) );
OWNERDOCUMENT_IMPORTNODE_TEST( QDomAttr, doc2.createAttributeNS( "foo", "bar" ) );
OWNERDOCUMENT_IMPORTNODE_TEST( QDomCDATASection, doc2.createCDATASection( "foo" ) );
OWNERDOCUMENT_IMPORTNODE_TEST( QDomComment, doc2.createComment( "foo" ) );
OWNERDOCUMENT_IMPORTNODE_TEST( QDomDocumentFragment, doc2.createDocumentFragment() );
OWNERDOCUMENT_IMPORTNODE_TEST( QDomElement, doc2.createElement( "foo" ) );
OWNERDOCUMENT_IMPORTNODE_TEST( QDomElement, doc2.createElementNS( "foo", "bar" ) );
OWNERDOCUMENT_IMPORTNODE_TEST( QDomEntityReference, doc2.createEntityReference( "foo" ) );
OWNERDOCUMENT_IMPORTNODE_TEST( QDomProcessingInstruction, doc2.createProcessingInstruction( "foo", "bar" ) );
OWNERDOCUMENT_IMPORTNODE_TEST( QDomText, doc2.createTextNode( "foo" ) );
// QTBUG-12927
QVERIFY(doc2.importNode(QDomNode(), deep).isNull());
}
}
void tst_QDom::ownerDocumentTask27424_data()
{
QTest::addColumn<bool>("insertLevel1AfterCstr");
QTest::addColumn<bool>("insertLevel2AfterCstr");
QTest::addColumn<bool>("insertLevel3AfterCstr");
QTest::newRow( "000" ) << false << false << false;
QTest::newRow( "001" ) << false << false << true;
QTest::newRow( "010" ) << false << true << false;
QTest::newRow( "011" ) << false << true << true;
QTest::newRow( "100" ) << true << false << false;
QTest::newRow( "101" ) << true << false << true;
QTest::newRow( "110" ) << true << true << false;
QTest::newRow( "111" ) << true << true << true;
}
void tst_QDom::ownerDocumentTask27424()
{
QFETCH( bool, insertLevel1AfterCstr );
QFETCH( bool, insertLevel2AfterCstr );
QFETCH( bool, insertLevel3AfterCstr );
QDomDocument doc("TestXML");
QDomElement level1 = doc.createElement("Level_1");
QVERIFY( level1.ownerDocument() == doc );
if ( insertLevel1AfterCstr ) {
doc.appendChild(level1);
QVERIFY( level1.ownerDocument() == doc );
}
QDomElement level2 = level1.ownerDocument().createElement("Level_2");
QVERIFY( level1.ownerDocument() == doc );
QVERIFY( level2.ownerDocument() == doc );
if ( insertLevel2AfterCstr ) {
level1.appendChild(level2);
QVERIFY( level1.ownerDocument() == doc );
QVERIFY( level2.ownerDocument() == doc );
}
QDomElement level3 = level2.ownerDocument().createElement("Level_3");
QVERIFY( level1.ownerDocument() == doc );
QVERIFY( level2.ownerDocument() == doc );
QVERIFY( level3.ownerDocument() == doc );
if ( insertLevel3AfterCstr ) {
level2.appendChild(level3);
QVERIFY( level1.ownerDocument() == doc );
QVERIFY( level2.ownerDocument() == doc );
QVERIFY( level3.ownerDocument() == doc );
}
QDomNode level4 = level3.ownerDocument().createTextNode("This_is_a_value!");
QVERIFY( level4.ownerDocument() == doc );
level3.appendChild(level4);
QVERIFY( level1.ownerDocument() == doc );
QVERIFY( level2.ownerDocument() == doc );
QVERIFY( level3.ownerDocument() == doc );
QVERIFY( level4.ownerDocument() == doc );
if ( !insertLevel3AfterCstr ) {
level2.appendChild(level3);
QVERIFY( level1.ownerDocument() == doc );
QVERIFY( level2.ownerDocument() == doc );
QVERIFY( level3.ownerDocument() == doc );
QVERIFY( level4.ownerDocument() == doc );
}
if ( !insertLevel2AfterCstr ) {
level1.appendChild(level2);
QVERIFY( level1.ownerDocument() == doc );
QVERIFY( level2.ownerDocument() == doc );
QVERIFY( level3.ownerDocument() == doc );
QVERIFY( level4.ownerDocument() == doc );
}
if ( !insertLevel1AfterCstr ) {
doc.appendChild(level1);
QVERIFY( level1.ownerDocument() == doc );
QVERIFY( level2.ownerDocument() == doc );
QVERIFY( level3.ownerDocument() == doc );
QVERIFY( level4.ownerDocument() == doc );
}
}
void tst_QDom::parentNode_data()
{
cloneNode_data();
}
#define PARENTNODE_CREATE_TEST( t, x ) \
{ \
t n = x; \
QVERIFY( n.parentNode().isNull() ); \
}
void tst_QDom::parentNode()
{
QFETCH( QString, doc );
QFETCH( QList<QVariant>, pathToNode );
QFETCH( bool, deep );
QDomDocument domDoc;
QVERIFY( domDoc.setContent( doc ) );
QDomNode node = findDomNode( domDoc, pathToNode );
QVERIFY(!node.isNull());
Q_UNUSED(deep);
// test QDomDocument::create...()
{
PARENTNODE_CREATE_TEST( QDomAttr, domDoc.createAttribute( "foo" ) );
PARENTNODE_CREATE_TEST( QDomAttr, domDoc.createAttributeNS( "foo", "bar" ) );
PARENTNODE_CREATE_TEST( QDomCDATASection, domDoc.createCDATASection( "foo" ) );
PARENTNODE_CREATE_TEST( QDomComment, domDoc.createComment( "foo" ) );
PARENTNODE_CREATE_TEST( QDomDocumentFragment, domDoc.createDocumentFragment() );
PARENTNODE_CREATE_TEST( QDomElement, domDoc.createElement( "foo" ) );
PARENTNODE_CREATE_TEST( QDomElement, domDoc.createElementNS( "foo", "bar" ) );
PARENTNODE_CREATE_TEST( QDomEntityReference, domDoc.createEntityReference( "foo" ) );
PARENTNODE_CREATE_TEST( QDomProcessingInstruction, domDoc.createProcessingInstruction( "foo", "bar" ) );
PARENTNODE_CREATE_TEST( QDomText, domDoc.createTextNode( "foo" ) );
}
}
void tst_QDom::documentCreationTask27424_data()
{
QTest::addColumn<bool>("insertLevel1AfterCstr");
QTest::addColumn<bool>("insertLevel2AfterCstr");
QTest::addColumn<bool>("insertLevel3AfterCstr");
QTest::newRow( "000" ) << false << false << false;
QTest::newRow( "001" ) << false << false << true;
QTest::newRow( "010" ) << false << true << false;
QTest::newRow( "011" ) << false << true << true;
QTest::newRow( "100" ) << true << false << false;
QTest::newRow( "101" ) << true << false << true;
QTest::newRow( "110" ) << true << true << false;
QTest::newRow( "111" ) << true << true << true;
}
void tst_QDom::documentCreationTask27424()
{
QFETCH( bool, insertLevel1AfterCstr );
QFETCH( bool, insertLevel2AfterCstr );
QFETCH( bool, insertLevel3AfterCstr );
QDomDocument docRes;
QVERIFY( docRes.setContent( QString(
"<!DOCTYPE TestXML>\n"
"<Level_1>\n"
" <Level_2>\n"
" <Level_3>This_is_a_value!</Level_3>\n"
" </Level_2>\n"
"</Level_1>"
) ) );
QDomDocument doc("TestXML");
QDomElement level1 = doc.createElement("Level_1");
if ( insertLevel1AfterCstr )
doc.appendChild(level1);
QDomElement level2 = level1.ownerDocument().createElement("Level_2");
if ( insertLevel2AfterCstr )
level1.appendChild(level2);
QDomElement level3 = level2.ownerDocument().createElement("Level_3");
if ( insertLevel3AfterCstr )
level2.appendChild(level3);
QDomNode level4 = level3.ownerDocument().createTextNode("This_is_a_value!");
level3.appendChild(level4);
if ( !insertLevel3AfterCstr )
level2.appendChild(level3);
if ( !insertLevel2AfterCstr )
level1.appendChild(level2);
if ( !insertLevel1AfterCstr )
doc.appendChild(level1);
QVERIFY( compareDocuments( doc, docRes ) );
}
bool tst_QDom::isFakeXMLDeclaration(const QDomNode &node)
{
return node.isProcessingInstruction() &&
node.nodeName() == QLatin1String("xml");
}
bool tst_QDom::isDeepEqual(const QDomNode &n1, const QDomNode &n2)
{
const QDomNode::NodeType nt = n1.nodeType();
if(nt != n2.nodeType())
return false;
if(n1.nodeName() != n2.nodeName()
|| n1.namespaceURI() != n2.namespaceURI()
|| n1.nodeValue() != n2.nodeValue())
return false;
/* Check the children. */
const QDomNodeList children1(n1.childNodes());
const QDomNodeList children2(n2.childNodes());
uint len1 = children1.length();
uint len2 = children2.length();
uint i1 = 0;
uint i2 = 0;
if(len1 != 0 && isFakeXMLDeclaration(children1.at(0)))
++i1;
if(len2 != 0 && isFakeXMLDeclaration(children2.at(0)))
++i2;
if(len1 - i1 != len2 - i2)
return false;
// We jump over the first to skip the processing instructions that
// are (incorrectly) used as XML declarations.
for(; i1 < len1; ++i1)
{
if(!isDeepEqual(children1.at(i1), children2.at(i2)))
return false;
++i2;
}
return true;
}
/*
Returns true if \a doc1 and \a doc2 represent the same XML document, i.e.
they have the same informational content. Otherwise, this function returns
false.
*/
bool tst_QDom::compareDocuments( const QDomDocument &doc1, const QDomDocument &doc2 )
{
return isDeepEqual(doc1, doc2);
}
/*
Returns true if \a node1 and \a node2 represent the same XML node, i.e.
they have the same informational content. Otherwise, this function returns
false.
If \a deep is true, children of the nodes are also tested. If \a deep is
false, only \a node1 and \a node 2 are compared.
*/
bool tst_QDom::compareNodes( const QDomNode &node1, const QDomNode &node2, bool deep )
{
if ( deep ) {
QString str1;
{
QTextStream stream( &str1 );
stream << node1;
}
QString str2;
{
QTextStream stream( &str2 );
stream << node2;
}
return str1 == str2;
}
if ( node1.isNull() && node2.isNull() )
return true;
// ### I am not sure if this test is complete
bool equal = node1.nodeName() == node2.nodeName();
equal = equal && node1.nodeType() == node2.nodeType();
equal = equal && node1.localName() == node2.localName();
equal = equal && node1.nodeValue() == node2.nodeValue();
equal = equal && node1.prefix() == node2.prefix();
return equal;
}
/*
\a pathToNode is a list of indices to wanted node in \a doc. Returns the
wanted node.
*/
QDomNode tst_QDom::findDomNode( const QDomDocument &doc, const QList<QVariant> &pathToNode )
{
QDomNode node = doc;
QList<QVariant>::const_iterator it;
for ( it = pathToNode.begin(); it != pathToNode.end(); ++it ) {
QDomNodeList children = node.childNodes();
node = children.item( (*it).toInt() );
// QVERIFY( !node.isNull() );
}
return node;
}
void tst_QDom::browseElements()
{
QDomDocument doc;
QDomElement root = doc.createElement("foo");
doc.appendChild(root);
root.appendChild(doc.createElement("bar"));
root.appendChild(doc.createElement("bop"));
root.appendChild(doc.createElement("bar"));
root.appendChild(doc.createElement("bop"));
QVERIFY(doc.firstChildElement("ding").isNull());
QDomElement foo = doc.firstChildElement("foo");
QVERIFY(!foo.isNull());
QVERIFY(foo.firstChildElement("ding").isNull());
QVERIFY(foo.nextSiblingElement("foo").isNull());
QVERIFY(foo.previousSiblingElement("bar").isNull());
QVERIFY(foo.nextSiblingElement().isNull());
QVERIFY(foo.previousSiblingElement().isNull());
QDomElement bar = foo.firstChildElement("bar");
QVERIFY(!bar.isNull());
QVERIFY(bar.previousSiblingElement("bar").isNull());
QVERIFY(bar.previousSiblingElement().isNull());
QCOMPARE(bar.nextSiblingElement("bar").tagName(), QLatin1String("bar"));
QVERIFY(bar.nextSiblingElement("bar").nextSiblingElement("bar").isNull());
QDomElement bop = foo.firstChildElement("bop");
QVERIFY(!bop.isNull());
QCOMPARE(bar.nextSiblingElement(), bop);
QCOMPARE(bop.nextSiblingElement("bop"), foo.lastChildElement("bop"));
QCOMPARE(bop.previousSiblingElement("bar"), foo.firstChildElement("bar"));
QCOMPARE(bop.previousSiblingElement("bar"), foo.firstChildElement());
}
void tst_QDom::domNodeMapAndList()
{
QString xml_str = QString::fromLatin1("<foo ding='dong'></foo>");
QDomDocument doc;
QVERIFY(doc.setContent(xml_str));
QDomNamedNodeMap map = doc.documentElement().attributes();
QCOMPARE(map.item(0).nodeName(), QString("ding"));
QCOMPARE(map.item(1).nodeName(), QString()); // Make sure we don't assert
QDomNodeList list = doc.elementsByTagName("foo");
QCOMPARE(list.item(0).nodeName(), QString("foo"));
QCOMPARE(list.item(1).nodeName(), QString()); // Make sure we don't assert
}
// Verifies that a default-constructed QDomDocument is null, and that calling
// any of the factory functions causes it to be non-null.
#define TEST_NULL_DOCUMENT(func) \
{ \
QDomDocument doc; \
QVERIFY(doc.isNull()); \
QVERIFY(!doc.func.isNull()); \
QVERIFY(!doc.isNull()); \
}
void tst_QDom::nullDocument()
{
TEST_NULL_DOCUMENT(createAttribute("foo"))
TEST_NULL_DOCUMENT(createAttributeNS("http://foo/", "bar"))
TEST_NULL_DOCUMENT(createCDATASection("foo"))
TEST_NULL_DOCUMENT(createComment("foo"))
TEST_NULL_DOCUMENT(createDocumentFragment())
TEST_NULL_DOCUMENT(createElement("foo"))
TEST_NULL_DOCUMENT(createElementNS("http://foo/", "foo"))
TEST_NULL_DOCUMENT(createEntityReference("foo"))
TEST_NULL_DOCUMENT(createProcessingInstruction("foo", "bar"))
TEST_NULL_DOCUMENT(createTextNode("foo"))
QDomDocument doc2;
QDomElement elt = doc2.createElement("foo");
doc2.appendChild(elt);
TEST_NULL_DOCUMENT(importNode(elt, true))
}
#undef TEST_NULL_DOCUMENT
void tst_QDom::invalidName_data()
{
QTest::addColumn<QString>("in_name");
QTest::addColumn<bool>("ok_AcceptInvalidChars");
QTest::addColumn<bool>("ok_DropInvalidChars");
QTest::addColumn<bool>("ok_ReturnNullNode");
QTest::addColumn<QString>("out_name");
QTest::newRow( "foo" ) << QString("foo") << true << true << true << QString("foo");
QTest::newRow( "_f.o-o:" ) << QString("_f.o-o:") << true << true << true << QString("_f.o-o:");
QTest::newRow( "...:." ) << QString("...:.") << true << true << false << QString(":.");
QTest::newRow( "empty" ) << QString() << false << false << false << QString();
QTest::newRow( "~f~o~o~" ) << QString("~f~o~o~") << true << true << false << QString("foo");
QTest::newRow( "~" ) << QString("~") << true << false << false << QString();
QTest::newRow( "..." ) << QString("...") << true << false << false << QString();
}
void tst_QDom::invalidName()
{
QFETCH( QString, in_name );
QFETCH( bool, ok_AcceptInvalidChars );
QFETCH( bool, ok_DropInvalidChars );
QFETCH( bool, ok_ReturnNullNode );
QFETCH( QString, out_name );
QDomImplementation impl;
QDomDocument doc;
QDomImplementation::setInvalidDataPolicy(QDomImplementation::AcceptInvalidChars);
{
QDomElement elt = doc.createElement(in_name);
QDomElement elt_ns = doc.createElementNS("foo", "foo:" + in_name);
QDomAttr attr = doc.createAttribute(in_name);
QDomAttr attr_ns = doc.createAttributeNS("foo", "foo:" + in_name);
QDomEntityReference ref = doc.createEntityReference(in_name);
QCOMPARE(!elt.isNull(), ok_AcceptInvalidChars);
QCOMPARE(!elt_ns.isNull(), ok_AcceptInvalidChars);
QCOMPARE(!attr.isNull(), ok_AcceptInvalidChars);
QCOMPARE(!attr_ns.isNull(), ok_AcceptInvalidChars);
QCOMPARE(!ref.isNull(), ok_AcceptInvalidChars);
if (ok_AcceptInvalidChars) {
QCOMPARE(elt.tagName(), in_name);
QCOMPARE(elt_ns.tagName(), in_name);
QCOMPARE(attr.name(), in_name);
QCOMPARE(attr_ns.name(), in_name);
QCOMPARE(ref.nodeName(), in_name);
}
}
QDomImplementation::setInvalidDataPolicy(QDomImplementation::DropInvalidChars);
{
QDomElement elt = doc.createElement(in_name);
QDomElement elt_ns = doc.createElementNS("foo", "foo:" + in_name);
QDomAttr attr = doc.createAttribute(in_name);
QDomAttr attr_ns = doc.createAttributeNS("foo", "foo:" + in_name);
QDomEntityReference ref = doc.createEntityReference(in_name);
QCOMPARE(!elt.isNull(), ok_DropInvalidChars);
QCOMPARE(!elt_ns.isNull(), ok_DropInvalidChars);
QCOMPARE(!attr.isNull(), ok_DropInvalidChars);
QCOMPARE(!attr_ns.isNull(), ok_DropInvalidChars);
QCOMPARE(!ref.isNull(), ok_DropInvalidChars);
if (ok_DropInvalidChars) {
QCOMPARE(elt.tagName(), out_name);
QCOMPARE(elt_ns.tagName(), out_name);
QCOMPARE(attr.name(), out_name);
QCOMPARE(attr_ns.name(), out_name);
QCOMPARE(ref.nodeName(), out_name);
}
}
QDomImplementation::setInvalidDataPolicy(QDomImplementation::ReturnNullNode);
{
QDomElement elt = doc.createElement(in_name);
QDomElement elt_ns = doc.createElementNS("foo", "foo:" + in_name);
QDomAttr attr = doc.createAttribute(in_name);
QDomAttr attr_ns = doc.createAttributeNS("foo", "foo:" + in_name);
QDomEntityReference ref = doc.createEntityReference(in_name);
QCOMPARE(!elt.isNull(), ok_ReturnNullNode);
QCOMPARE(!elt_ns.isNull(), ok_ReturnNullNode);
QCOMPARE(!attr.isNull(), ok_ReturnNullNode);
QCOMPARE(!attr_ns.isNull(), ok_ReturnNullNode);
QCOMPARE(!ref.isNull(), ok_ReturnNullNode);
if (ok_ReturnNullNode) {
QCOMPARE(elt.tagName(), in_name);
QCOMPARE(elt_ns.tagName(), in_name);
QCOMPARE(attr.name(), in_name);
QCOMPARE(attr_ns.name(), in_name);
QCOMPARE(ref.nodeName(), in_name);
}
}
}
void tst_QDom::invalidQualifiedName_data()
{
QTest::addColumn<QString>("in_name");
QTest::addColumn<bool>("ok_AcceptInvalidChars");
QTest::addColumn<bool>("ok_DropInvalidChars");
QTest::addColumn<bool>("ok_ReturnNullNode");
QTest::addColumn<QString>("out_name");
QTest::newRow( "foo" ) << QString("foo") << true << true << true << QString("foo");
QTest::newRow( "foo:bar" ) << QString("foo:bar") << true << true << true << QString("foo:bar");
QTest::newRow( "bar:" ) << QString("bar:") << false << false << false << QString();
QTest::newRow( ":" ) << QString(":") << false << false << false << QString();
QTest::newRow( "empty" ) << QString() << false << false << false << QString();
QTest::newRow("foo:...:.") << QString("foo:...:.")<< true << true << false << QString("foo::.");
QTest::newRow("foo:~") << QString("foo:~") << true << false << false << QString();
QTest::newRow("foo:.~") << QString("foo:.~") << true << false << false << QString();
}
void tst_QDom::invalidQualifiedName()
{
QFETCH( QString, in_name );
QFETCH( bool, ok_AcceptInvalidChars );
QFETCH( bool, ok_DropInvalidChars );
QFETCH( bool, ok_ReturnNullNode );
QFETCH( QString, out_name );
QDomImplementation impl;
QDomDocument doc;
QDomImplementation::setInvalidDataPolicy(QDomImplementation::AcceptInvalidChars);
{
QDomElement elt_ns = doc.createElementNS("foo", in_name);
QDomAttr attr_ns = doc.createAttributeNS("foo", in_name);
QDomDocumentType doctype = impl.createDocumentType(in_name, "foo", "bar");
QDomDocument doc2 = impl.createDocument("foo", in_name, doctype);
QCOMPARE(!elt_ns.isNull(), ok_AcceptInvalidChars);
QCOMPARE(!attr_ns.isNull(), ok_AcceptInvalidChars);
QCOMPARE(!doctype.isNull(), ok_AcceptInvalidChars);
QCOMPARE(!doc2.isNull(), ok_AcceptInvalidChars);
if (ok_AcceptInvalidChars) {
QCOMPARE(elt_ns.nodeName(), in_name);
QCOMPARE(attr_ns.nodeName(), in_name);
QCOMPARE(doctype.name(), in_name);
QCOMPARE(doc2.documentElement().nodeName(), in_name);
}
}
QDomImplementation::setInvalidDataPolicy(QDomImplementation::DropInvalidChars);
{
QDomElement elt_ns = doc.createElementNS("foo", in_name);
QDomAttr attr_ns = doc.createAttributeNS("foo", in_name);
QDomDocumentType doctype = impl.createDocumentType(in_name, "foo", "bar");
QDomDocument doc2 = impl.createDocument("foo", in_name, doctype);
QCOMPARE(!elt_ns.isNull(), ok_DropInvalidChars);
QCOMPARE(!attr_ns.isNull(), ok_DropInvalidChars);
QCOMPARE(!doctype.isNull(), ok_DropInvalidChars);
QCOMPARE(!doc2.isNull(), ok_DropInvalidChars);
if (ok_DropInvalidChars) {
QCOMPARE(elt_ns.nodeName(), out_name);
QCOMPARE(attr_ns.nodeName(), out_name);
QCOMPARE(doctype.name(), out_name);
QCOMPARE(doc2.documentElement().nodeName(), out_name);
}
}
QDomImplementation::setInvalidDataPolicy(QDomImplementation::ReturnNullNode);
{
QDomElement elt_ns = doc.createElementNS("foo", in_name);
QDomAttr attr_ns = doc.createAttributeNS("foo", in_name);
QDomDocumentType doctype = impl.createDocumentType(in_name, "foo", "bar");
QDomDocument doc2 = impl.createDocument("foo", in_name, doctype);
QCOMPARE(!elt_ns.isNull(), ok_ReturnNullNode);
QCOMPARE(!attr_ns.isNull(), ok_ReturnNullNode);
QCOMPARE(!doctype.isNull(), ok_ReturnNullNode);
QCOMPARE(!doc2.isNull(), ok_ReturnNullNode);
if (ok_ReturnNullNode) {
QCOMPARE(elt_ns.nodeName(), in_name);
QCOMPARE(attr_ns.nodeName(), in_name);
QCOMPARE(doctype.name(), in_name);
QCOMPARE(doc2.documentElement().nodeName(), in_name);
}
}
}
void tst_QDom::invalidCharData_data()
{
QTest::addColumn<QString>("in_text");
QTest::addColumn<bool>("ok_AcceptInvalidChars");
QTest::addColumn<bool>("ok_DropInvalidChars");
QTest::addColumn<bool>("ok_ReturnNullNode");
QTest::addColumn<QString>("out_text");
QTest::newRow( "foo" ) << QString("foo") << true << true << true << QString("foo");
QTest::newRow( "f<o&o" ) << QString("f<o&o") << true << true << true << QString("f<o&o");
QTest::newRow( "empty" ) << QString() << true << true << true << QString();
QTest::newRow("f\\x07o\\x02")<< QString("f\x07o\x02")<< true << true << false << QString("fo");
const QChar pair[2] = { QChar(0xdc00), QChar(0xe000) };
QString invalid(pair, 2);
QTest::newRow("\\xdc00\\xe000") << invalid << true << true << false << invalid.right(1);
}
void tst_QDom::invalidCharData()
{
QFETCH( QString, in_text );
QFETCH( bool, ok_AcceptInvalidChars );
QFETCH( bool, ok_DropInvalidChars );
QFETCH( bool, ok_ReturnNullNode );
QFETCH( QString, out_text );
QDomDocument doc;
QDomImplementation::setInvalidDataPolicy(QDomImplementation::AcceptInvalidChars);
{
QDomText text_elt = doc.createTextNode(in_text);
QCOMPARE(!text_elt.isNull(), ok_AcceptInvalidChars);
if (ok_AcceptInvalidChars) {
QCOMPARE(text_elt.nodeValue(), in_text);
}
}
QDomImplementation::setInvalidDataPolicy(QDomImplementation::DropInvalidChars);
{
QDomText text_elt = doc.createTextNode(in_text);
QCOMPARE(!text_elt.isNull(), ok_DropInvalidChars);
if (ok_DropInvalidChars) {
QCOMPARE(text_elt.nodeValue(), out_text);
}
}
QDomImplementation::setInvalidDataPolicy(QDomImplementation::ReturnNullNode);
{
QDomText text_elt = doc.createTextNode(in_text);
QCOMPARE(!text_elt.isNull(), ok_ReturnNullNode);
if (ok_ReturnNullNode) {
QCOMPARE(text_elt.nodeValue(), in_text);
}
}
}
void tst_QDom::nonBMPCharacters()
{
const auto invalidDataPolicy = QDomImplementation::invalidDataPolicy();
auto resetInvalidDataPolicy = qScopeGuard(
[invalidDataPolicy] { QDomImplementation::setInvalidDataPolicy(invalidDataPolicy); });
QDomImplementation::setInvalidDataPolicy(QDomImplementation::DropInvalidChars);
const QString input = QStringLiteral("<text>Supplementary Plane: 𝄞 😂 🀄 🀶 🃪 🃋</text>");
QString errorMsg;
QDomDocument doc;
doc.setContent(input, &errorMsg);
QVERIFY(errorMsg.isEmpty());
QCOMPARE(doc.toString(-1), input);
}
void tst_QDom::roundTripAttributes() const
{
/* Create an attribute via the QDom API with weird whitespace content. */
QDomImplementation impl;
QDomDocument doc(impl.createDocument("", "localName", QDomDocumentType()));
QDomElement e(doc.documentElement());
QString ws;
ws.reserve(8);
ws.append(QChar(0x20));
ws.append(QChar(0x20));
ws.append(QChar(0x20));
ws.append(QChar(0xD));
ws.append(QChar(0xA));
ws.append(QChar(0x9));
ws.append(QChar(0x20));
ws.append(QChar(0x20));
e.setAttribute("attr", ws);
QByteArray serialized;
QBuffer buffer(&serialized);
buffer.open(QIODevice::WriteOnly);
QTextStream stream(&buffer);
doc.save(stream, 0);
stream.flush();
const QByteArray expected("<localName xmlns=\"\" attr=\" 
	 \"/>\n");
QCOMPARE(QString::fromLatin1(serialized.constData()), QString::fromLatin1(expected.constData()));
}
void tst_QDom::normalizeEndOfLine() const
{
QByteArray input("<a>\r\nc\rc\ra\na</a>");
QBuffer buffer(&input);
QVERIFY(buffer.open(QIODevice::ReadOnly));
QDomDocument doc;
QVERIFY(doc.setContent(&buffer, true));
const QString expected(QLatin1String("<a>\nc\nc\na\na</a>"));
// ### Qt 6: fix this, if we keep QDom at all
QEXPECT_FAIL("", "The parser doesn't perform newline normalization. Fixing that would change behavior.", Continue);
QCOMPARE(doc.documentElement().text(), expected);
}
void tst_QDom::normalizeAttributes() const
{
QByteArray data("<element attribute=\"a\na\"/>");
QBuffer buffer(&data);
QVERIFY(buffer.open(QIODevice::ReadOnly));
QDomDocument doc;
QVERIFY(doc.setContent(&buffer, true));
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && QT_DEPRECATED_SINCE(5, 15)
QEXPECT_FAIL("", "The parser doesn't perform Attribute Value Normalization. Fixing that would change behavior.", Continue);
#endif
QCOMPARE(doc.documentElement().attribute(QLatin1String("attribute")), QString::fromLatin1("a a"));
}
void tst_QDom::serializeWeirdEOL() const
{
QDomImplementation impl;
QDomDocument doc(impl.createDocument("", "name", QDomDocumentType()));
QDomElement ele(doc.documentElement());
ele.appendChild(doc.createTextNode(QLatin1String("\r\nasd\nasd\rasd\n")));
QByteArray output;
QBuffer writeBuffer(&output);
QVERIFY(writeBuffer.open(QIODevice::WriteOnly));
QTextStream stream(&writeBuffer);
const QByteArray expected("<name xmlns=\"\">
\nasd\nasd
asd\n</name>\n");
doc.save(stream, 0);
QCOMPARE(QString::fromLatin1(output.constData()), QString::fromLatin1(expected.constData()));
}
void tst_QDom::reparentAttribute() const
{
QDomImplementation impl;
QDomDocument doc(impl.createDocument("", "localName", QDomDocumentType()));
QDomElement ele(doc.documentElement());
QDomAttr attr(doc.createAttribute("localName"));
ele.setAttributeNode(attr);
QVERIFY(attr.ownerElement() == ele);
QVERIFY(attr.parentNode() == ele);
}
void tst_QDom::serializeNamespaces() const
{
const char *const input = "<doc xmlns:b='http://example.com/'>"
"<b:element b:name=''/>"
"</doc>";
QDomDocument doc;
QByteArray ba(input);
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && QT_DEPRECATED_SINCE(5, 15)
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
QBuffer buffer(&ba);
QVERIFY(buffer.open(QIODevice::ReadOnly));
QXmlInputSource source(&buffer);
QXmlSimpleReader reader;
reader.setFeature("http://xml.org/sax/features/namespaces", true);
reader.setFeature("http://xml.org/sax/features/namespace-prefixes", false);
QVERIFY(doc.setContent(&source, &reader));
QT_WARNING_POP
#else
QXmlStreamReader streamReader(input);
QVERIFY(doc.setContent(&streamReader, true));
#endif
const QByteArray serialized(doc.toByteArray());
QDomDocument doc2;
QVERIFY(doc2.setContent(doc.toString(), true));
/* Here we test that it roundtrips. */
QVERIFY(isDeepEqual(doc2, doc));
QDomDocument doc3;
QVERIFY(doc3.setContent(QString::fromLatin1(serialized.constData()), true));
QVERIFY(isDeepEqual(doc3, doc));
}
void tst_QDom::flagInvalidNamespaces() const
{
const char *const input = "<doc>"
"<b:element xmlns:b='http://example.com/' b:name='' xmlns:b='http://example.com/'/>"
"</doc>";
QDomDocument doc;
QVERIFY(!doc.setContent(QString::fromLatin1(input, true)));
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && QT_DEPRECATED_SINCE(5, 15)
QEXPECT_FAIL("", "The parser doesn't flag identical qualified attribute names. Fixing this would change behavior.", Continue);
#endif
QVERIFY(!doc.setContent(QString::fromLatin1(input)));
}
void tst_QDom::flagUndeclaredNamespace() const
{
/* Note, prefix 'a' is not declared. */
const char *const input = "<a:doc xmlns:b='http://example.com/'>"
"<b:element b:name=''/>"
"</a:doc>";
QDomDocument doc;
QByteArray ba(input);
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && QT_DEPRECATED_SINCE(5, 15)
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
QBuffer buffer(&ba);
QVERIFY(buffer.open(QIODevice::ReadOnly));
QXmlInputSource source(&buffer);
QXmlSimpleReader reader;
reader.setFeature("http://xml.org/sax/features/namespaces", true);
reader.setFeature("http://xml.org/sax/features/namespace-prefixes", false);
QEXPECT_FAIL("", "The parser doesn't flag not declared prefixes. Fixing this would change behavior.", Continue);
QVERIFY(!doc.setContent(&source, &reader));
QT_WARNING_POP
#else
QXmlStreamReader streamReader(ba);
QVERIFY(!doc.setContent(&streamReader, true));
#endif
}
void tst_QDom::indentComments() const
{
/* We test that:
*
* - Whitespace is not added if a text node appears after a comment.
* - Whitespace is not added if a text node appears before a comment.
* - Indentation depth is linear with level depth.
*/
const char *const input = "<e>"
"<!-- A Comment -->"
"<b><!-- deep --></b>"
"textNode"
"<!-- Another Comment -->"
"<!-- Another Comment2 -->"
"textNode2"
"</e>";
const char *const expected = "<e>\n"
" <!-- A Comment -->\n"
" <b>\n"
" <!-- deep -->\n"
" </b>"
"textNode"
"<!-- Another Comment -->\n"
" <!-- Another Comment2 -->"
"textNode2"
"</e>\n";
QDomDocument doc;
QVERIFY(doc.setContent(QString::fromLatin1(input)));
const QString serialized(doc.toString(5));
QCOMPARE(serialized, QString::fromLatin1(expected));
}
void tst_QDom::checkLiveness() const
{
QDomImplementation impl;
QDomDocument doc(impl.createDocument(QString(), "doc", QDomDocumentType()));
QDomElement ele(doc.documentElement());
const QDomElement e1(doc.createElement("name"));
const QDomElement e2(doc.createElement("name"));
const QDomText t1(doc.createTextNode("content"));
ele.appendChild(e1);
ele.appendChild(t1);
ele.appendChild(e2);
const QDomNodeList children(ele.childNodes());
QCOMPARE(children.count(), 3);
ele.removeChild(e1);
QCOMPARE(children.count(), 2);
QCOMPARE(children.at(0), static_cast<const QDomNode &>(t1));
QCOMPARE(children.at(1), static_cast<const QDomNode &>(e2));
}
void tst_QDom::reportDuplicateAttributes() const
{
QDomDocument dd;
bool isSuccess = dd.setContent(QLatin1String("<test x=\"1\" x=\"2\"/>"));
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && QT_DEPRECATED_SINCE(5, 15)
QEXPECT_FAIL("", "The parser doesn't flag duplicate attributes. Fixing this would change behavior.", Continue);
#endif
QVERIFY2(!isSuccess, "Duplicate attributes are well-formedness errors, and should be reported as such.");
}
void tst_QDom::namespacedAttributes() const
{
static const char *const xml =
"<?xml version='1.0' encoding='UTF-8' standalone='yes'?>\n"
"<xan:td xmlns:xan=\"http://www.someurl.com/Something\" "
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" "
" xsi:schemaLocation=\"http://www.someurl.com/Something/../../xml/td.xsd\" "
" xmlns:xi=\"http://www.w3.org/2001/XInclude\" "
" xmlns=\"http://www.someurl.com/Something\">\n"
" <Title displayLabel='Title' >>>> SIMPLE BASIC OP - SEND - DUT AS SINK</Title>\n"
"</xan:td>\n";
QDomDocument one("document");
QString error;
bool docParsed = one.setContent(QByteArray(xml), true, &error);
QVERIFY2(docParsed, qPrintable(error));
QDomDocument two("document2");
docParsed = two.setContent(one.toByteArray(2), true, &error);
QVERIFY2(docParsed, qPrintable(error));
QVERIFY(isDeepEqual(one, two));
}
void tst_QDom::appendChildFromToDocument() const
{
QDomDocument doc;
const QByteArray input("<e/>");
doc.setContent(input);
QDomDocument doc2(doc.documentElement().toDocument());
QDomElement element = doc2.createElement("name");
element.setAttribute("name", "value");
doc.documentElement().appendChild(element);
}
void tst_QDom::iterateCDATA() const
{
const QByteArray input("<e><![CDATA[data]]></e>");
QDomDocument doc;
QVERIFY(doc.setContent(input));
QCOMPARE(doc.toString(), QString("<e><![CDATA[data]]></e>\n"));
const QDomElement element(doc.documentElement());
QVERIFY(!element.isNull());
/* The node at element.childNodes().at(0) is not an element,
* it's a CDATA section. */
const QDomElement child(element.childNodes().at(0).toElement());
QVERIFY(child.isNull());
QVERIFY(element.childNodes().at(0).isCDATASection());
}
/*!
\internal
\since 4.4
\brief This function cannot be factored into appendDocumentNode(). The
invocation of constructors/destructors is part of triggering the bug.
*/
QDomDocument tst_QDom::generateRequest()
{
QDomDocument doc;
QDomElement elem = doc.createElement("test_elem");
elem.setAttribute("name", "value");
doc.appendChild(elem);
return doc;
}
void tst_QDom::appendDocumentNode() const
{
QDomDocument doc;
QDomDocument xml = generateRequest();
QDomElement elem = doc.createElement("document");
doc.appendChild(elem);
QVERIFY(!xml.isNull());
const QString expected(QLatin1String("<document>\n<test_elem name=\"value\"/>\n</document>\n"));
elem.appendChild(xml);
QCOMPARE(doc.childNodes().count(), 1);
QCOMPARE(doc.toString(0), expected);
elem.appendChild(xml.firstChild());
QCOMPARE(doc.childNodes().count(), 1);
QCOMPARE(doc.toString(0), expected);
}
static const QChar umlautName[] =
{
'a', 0xfc, 'b'
};
/*!
\internal
Write a german umlaut to a QByteArray, via a QTextStream.
*/
void tst_QDom::germanUmlautToByteArray() const
{
QCOMPARE(ulong(sizeof(umlautName) / sizeof(QChar)), ulong(3));
const QString name(umlautName, 3);
QDomDocument d;
d.appendChild(d.createElement(name));
QByteArray data;
QBuffer buffer(&data);
QVERIFY(buffer.open(QIODevice::WriteOnly));
QTextStream ts(&buffer);
ts.setCodec("UTF-8");
ts << d.toString();
buffer.close();
QByteArray baseline("<a");
/* http://www.fileformat.info/info/unicode/char/00FC/index.htm */
baseline += char(0xC3);
baseline += char(0xBC);
baseline += "b/>\n";
QCOMPARE(data, baseline);
}
/*!
\internal
Write a german umlaut to a QFile, via a QTextStream.
*/
void tst_QDom::germanUmlautToFile() const
{
/* http://www.fileformat.info/info/unicode/char/00FC/index.htm */
QString name(QLatin1String("german"));
name += QChar(0xFC);
name += QLatin1String("umlaut");
QCOMPARE(name.length(), 13);
QDomDocument d("test");
d.appendChild(d.createElement(name));
QTemporaryFile file;
QVERIFY(file.open());
QTextStream ts(&file);
ts.setCodec("UTF-8");
ts << d.toString();
file.close();
QFile inFile(file.fileName());
QVERIFY(inFile.open(QIODevice::ReadOnly));
QString baseline(QLatin1String("<!DOCTYPE test>\n<german"));
baseline += QChar(0xFC);
baseline += QLatin1String("umlaut/>\n");
const QByteArray in(inFile.readAll());
/* Check that it was wwritten out correctly. */
QCOMPARE(in.length(), 34);
QCOMPARE(in, baseline.toUtf8());
inFile.close();
/* Check that we read it in correctly with QDomDocument::setContent(). */
QVERIFY(inFile.open(QIODevice::ReadOnly));
QDomDocument dd;
QVERIFY(dd.setContent(&inFile));
QCOMPARE(dd.toString(), baseline);
}
void tst_QDom::setInvalidDataPolicy() const
{
QDomImplementation::setInvalidDataPolicy(QDomImplementation::ReturnNullNode);
QDomDocument doc;
QDomElement elem = doc.createElement("invalid name");
QVERIFY(elem.isNull());
}
void tst_QDom::crashInSetContent() const
{
QDomImplementation::setInvalidDataPolicy(QDomImplementation::ReturnNullNode);
QDomDocument docImport;
QCOMPARE(docImport.setContent(QLatin1String("<a:>text</a:>"), true), false);
QVERIFY(docImport.setContent(QLatin1String("<?xml version=\"1.0\"?><e/>")));
}
void tst_QDom::doubleNamespaceDeclarations() const
{
QDomDocument doc;
QString testFile = QFINDTESTDATA("doubleNamespaces.xml");
if (testFile.isEmpty())
QFAIL("Cannot find test file doubleNamespaces.xml!");
QFile file(testFile);
QVERIFY(file.open(QIODevice::ReadOnly));
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && QT_DEPRECATED_SINCE(5, 15)
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
QXmlSimpleReader reader;
QXmlInputSource source(&file);
QVERIFY(doc.setContent(&source, &reader));
QT_WARNING_POP
#else
QXmlStreamReader streamReader(&file);
QVERIFY(doc.setContent(&streamReader, true));
#endif
// tst_QDom relies on a specific QHash ordering, see QTBUG-25071
QString docAsString = doc.toString(0);
QVERIFY(docAsString == QString::fromLatin1("<a>\n<b p:c=\"\" xmlns:p=\"NS\" p:d=\"\"/>\n</a>\n") ||
docAsString == QString::fromLatin1("<a>\n<b p:c=\"\" p:d=\"\" xmlns:p=\"NS\"/>\n</a>\n") ||
docAsString == QString::fromLatin1("<a>\n<b p:d=\"\" p:c=\"\" xmlns:p=\"NS\"/>\n</a>\n") ||
docAsString == QString::fromLatin1("<a>\n<b p:d=\"\" xmlns:p=\"NS\" p:c=\"\"/>\n</a>\n") ||
docAsString == QString::fromLatin1("<a>\n<b xmlns:p=\"NS\" p:c=\"\" p:d=\"\"/>\n</a>\n") ||
docAsString == QString::fromLatin1("<a>\n<b xmlns:p=\"NS\" p:d=\"\" p:c=\"\"/>\n</a>\n")
);
}
void tst_QDom::setContentQXmlReaderOverload() const
{
QDomDocument doc;
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && QT_DEPRECATED_SINCE(5, 15)
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
QXmlSimpleReader reader;
QXmlInputSource data;
data.setData(QByteArray("<e/>"));
doc.setContent(&data, true);
QT_WARNING_POP
#else
QXmlStreamReader streamReader(QByteArray("<e/>"));
doc.setContent(&streamReader, true);
#endif
QCOMPARE(doc.documentElement().nodeName(), QString::fromLatin1("e"));
}
void tst_QDom::cleanupTestCase() const
{
QFile::remove("germanUmlautToFile.xml");
}
void tst_QDom::toStringWithoutNewlines() const
{
QDomDocument doc;
doc.setContent(QLatin1String("<doc><e/></doc>"));
QCOMPARE(doc.toString(0), QString::fromLatin1("<doc>\n<e/>\n</doc>\n"));
QCOMPARE(doc.toString(-1), QString::fromLatin1("<doc><e/></doc>"));
}
void tst_QDom::checkIntOverflow() const
{
/* This test takes a *very* long time to run, so it is at best a manual
* test. */
return;
/* QDom used an internal global int which overflowed. So iterate until an
* uint wrapsaround. */
const QString xmlMessage(QLatin1String("<test/>"));
bool hasWrapped = false;
for(uint i = 1; i != 0; ++i)
{
/* We want to exit the second time, not loop infinitely. */
if(i == 1 && hasWrapped)
break;
else
hasWrapped = true;
QDomDocument doc;
QVERIFY(doc.setContent(xmlMessage));
const QDomNodeList nl(doc.elementsByTagName(QLatin1String("test")));
QCOMPARE(nl.length(), 1);
}
}
void tst_QDom::setContentWhitespace() const
{
QFETCH(QString, doc);
QFETCH(bool, expectedValidity);
QDomDocument domDoc;
QCOMPARE(domDoc.setContent(doc), expectedValidity);
if(expectedValidity)
QCOMPARE(domDoc.documentElement().nodeName(), QString::fromLatin1("e"));
}
void tst_QDom::setContentWhitespace_data() const
{
QTest::addColumn<QString>("doc");
QTest::addColumn<bool>("expectedValidity");
QTest::newRow("data1") << QString::fromLatin1(" <e/>") << true;
QTest::newRow("data2") << QString::fromLatin1(" <e/>") << true;
QTest::newRow("data3") << QString::fromLatin1(" <e/>") << true;
QTest::newRow("data4") << QString::fromLatin1(" <e/>") << true;
QTest::newRow("data5") << QString::fromLatin1("\n<e/>") << true;
QTest::newRow("data6") << QString::fromLatin1("\n\n<e/>") << true;
QTest::newRow("data7") << QString::fromLatin1("\n\n\n<e/>") << true;
QTest::newRow("data8") << QString::fromLatin1("\n\n\n\n<e/>") << true;
QTest::newRow("data9") << QString::fromLatin1("\t<e/>") << true;
QTest::newRow("data10") << QString::fromLatin1("\t\t<e/>") << true;
QTest::newRow("data11") << QString::fromLatin1("\t\t\t<e/>") << true;
QTest::newRow("data12") << QString::fromLatin1("\t\t\t\t<e/>") << true;
/* With XML prolog. */
QTest::newRow("data13") << QString::fromLatin1("<?xml version='1.0' ?><e/>") << true;
QTest::newRow("data14") << QString::fromLatin1(" <?xml version='1.0' ?><e/>") << false;
QTest::newRow("data15") << QString::fromLatin1(" <?xml version='1.0' ?><e/>") << false;
QTest::newRow("data16") << QString::fromLatin1(" <?xml version='1.0' ?><e/>") << false;
QTest::newRow("data17") << QString::fromLatin1(" <?xml version='1.0' ?><e/>") << false;
QTest::newRow("data18") << QString::fromLatin1("\n<?xml version='1.0' ?><e/>") << false;
QTest::newRow("data19") << QString::fromLatin1("\n\n<?xml version='1.0' ?><e/>") << false;
QTest::newRow("data20") << QString::fromLatin1("\n\n\n<?xml version='1.0' ?><e/>") << false;
QTest::newRow("data21") << QString::fromLatin1("\n\n\n\n<?xml version='1.0' ?><e/>") << false;
QTest::newRow("data22") << QString::fromLatin1("\t<?xml version='1.0' ?><e/>") << false;
QTest::newRow("data23") << QString::fromLatin1("\t\t<?xml version='1.0' ?><e/>") << false;
QTest::newRow("data24") << QString::fromLatin1("\t\t\t<?xml version='1.0' ?><e/>") << false;
QTest::newRow("data25") << QString::fromLatin1("\t\t\t\t<?xml version='1.0' ?><e/>") << false;
}
void tst_QDom::taskQTBUG4595_dontAssertWhenDocumentSpecifiesUnknownEncoding() const
{
// QXmlStreamReader fails to read XML documents with unknown encoding. It
// needs to be modified if we want to support this case with the QXmlStreamReader-based
// implementation.
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) && QT_DEPRECATED_SINCE(5, 15)
QString xmlWithUnknownEncoding("<?xml version='1.0' encoding='unknown-encoding'?>"
"<foo>"
" <bar>How will this sentence be handled?</bar>"
"</foo>");
QDomDocument d;
QVERIFY(d.setContent(xmlWithUnknownEncoding));
QString dontAssert = d.toString(); // this should not assert
QVERIFY(true);
#endif
}
void tst_QDom::cloneDTD_QTBUG8398() const
{
QString dtd("<?xml version='1.0' encoding='UTF-8'?>\n"
"<!DOCTYPE first [\n"
"<!ENTITY secondFile SYSTEM 'second.xml'>\n"
"<!ENTITY thirdFile SYSTEM 'third.xml'>\n"
"]>\n"
"<first/>\n");
QDomDocument domDocument;
QVERIFY(domDocument.setContent(dtd));
QDomDocument domDocument2 = domDocument.cloneNode(true).toDocument();
// this string is relying on a specific QHash ordering, QTBUG-25071
QString expected("<?xml version='1.0' encoding='UTF-8'?>\n"
"<!DOCTYPE first [\n"
"<!ENTITY thirdFile SYSTEM 'third.xml'>\n"
"<!ENTITY secondFile SYSTEM 'second.xml'>\n"
"]>\n"
"<first/>\n");
QString output;
QTextStream stream(&output);
domDocument2.save(stream, 0);
// check against the original string and the expected one, QTBUG-25071
QVERIFY(output == dtd || output == expected);
}
void tst_QDom::DTDNotationDecl()
{
QString dtd("<?xml version='1.0' encoding='UTF-8'?>\n"
"<!DOCTYPE first [\n"
"<!NOTATION gif SYSTEM 'image/gif'>\n"
"<!NOTATION jpeg SYSTEM 'image/jpeg'>\n"
"]>\n"
"<first/>\n");
QDomDocument domDocument;
QVERIFY(domDocument.setContent(dtd));
const QDomDocumentType doctype = domDocument.doctype();
QCOMPARE(doctype.notations().size(), 2);
QVERIFY(doctype.namedItem(QString("gif")).isNotation());
QCOMPARE(doctype.namedItem(QString("gif")).toNotation().systemId(), QString("image/gif"));
QVERIFY(doctype.namedItem(QString("jpeg")).isNotation());
QCOMPARE(doctype.namedItem(QString("jpeg")).toNotation().systemId(), QString("image/jpeg"));
}
void tst_QDom::DTDEntityDecl()
{
QString dtd("<?xml version='1.0' encoding='UTF-8'?>\n"
"<!DOCTYPE first [\n"
"<!ENTITY secondFile SYSTEM 'second.xml'>\n"
"<!ENTITY logo SYSTEM \"http://www.w3c.org/logo.gif\" NDATA gif>"
"]>\n"
"<first/>\n");
QDomDocument domDocument;
QVERIFY(domDocument.setContent(dtd));
const QDomDocumentType doctype = domDocument.doctype();
QCOMPARE(doctype.entities().count(), 2);
QVERIFY(doctype.namedItem(QString("secondFile")).isEntity());
QCOMPARE(doctype.namedItem(QString("secondFile")).toEntity().systemId(), QString("second.xml"));
QCOMPARE(doctype.namedItem(QString("secondFile")).toEntity().notationName(), QString());
QVERIFY(doctype.namedItem(QString("logo")).isEntity());
QCOMPARE(doctype.namedItem(QString("logo")).toEntity().systemId(), QString("http://www.w3c.org/logo.gif"));
QCOMPARE(doctype.namedItem(QString("logo")).toEntity().notationName(), QString("gif"));
}
void tst_QDom::QTBUG49113_dontCrashWithNegativeIndex() const
{
QDomDocument doc;
QDomElement elem = doc.appendChild(doc.createElement("root")).toElement();
QDomNode node = elem.attributes().item(-1);
QVERIFY(node.isNull());
}
void tst_QDom::DTDInternalSubset() const
{
QFETCH( QString, doc );
QFETCH( QString, internalSubset );
QXmlStreamReader reader(doc);
QDomDocument document;
QVERIFY(document.setContent(&reader, true));
QCOMPARE(document.doctype().internalSubset(), internalSubset);
}
void tst_QDom::DTDInternalSubset_data() const
{
QTest::addColumn<QString>("doc");
QTest::addColumn<QString>("internalSubset");
QTest::newRow("data1") << "<?xml version='1.0'?>\n"
"<!DOCTYPE note SYSTEM '/[abcd].dtd'>\n"
"<note/>\n"
<< "" ;
QTest::newRow("data2") << "<?xml version='1.0'?>\n"
"<!DOCTYPE note PUBLIC '-/freedesktop' 'https://[abcd].dtd'>\n"
"<note/>\n"
<< "" ;
const QString internalSubset0(
"<!-- open brackets comment [ -->\n"
"<!-- colse brackets comment ] -->\n"
);
QTest::newRow("data3") << "<?xml version='1.0'?>\n"
"<!DOCTYPE note ["
+ internalSubset0 +
"]>\n"
"<note/>\n"
<< internalSubset0;
const QString internalSubset1(
"<!ENTITY obra '['>\n"
"<!ENTITY cbra ']'>\n"
);
QTest::newRow("data4") << "<?xml version='1.0'?>\n"
"<!DOCTYPE note ["
+ internalSubset1 +
"]>\n"
"<note/>\n"
<< internalSubset1;
QTest::newRow("data5") << "<?xml version='1.0'?>\n"
"<!DOCTYPE note PUBLIC '-/freedesktop' 'https://[abcd].dtd' ["
+ internalSubset0
+ "]>\n"
"<note/>\n"
<< internalSubset0;
QTest::newRow("data6") << "<?xml version='1.0'?>\n"
"<!DOCTYPE note PUBLIC '-/freedesktop' "
"'2001:db8:130F:0000:0000:09C0:876A:130B://[abcd].dtd' ["
+ internalSubset0
+ "]>\n"
"<note/>\n"
<< internalSubset0;
}
QTEST_MAIN(tst_QDom)
#include "tst_qdom.moc"
|