diff options
| author | YDBot <[email protected]> | 2026-06-02 01:34:50 +0000 |
|---|---|---|
| committer | YDBot <[email protected]> | 2026-06-02 01:34:50 +0000 |
| commit | 1cbfbcaf068c0c3ad3c4a1ad80e720fdb0f2890f (patch) | |
| tree | 1d8cff9cc8381ab9c303a40c64f1bef7ceab5aa8 /library/cpp/xml/document/xml-document_ut.cpp | |
| parent | 8d44df3aaeb18ba7aea71d5efc6732be7fb0c4bd (diff) | |
| parent | 25d27b87739eaf7a6254d961b62d5daa16ab44bf (diff) | |
Sync branches 260602-0132
Diffstat (limited to 'library/cpp/xml/document/xml-document_ut.cpp')
| -rw-r--r-- | library/cpp/xml/document/xml-document_ut.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/library/cpp/xml/document/xml-document_ut.cpp b/library/cpp/xml/document/xml-document_ut.cpp index 0ec1fc60838..b4af2cdccf3 100644 --- a/library/cpp/xml/document/xml-document_ut.cpp +++ b/library/cpp/xml/document/xml-document_ut.cpp @@ -338,4 +338,30 @@ Y_UNIT_TEST_SUITE(TestXmlDocument) { root.SetAttr("quux", "literal"); root.SetAttr("frob", 500); } + + Y_UNIT_TEST(Cdata) { + using namespace NXml; + const TString xml = "<?xml version=\"1.0\"?>\n" + "<example><![CDATA[Some & data]]> test</example>\n"; + + TDocument docDefault(xml, TDocument::String); + UNIT_ASSERT(docDefault.Root().FirstChild().IsText()); + + TDocument docWithCdata(xml, TDocument::String, XML_PARSE_NOCDATA); + UNIT_ASSERT(docWithCdata.Root().FirstChild().IsText()); + + TDocument docWithoutCdata(xml, TDocument::String, 0); + UNIT_ASSERT(!docWithoutCdata.Root().FirstChild().IsText()); + } + + Y_UNIT_TEST(InvalidXml) { + using namespace NXml; + const TString xml = "<?xml version=\"1.0\"?>\n" + "<root><item>value</root>\n"; + + UNIT_CHECK_GENERATED_EXCEPTION(TDocument(xml, TDocument::String), yexception); + + TDocument doc(xml, TDocument::String, XML_PARSE_RECOVER); + UNIT_ASSERT_EQUAL(doc.Root().FirstChild().Value<TString>(), "value"); + } } |
