/* * Copyright (C) 2009 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package libcore.javax.xml.parsers; import static tests.support.Support_Xml.*; public class DocumentBuilderTest extends junit.framework.TestCase { // http://code.google.com/p/android/issues/detail?id=2607 public void test_characterReferences() throws Exception { assertEquals("aAb", firstChildTextOf(domOf("<p>aAb</p>"))); assertEquals("aAb", firstChildTextOf(domOf("<p>aAb</p>"))); assertEquals("a\u00fcb", firstChildTextOf(domOf("<p>aüb</p>"))); assertEquals("a\u00fcb", firstChildTextOf(domOf("<p>aüb</p>"))); } // http://code.google.com/p/android/issues/detail?id=2607 public void test_predefinedEntities() throws Exception { assertEquals("a<b", firstChildTextOf(domOf("<p>a<b</p>"))); assertEquals("a>b", firstChildTextOf(domOf("<p>a>b</p>"))); assertEquals("a&b", firstChildTextOf(domOf("<p>a&b</p>"))); assertEquals("a'b", firstChildTextOf(domOf("<p>a'b</p>"))); assertEquals("a\"b", firstChildTextOf(domOf("<p>a"b</p>"))); } // http://code.google.com/p/android/issues/detail?id=2487 public void test_cdata_attributes() throws Exception { assertEquals("hello & world", attrOf(firstElementOf(domOf("<?xml version=\"1.0\"?><root attr=\"hello & world\" />")))); try { domOf("<?xml version=\"1.0\"?><root attr=\"hello <![CDATA[ some-cdata ]]> world\" />"); fail("SAXParseException not thrown"); } catch (org.xml.sax.SAXParseException ex) { // Expected. } assertEquals("hello <![CDATA[ some-cdata ]]> world", attrOf(firstElementOf(domOf("<?xml version=\"1.0\"?><root attr=\"hello <![CDATA[ some-cdata ]]> world\" />")))); assertEquals("hello <![CDATA[ some-cdata ]]> world", attrOf(firstElementOf(domOf("<?xml version=\"1.0\"?><root attr=\"hello <![CDATA[ some-cdata ]]> world\" />")))); } // http://code.google.com/p/android/issues/detail?id=2487 public void test_cdata_body() throws Exception { assertEquals("hello & world", firstChildTextOf(domOf("<?xml version=\"1.0\"?><root>hello & world</root>"))); assertEquals("hello some-cdata world", firstChildTextOf(domOf("<?xml version=\"1.0\"?><root>hello <![CDATA[ some-cdata ]]> world</root>"))); assertEquals("hello <![CDATA[ some-cdata ]]> world", firstChildTextOf(domOf("<?xml version=\"1.0\"?><root>hello <![CDATA[ some-cdata ]]> world</root>"))); try { domOf("<?xml version=\"1.0\"?><root>hello <![CDATA[ some-cdata ]]> world</root>"); fail("SAXParseException not thrown"); } catch (org.xml.sax.SAXParseException ex) { // Expected. } } }