2006-01-16 18:27:22 +01:00
|
|
|
/**
|
|
|
|
* $RCSfile$
|
|
|
|
* $Revision: 3177 $
|
|
|
|
* $Date: $
|
|
|
|
*
|
|
|
|
* Copyright 2003-2005 Jive Software.
|
|
|
|
*
|
|
|
|
* All rights reserved. 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;
|
|
|
|
|
2007-07-23 04:06:30 +02:00
|
|
|
import org.jivesoftware.smack.*;
|
|
|
|
import org.jivesoftware.smack.filter.PacketIDFilter;
|
|
|
|
import org.jivesoftware.smack.packet.IQ;
|
2006-09-14 21:16:40 +02:00
|
|
|
import org.jivesoftware.smack.test.SmackTestCase;
|
2007-07-23 04:06:30 +02:00
|
|
|
import org.jivesoftware.smackx.packet.Version;
|
2006-01-16 18:27:22 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Ensure that stream compression (JEP-138) is correctly supported by Smack.
|
|
|
|
*
|
|
|
|
* @author Gaston Dombiak
|
|
|
|
*/
|
|
|
|
public class CompressionTest extends SmackTestCase {
|
|
|
|
|
|
|
|
public CompressionTest(String arg0) {
|
|
|
|
super(arg0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that stream compression works fine. It is assumed that the server supports and has
|
|
|
|
* stream compression enabled.
|
|
|
|
*/
|
|
|
|
public void testSuccessCompression() throws XMPPException {
|
|
|
|
|
2006-01-17 21:05:31 +01:00
|
|
|
// Create the configuration for this new connection
|
|
|
|
ConnectionConfiguration config = new ConnectionConfiguration(getHost(), getPort());
|
|
|
|
config.setCompressionEnabled(true);
|
|
|
|
config.setSASLAuthenticationEnabled(true);
|
2006-01-16 18:27:22 +01:00
|
|
|
|
2006-01-17 21:05:31 +01:00
|
|
|
XMPPConnection connection = new XMPPConnection(config);
|
2006-09-14 21:16:40 +02:00
|
|
|
connection.connect();
|
2006-01-16 18:27:22 +01:00
|
|
|
|
|
|
|
// Login with the test account
|
|
|
|
connection.login("user0", "user0");
|
2006-01-23 21:56:26 +01:00
|
|
|
|
|
|
|
assertTrue("Connection is not using stream compression", connection.isUsingCompression());
|
|
|
|
|
2007-07-23 04:06:30 +02:00
|
|
|
// Request the version of the server
|
|
|
|
Version version = new Version();
|
|
|
|
version.setType(IQ.Type.GET);
|
|
|
|
version.setTo(getServiceName());
|
|
|
|
|
|
|
|
// Create a packet collector to listen for a response.
|
|
|
|
PacketCollector collector = connection.createPacketCollector(new PacketIDFilter(version.getPacketID()));
|
|
|
|
|
|
|
|
connection.sendPacket(version);
|
|
|
|
|
|
|
|
// Wait up to 5 seconds for a result.
|
|
|
|
IQ result = (IQ)collector.nextResult(SmackConfiguration.getPacketReplyTimeout());
|
|
|
|
// Close the collector
|
|
|
|
collector.cancel();
|
|
|
|
|
|
|
|
assertNotNull("No reply was received from the server", result);
|
|
|
|
assertEquals("Incorrect IQ type from server", IQ.Type.RESULT, result.getType());
|
|
|
|
|
2006-01-16 18:27:22 +01:00
|
|
|
// Close connection
|
2006-09-14 21:16:40 +02:00
|
|
|
connection.disconnect();
|
2006-01-16 18:27:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected int getMaxConnections() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Just create an account.
|
|
|
|
*/
|
|
|
|
protected void setUp() throws Exception {
|
|
|
|
super.setUp();
|
2007-01-05 00:00:58 +01:00
|
|
|
XMPPConnection setupConnection = new XMPPConnection(getServiceName());
|
2006-09-14 21:16:40 +02:00
|
|
|
setupConnection.connect();
|
2006-01-16 18:27:22 +01:00
|
|
|
if (!setupConnection.getAccountManager().supportsAccountCreation())
|
|
|
|
fail("Server does not support account creation");
|
|
|
|
|
|
|
|
// Create the test account
|
|
|
|
try {
|
|
|
|
setupConnection.getAccountManager().createAccount("user0", "user0");
|
|
|
|
} catch (XMPPException e) {
|
|
|
|
// Do nothing if the accout already exists
|
|
|
|
if (e.getXMPPError().getCode() != 409) {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes the created account for the test.
|
|
|
|
*/
|
|
|
|
protected void tearDown() throws Exception {
|
|
|
|
super.tearDown();
|
2007-01-05 00:00:58 +01:00
|
|
|
XMPPConnection setupConnection = createConnection();
|
2006-09-14 21:16:40 +02:00
|
|
|
setupConnection.connect();
|
2006-01-16 18:27:22 +01:00
|
|
|
setupConnection.login("user0", "user0");
|
|
|
|
// Delete the created account for the test
|
|
|
|
setupConnection.getAccountManager().deleteAccount();
|
|
|
|
// Close the setupConnection
|
2006-09-14 21:16:40 +02:00
|
|
|
setupConnection.disconnect();
|
2006-01-16 18:27:22 +01:00
|
|
|
}
|
2007-01-05 00:00:58 +01:00
|
|
|
}
|