void tst_QXmlSchemaValidator::resetSchemaNamePool() const { QXmlSchema schema1; QXmlNamePool np1 = schema1.namePool(); const QXmlName name1(np1, QLatin1String("localName"), QLatin1String("http://example.com/"), QLatin1String("prefix")); QXmlSchemaValidator validator(schema1); { QXmlNamePool compNamePool(validator.namePool()); QCOMPARE(name1.namespaceUri(compNamePool), QString::fromLatin1("http://example.com/")); QCOMPARE(name1.localName(compNamePool), QString::fromLatin1("localName")); QCOMPARE(name1.prefix(compNamePool), QString::fromLatin1("prefix")); } QXmlSchema schema2; QXmlNamePool np2 = schema2.namePool(); const QXmlName name2(np2, QLatin1String("remoteName"), QLatin1String("http://example.com/"), QLatin1String("suffix")); // make sure that after re-setting the schema, the new namepool is used validator.setSchema(schema2); { QXmlNamePool compNamePool(validator.namePool()); QCOMPARE(name2.namespaceUri(compNamePool), QString::fromLatin1("http://example.com/")); QCOMPARE(name2.localName(compNamePool), QString::fromLatin1("remoteName")); QCOMPARE(name2.prefix(compNamePool), QString::fromLatin1("suffix")); } }
/*! Check that functions have the correct const qualification. */ void tst_QXmlName::constCorrectness() const { const QXmlName name; /* isNull() */ QVERIFY(name.isNull()); /* operator==() */ QVERIFY(name == name); /* operator!=() */ QVERIFY(!(name != name)); QXmlNamePool namePool; const QXmlName name2(namePool, QLatin1String("localName"), QLatin1String("http://example.com/"), QLatin1String("prefix")); /* namespaceUri(). */ QCOMPARE(name2.namespaceUri(namePool), QLatin1String("http://example.com/")); /* localName(). */ QCOMPARE(name2.localName(namePool), QLatin1String("localName")); /* prefix(). */ QCOMPARE(name2.prefix(namePool), QLatin1String("prefix")); /* toClarkname(). */ QCOMPARE(name2.toClarkName(namePool), QLatin1String("{http://example.com/}prefix:localName")); }
void tst_QSimpleXmlNodeModel::namePool() const { /* Check that the name pool we pass in, is what actually is returned. */ QXmlNamePool np; const QXmlName name(np, QLatin1String("localName"), QLatin1String("http://example.com/XYZ"), QLatin1String("prefix432")); TestSimpleNodeModel model(np); const QXmlNamePool np2(model.namePool()); /* If it's a bug, this will more or less crash. */ QCOMPARE(name.namespaceUri(np2), QString::fromLatin1("http://example.com/XYZ")); QCOMPARE(name.localName(np2), QString::fromLatin1("localName")); QCOMPARE(name.prefix(np2), QString::fromLatin1("prefix432")); }
static PyObject *meth_QXmlName_namespaceUri(PyObject *sipSelf, PyObject *sipArgs) { PyObject *sipParseErr = NULL; { const QXmlNamePool * a0; QXmlName *sipCpp; if (sipParseArgs(&sipParseErr, sipArgs, "BJ9", &sipSelf, sipType_QXmlName, &sipCpp, sipType_QXmlNamePool, &a0)) { QString *sipRes; Py_BEGIN_ALLOW_THREADS sipRes = new QString(sipCpp->namespaceUri(*a0)); Py_END_ALLOW_THREADS return sipConvertFromNewType(sipRes,sipType_QString,NULL); } }
void tst_QXmlSchema::constructorQXmlNamePool() const { QXmlSchema schema; QXmlNamePool np = schema.namePool(); const QXmlName name(np, QLatin1String("localName"), QLatin1String("http://example.com/"), QLatin1String("prefix")); QXmlNamePool np2(schema.namePool()); QCOMPARE(name.namespaceUri(np2), QString::fromLatin1("http://example.com/")); QCOMPARE(name.localName(np2), QString::fromLatin1("localName")); QCOMPARE(name.prefix(np2), QString::fromLatin1("prefix")); // make sure namePool() is const const QXmlSchema constSchema; np = constSchema.namePool(); }
void tst_QXmlSchemaValidator::constructorQXmlNamePool() const { // test that the name pool from the schema is used by // the schema validator as well QXmlSchema schema; QXmlNamePool np = schema.namePool(); const QXmlName name(np, QLatin1String("localName"), QLatin1String("http://example.com/"), QLatin1String("prefix")); QXmlSchemaValidator validator(schema); QXmlNamePool np2(validator.namePool()); QCOMPARE(name.namespaceUri(np2), QString::fromLatin1("http://example.com/")); QCOMPARE(name.localName(np2), QString::fromLatin1("localName")); QCOMPARE(name.prefix(np2), QString::fromLatin1("prefix")); // make sure namePool() is const const QXmlSchemaValidator constValidator(schema); np = constValidator.namePool(); }