/** * * Copyright 2014 Andriy Tsykholyas * * 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.smackx.hoxt.provider; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import java.io.IOException; import java.util.Collection; import java.util.HashMap; import java.util.Map; import org.jivesoftware.smack.packet.IQ; import org.jivesoftware.smack.parsing.SmackParsingException; import org.jivesoftware.smack.test.util.SmackTestUtil; import org.jivesoftware.smack.util.PacketParserUtils; import org.jivesoftware.smack.xml.XmlPullParser; import org.jivesoftware.smack.xml.XmlPullParserException; import org.jivesoftware.smackx.hoxt.packet.AbstractHttpOverXmpp; import org.jivesoftware.smackx.hoxt.packet.HttpOverXmppReq; import org.jivesoftware.smackx.hoxt.packet.HttpOverXmppResp; import org.jivesoftware.smackx.shim.packet.Header; import org.jivesoftware.smackx.shim.packet.HeadersExtension; import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.EnumSource; /** * Tests correct headers and data parsing in 'req' and 'resp' elements. */ public class AbstractHttpOverXmppProviderTest { @Test public void areRespHeadersParsedCorrectly() throws Exception { String string = "" + "" + "
Fri, 03 May 2013 13:52:10 GMT-4
" + "
OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE
" + "
0
" + "
" + "
"; Map expectedHeaders = new HashMap(); expectedHeaders.put("Date", "Fri, 03 May 2013 13:52:10 GMT-4"); expectedHeaders.put("Allow", "OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE"); expectedHeaders.put("Content-Length", "0"); HttpOverXmppRespProvider provider = new HttpOverXmppRespProvider(); XmlPullParser parser = PacketParserUtils.getParserFor(string); IQ iq = provider.parse(parser, null); assertTrue(iq instanceof HttpOverXmppResp); HttpOverXmppResp body = (HttpOverXmppResp) iq; checkHeaders(body.getHeaders(), expectedHeaders); } @Test public void areReqHeadersParsedCorrectly() throws Exception { String string = "" + "" + "
clayster.com
" + "
" + "
"; Map expectedHeaders = new HashMap(); expectedHeaders.put("Host", "clayster.com"); HttpOverXmppReqProvider provider = new HttpOverXmppReqProvider(); XmlPullParser parser = PacketParserUtils.getParserFor(string); IQ iq = provider.parse(parser, null); assertTrue(iq instanceof HttpOverXmppReq); HttpOverXmppReq body = (HttpOverXmppReq) iq; checkHeaders(body.getHeaders(), expectedHeaders); } @ParameterizedTest @EnumSource(SmackTestUtil.XmlPullParserKind.class) public void isTextDataParsedCorrectly(SmackTestUtil.XmlPullParserKind parserKind) throws XmlPullParserException, IOException, SmackParsingException { String expectedText = "@prefix dc: ." + "@base ." + " dc:title \"HTTP over XMPP\";" + "dc:creator ;" + "dc:publisher ."; String encodedText = "@prefix dc: <http://purl.org/dc/elements/1.1/>." + "@base <http://clayster.com/>." + "<xep> dc:title \"HTTP over XMPP\";" + "dc:creator <PeterWaher>;" + "dc:publisher <XSF>."; String string = "" + "
Clayster
" + "" + encodedText + "
"; AbstractHttpOverXmpp.Text text = (AbstractHttpOverXmpp.Text) parseAbstractBody( string, "resp", parserKind).getData().getChild(); assertEquals(expectedText, text.getText()); } @ParameterizedTest @EnumSource(SmackTestUtil.XmlPullParserKind.class) public void isXmlDataParsedCorrectly(SmackTestUtil.XmlPullParserKind parserKind) throws XmlPullParserException, IOException, SmackParsingException { String expectedXml = "" // no xmlns here + "" + "" + "HTTP over XMPP" + "" + "" + "http://clayster.com/PeterWaher" + "" + "" + "" + ""; String encodedXml = "" + "" + "" + "HTTP over XMPP" + "" + "" + "http://clayster.com/PeterWaher" + "" + "" + "" + ""; String string = "" + "
Clayster
" + "" + encodedXml + "
"; AbstractHttpOverXmpp.Xml xmlProviderValue = (AbstractHttpOverXmpp.Xml) parseAbstractBody( string, "resp", parserKind).getData().getChild(); assertEquals(expectedXml, xmlProviderValue.getText()); } @ParameterizedTest @EnumSource(SmackTestUtil.XmlPullParserKind.class) public void isBase64DataParsedCorrectly(SmackTestUtil.XmlPullParserKind parserKind) throws XmlPullParserException, IOException, SmackParsingException { String base64Data = "iVBORw0KGgoAAAANSUhEUgAAASwAAAGQCAYAAAAUdV17AAAAAXNSR0 ... tVWJd+e+y1AAAAABJRU5ErkJggg=="; String string = "" + "
Clayster
" + "" + base64Data + "
"; AbstractHttpOverXmpp.Base64 base64ProviderValue = (AbstractHttpOverXmpp.Base64) parseAbstractBody( string, "resp", parserKind).getData().getChild(); assertEquals(base64Data, base64ProviderValue.getText()); } @ParameterizedTest @EnumSource(SmackTestUtil.XmlPullParserKind.class) public void isChunkedBase64DataParsedCorrectly(SmackTestUtil.XmlPullParserKind parserKind) throws XmlPullParserException, IOException, SmackParsingException { String streamId = "Stream0001"; String chunkBase64Data = " "; String string = "" + "
Clayster
" + "" + chunkBase64Data + "
"; AbstractHttpOverXmpp.ChunkedBase64 chunkedBase64Value = (AbstractHttpOverXmpp.ChunkedBase64) parseAbstractBody( string, "resp", parserKind).getData().getChild(); assertEquals(streamId, chunkedBase64Value.getStreamId()); } @ParameterizedTest @EnumSource(SmackTestUtil.XmlPullParserKind.class) public void isIbbDataParsedCorrectly(SmackTestUtil.XmlPullParserKind parserKind) throws XmlPullParserException, IOException, SmackParsingException { String sid = "Stream0002"; String ibbData = " "; String string = "" + "
Clayster
" + "" + ibbData + "
"; AbstractHttpOverXmpp.Ibb ibbValue = (AbstractHttpOverXmpp.Ibb) parseAbstractBody( string, "resp", parserKind).getData().getChild(); assertEquals(sid, ibbValue.getSid()); } // TODO The method name makes no sense after the HOXT re-design, change to parseHttpOverXmppResp() private static HttpOverXmppResp parseAbstractBody(String string, String tag, SmackTestUtil.XmlPullParserKind parserKind) throws XmlPullParserException, IOException, SmackParsingException { HttpOverXmppRespProvider provider = new HttpOverXmppRespProvider(); XmlPullParser parser = SmackTestUtil.getParserFor(string, tag, parserKind); IQ iq = provider.parse(parser, null); assertTrue(iq instanceof HttpOverXmppResp); return (HttpOverXmppResp) iq; } private static void checkHeaders(HeadersExtension headers, Map expectedHeaders) { Collection
collection = headers.getHeaders(); assertEquals(collection.size(), expectedHeaders.size()); for (Header header : collection) { assertTrue(expectedHeaders.containsKey(header.getName())); assertEquals(expectedHeaders.get(header.getName()), header.getValue()); } } }