mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-23 20:42:06 +01:00
Small bugfix and session-initiate test
This commit is contained in:
parent
b08e03af8d
commit
e2d2f67982
3 changed files with 170 additions and 4 deletions
|
@ -0,0 +1,129 @@
|
||||||
|
package org.jivesoftware.smackx.jingle_filetransfer;
|
||||||
|
|
||||||
|
import static junit.framework.TestCase.assertEquals;
|
||||||
|
import static junit.framework.TestCase.assertNull;
|
||||||
|
import static org.custommonkey.xmlunit.XMLAssert.assertXMLEqual;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
import org.jivesoftware.smack.DummyConnection;
|
||||||
|
import org.jivesoftware.smack.XMPPConnection;
|
||||||
|
import org.jivesoftware.smack.test.util.SmackTestSuite;
|
||||||
|
import org.jivesoftware.smackx.hashes.HashManager;
|
||||||
|
import org.jivesoftware.smackx.hashes.element.HashElement;
|
||||||
|
import org.jivesoftware.smackx.jingle.JingleManager;
|
||||||
|
import org.jivesoftware.smackx.jingle.JingleUtil;
|
||||||
|
import org.jivesoftware.smackx.jingle.JingleUtilTest;
|
||||||
|
import org.jivesoftware.smackx.jingle.element.Jingle;
|
||||||
|
import org.jivesoftware.smackx.jingle.element.JingleAction;
|
||||||
|
import org.jivesoftware.smackx.jingle.element.JingleContent;
|
||||||
|
import org.jivesoftware.smackx.jingle.element.JingleContentDescriptionChildElement;
|
||||||
|
import org.jivesoftware.smackx.jingle.transports.jingle_ibb.element.JingleIBBTransport;
|
||||||
|
import org.jivesoftware.smackx.jingle_filetransfer.element.JingleFileTransfer;
|
||||||
|
import org.jivesoftware.smackx.jingle_filetransfer.element.JingleFileTransferChild;
|
||||||
|
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.jxmpp.jid.FullJid;
|
||||||
|
import org.jxmpp.jid.impl.JidCreate;
|
||||||
|
import org.jxmpp.stringprep.XmppStringprepException;
|
||||||
|
import org.jxmpp.util.XmppDateTime;
|
||||||
|
import org.xml.sax.SAXException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by vanitas on 12.07.17.
|
||||||
|
*/
|
||||||
|
public class JingleUtilFileTransferTest extends SmackTestSuite {
|
||||||
|
private XMPPConnection connection;
|
||||||
|
private JingleUtil jutil;
|
||||||
|
|
||||||
|
private FullJid romeo;
|
||||||
|
private FullJid juliet;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setup() throws XmppStringprepException {
|
||||||
|
connection = new DummyConnection(
|
||||||
|
DummyConnection.getDummyConfigurationBuilder()
|
||||||
|
.setUsernameAndPassword("romeo@montague.lit",
|
||||||
|
"iluvJulibabe13").build());
|
||||||
|
JingleManager jm = JingleManager.getInstanceFor(connection);
|
||||||
|
jutil = new JingleUtil(connection);
|
||||||
|
romeo = connection.getUser().asFullJidOrThrow();
|
||||||
|
juliet = JidCreate.fullFrom("juliet@capulet.lit/balcony");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void createSessionInitiateTest() throws IOException, SAXException {
|
||||||
|
JingleIBBTransport transport = new JingleIBBTransport("transid");
|
||||||
|
Date date = new Date();
|
||||||
|
HashElement hash = new HashElement(HashManager.ALGORITHM.SHA_256, "f4OxZX/x/FO5LcGBSKHWXfwtSx+j1ncoSt3SABJtkGk=");
|
||||||
|
JingleFileTransferChild file = new JingleFileTransferChild(date, "desc", hash, "application/octet-string", "name", 1337, null);
|
||||||
|
JingleFileTransfer description = new JingleFileTransfer(Collections.<JingleContentDescriptionChildElement>singletonList(file));
|
||||||
|
Jingle initiate = jutil.createSessionInitiate(juliet, "letsstart", JingleContent.Creator.initiator, "content", JingleContent.Senders.initiator, description, transport);
|
||||||
|
|
||||||
|
assertEquals(JingleAction.session_initiate, initiate.getAction());
|
||||||
|
assertEquals(romeo, initiate.getInitiator());
|
||||||
|
assertNull(initiate.getResponder()); //Must be null
|
||||||
|
assertEquals("letsstart", initiate.getSid());
|
||||||
|
assertEquals(1, initiate.getContents().size());
|
||||||
|
|
||||||
|
JingleContent content = initiate.getContents().get(0);
|
||||||
|
assertEquals("content", content.getName());
|
||||||
|
assertEquals(JingleContent.Creator.initiator, content.getCreator());
|
||||||
|
assertEquals(JingleContent.Senders.initiator, content.getSenders());
|
||||||
|
|
||||||
|
assertEquals(1, description.getJingleContentDescriptionChildren().size());
|
||||||
|
assertEquals(file, description.getJingleContentDescriptionChildren().get(0));
|
||||||
|
assertEquals(JingleFileTransferChild.ELEMENT, file.getElementName());
|
||||||
|
assertEquals(JingleFileTransfer.NAMESPACE_V5, description.getNamespace());
|
||||||
|
assertEquals(date, file.getDate());
|
||||||
|
assertEquals(hash, file.getHash());
|
||||||
|
assertEquals("application/octet-string", file.getMediaType());
|
||||||
|
assertEquals("name", file.getName());
|
||||||
|
assertEquals(1337, file.getSize());
|
||||||
|
assertNull(file.getRange());
|
||||||
|
|
||||||
|
assertEquals(transport, content.getJingleTransport());
|
||||||
|
assertEquals("transid", transport.getSessionId());
|
||||||
|
assertEquals(JingleIBBTransport.DEFAULT_BLOCK_SIZE, transport.getBlockSize());
|
||||||
|
|
||||||
|
String transportXML =
|
||||||
|
"<transport xmlns='urn:xmpp:jingle:transports:ibb:1' " +
|
||||||
|
"block-size='4096' " +
|
||||||
|
"sid='transid'/>";
|
||||||
|
assertXMLEqual(transportXML, transport.toXML().toString());
|
||||||
|
|
||||||
|
String descriptionXML =
|
||||||
|
"<description xmlns='urn:xmpp:jingle:apps:file-transfer:5'>" +
|
||||||
|
"<file>" +
|
||||||
|
"<date>" + XmppDateTime.formatXEP0082Date(date) + "</date>" +
|
||||||
|
"<desc>desc</desc>" +
|
||||||
|
"<media-type>application/octet-string</media-type>" +
|
||||||
|
"<name>name</name>" +
|
||||||
|
//"<range/>" + TODO: insert empty element when null?
|
||||||
|
"<size>1337</size>" +
|
||||||
|
"<hash xmlns='urn:xmpp:hashes:2' " +
|
||||||
|
"algo='sha-256'>f4OxZX/x/FO5LcGBSKHWXfwtSx+j1ncoSt3SABJtkGk=</hash>" +
|
||||||
|
"</file>" +
|
||||||
|
"</description>";
|
||||||
|
assertXMLEqual(descriptionXML, description.toXML().toString());
|
||||||
|
|
||||||
|
String contentXML = "<content creator='initiator' name='content' senders='initiator'>" +
|
||||||
|
descriptionXML +
|
||||||
|
transportXML +
|
||||||
|
"</content>";
|
||||||
|
assertXMLEqual(contentXML, content.toXML().toString());
|
||||||
|
|
||||||
|
String jingleXML =
|
||||||
|
"<jingle xmlns='urn:xmpp:jingle:1' " +
|
||||||
|
"action='session-initiate' " +
|
||||||
|
"initiator='" + romeo + "' " +
|
||||||
|
"sid='letsstart'>" +
|
||||||
|
contentXML +
|
||||||
|
"</jingle>";
|
||||||
|
String xml = JingleUtilTest.getIQXML(romeo, juliet, initiate.getStanzaId(), jingleXML);
|
||||||
|
assertXMLEqual(xml, initiate.toXML().toString());
|
||||||
|
}
|
||||||
|
}
|
|
@ -660,7 +660,7 @@ public class JingleUtil {
|
||||||
public IQ createErrorUnsupportedInfo(Jingle request) {
|
public IQ createErrorUnsupportedInfo(Jingle request) {
|
||||||
XMPPError.Builder error = XMPPError.getBuilder();
|
XMPPError.Builder error = XMPPError.getBuilder();
|
||||||
error.setCondition(XMPPError.Condition.feature_not_implemented)
|
error.setCondition(XMPPError.Condition.feature_not_implemented)
|
||||||
.addExtension(JingleError.UNSUPPORTED_INFO);
|
.addExtension(JingleError.UNSUPPORTED_INFO).setType(XMPPError.Type.MODIFY);
|
||||||
return IQ.createErrorResponse(request, error);
|
return IQ.createErrorResponse(request, error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -250,6 +250,23 @@ public class JingleUtilTest extends SmackTestSuite {
|
||||||
assertEquals(JingleContent.Creator.initiator, content.getCreator());
|
assertEquals(JingleContent.Creator.initiator, content.getCreator());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void createSessionTerminateIncompatibleParameters() throws IOException, SAXException {
|
||||||
|
Jingle terminate = jutil.createSessionTerminateIncompatibleParameters(juliet, "incompatibleSID");
|
||||||
|
String jingleXML =
|
||||||
|
"<jingle xmlns='urn:xmpp:jingle:1' " +
|
||||||
|
"action='session-terminate' " +
|
||||||
|
"sid='incompatibleSID'>" +
|
||||||
|
"<reason>" +
|
||||||
|
"<incompatible-parameters/>" +
|
||||||
|
"</reason>" +
|
||||||
|
"</jingle>";
|
||||||
|
String xml = getIQXML(romeo, juliet, terminate.getStanzaId(), jingleXML);
|
||||||
|
assertXMLEqual(xml, terminate.toXML().toString());
|
||||||
|
assertEquals(JingleReason.Reason.incompatible_parameters, terminate.getReason().asEnum());
|
||||||
|
assertEquals("incompatibleSID", terminate.getSid());
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void createErrorMalformedRequestTest() throws Exception {
|
public void createErrorMalformedRequestTest() throws Exception {
|
||||||
Jingle j = defaultJingle(romeo, "error123");
|
Jingle j = defaultJingle(romeo, "error123");
|
||||||
|
@ -330,14 +347,34 @@ public class JingleUtilTest extends SmackTestSuite {
|
||||||
"from='" + romeo + "' " +
|
"from='" + romeo + "' " +
|
||||||
"id='" + j.getStanzaId() + "' " +
|
"id='" + j.getStanzaId() + "' " +
|
||||||
"type='error'>" +
|
"type='error'>" +
|
||||||
"<error type='cancel'>" +
|
//"<error type='cancel'>" +
|
||||||
"<unexpected-result xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>" +
|
"<error type='modify'>" + //TODO: Why?
|
||||||
|
"<unexpected-request xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>" +
|
||||||
|
"<out-of-order xmlns='urn:xmpp:jingle:errors:1'/>" +
|
||||||
"</error>" +
|
"</error>" +
|
||||||
"</iq>";
|
"</iq>";
|
||||||
assertXMLEqual(xml, error.toXML().toString());
|
assertXMLEqual(xml, error.toXML().toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
private String getIQXML(FullJid from, FullJid to, String stanzaId, String jingleXML) {
|
@Test
|
||||||
|
public void createErrorUnsupportedInfoTest() throws IOException, SAXException {
|
||||||
|
Jingle j = defaultJingle(romeo, "thisstatementiswrong");
|
||||||
|
IQ error = jutil.createErrorUnsupportedInfo(j);
|
||||||
|
String xml =
|
||||||
|
"<iq " +
|
||||||
|
"to='" + romeo + "' " +
|
||||||
|
"from='" + romeo + "' " +
|
||||||
|
"id='" + j.getStanzaId() + "' " +
|
||||||
|
"type='error'>" +
|
||||||
|
"<error type='modify'>" +
|
||||||
|
"<feature-not-implemented xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>" +
|
||||||
|
"<unsupported-info xmlns='urn:xmpp:jingle:errors:1'/>" +
|
||||||
|
"</error>" +
|
||||||
|
"</iq>";
|
||||||
|
assertXMLEqual(xml, error.toXML().toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String getIQXML(FullJid from, FullJid to, String stanzaId, String jingleXML) {
|
||||||
return "<iq from='" + from + "' id='" + stanzaId + "' to='" + to + "' type='set'>" +
|
return "<iq from='" + from + "' id='" + stanzaId + "' to='" + to + "' type='set'>" +
|
||||||
jingleXML +
|
jingleXML +
|
||||||
"</iq>";
|
"</iq>";
|
||||||
|
|
Loading…
Reference in a new issue