/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 org.apache.camel.support; import java.io.Closeable; import java.io.IOException; import java.io.StringReader; import java.text.MessageFormat; import java.util.Collections; import java.util.Iterator; import java.util.Map; import javax.xml.stream.XMLStreamException; import junit.framework.TestCase; /** * */ public class XMLTokenExpressionIteratorInvalidXMLTest extends TestCase { private static final String DATA_TEMPLATE = "<?xml version=\"1.0\" encoding=\"utf-u\"?>" + "<Statements xmlns=\"http://www.apache.org/xml/test\">" + " <statement>Hello World</statement>" + " <statement>{0}</statement>" + "</Statements>"; private static final Map<String, String> NSMAP = Collections.singletonMap("", "http://www.apache.org/xml/test"); public void testExtractToken() throws Exception { String data = MessageFormat.format(DATA_TEMPLATE, "Have a nice day"); XMLTokenExpressionIterator xtei = new XMLTokenExpressionIterator("//statement", 'i'); xtei.setNamespaces(NSMAP); invokeAndVerify(xtei.createIterator(new StringReader(data)), false); data = MessageFormat.format(DATA_TEMPLATE, "Have a nice< day"); xtei = new XMLTokenExpressionIterator("//statement", 'i'); xtei.setNamespaces(NSMAP); invokeAndVerify(xtei.createIterator(new StringReader(data)), true); } private void invokeAndVerify(Iterator<?> tokenizer, boolean error) throws IOException, XMLStreamException { Exception exp = null; try { tokenizer.next(); tokenizer.next(); } catch (Exception e) { exp = e; } finally { ((Closeable)tokenizer).close(); } if (error) { assertNotNull("the error expected", exp); } else { assertNull("no error expected", exp); } } }