/** * * Copyright the original author or authors * * 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 org.jivesoftware.smack.parsing; import static org.jivesoftware.smack.test.util.CharSequenceEquals.equalsCharSequence; import static org.junit.Assert.assertThat; import org.jivesoftware.smack.SmackException; import org.jivesoftware.smack.packet.ExtensionElement; import org.jivesoftware.smack.provider.ExtensionElementProvider; import org.jivesoftware.smack.provider.ProviderManager; import org.jivesoftware.smack.test.util.TestUtils; import org.jivesoftware.smack.util.PacketParserUtils; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.xmlpull.v1.XmlPullParser; public class ParsingExceptionTest { private static final String EXTENSION2 = "" + "" + "" + "" + "" + ""; @Before public void init() { ProviderManager.addExtensionProvider(ThrowException.ELEMENT, ThrowException.NAMESPACE, new ThrowException()); } @After public void tini() { ProviderManager.removeExtensionProvider(ThrowException.ELEMENT, ThrowException.NAMESPACE); } @Test public void consumeUnparsedInput() throws Exception { final String MESSAGE_EXCEPTION_ELEMENT = "<" + ThrowException.ELEMENT + " xmlns='" + ThrowException.NAMESPACE + "'>" + "" + "" + ""; XmlPullParser parser = TestUtils.getMessageParser( "" + MESSAGE_EXCEPTION_ELEMENT + EXTENSION2 + ""); int parserDepth = parser.getDepth(); CharSequence content = null; try { PacketParserUtils.parseMessage(parser); } catch (Exception e) { content = PacketParserUtils.parseContentDepth(parser, parserDepth, false); } assertThat(MESSAGE_EXCEPTION_ELEMENT + EXTENSION2 + "", equalsCharSequence(content)); } static class ThrowException extends ExtensionElementProvider { public static final String ELEMENT = "exception"; public static final String NAMESPACE = "http://smack.jivesoftware.org/exception"; @Override public ExtensionElement parse(XmlPullParser parser, int initialDepth) throws SmackException { throw new SmackException("Test Exception"); } } }