From 89981124c0e16663316b207e9d1cb44b9f1efb61 Mon Sep 17 00:00:00 2001 From: Gaston Dombiak Date: Thu, 23 Dec 2004 19:05:27 +0000 Subject: [PATCH] Initial version. git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2434 b35dd754-fafc-0310-a699-88a17e54d16e --- test/org/jivesoftware/smack/IQTest.java | 78 +++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 test/org/jivesoftware/smack/IQTest.java diff --git a/test/org/jivesoftware/smack/IQTest.java b/test/org/jivesoftware/smack/IQTest.java new file mode 100644 index 000000000..3db04417e --- /dev/null +++ b/test/org/jivesoftware/smack/IQTest.java @@ -0,0 +1,78 @@ +/** + * $RCSfile$ + * $Revision$ + * $Date$ + * + * Copyright 2003-2004 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.smack; + +import org.jivesoftware.smack.test.SmackTestCase; +import org.jivesoftware.smack.packet.IQ; +import org.jivesoftware.smack.filter.PacketFilter; +import org.jivesoftware.smack.filter.AndFilter; +import org.jivesoftware.smack.filter.PacketIDFilter; +import org.jivesoftware.smack.filter.PacketTypeFilter; + +/** + * Ensure that the server is handling IQ packets correctly. + * + * @author Gaston Dombiak + */ +public class IQTest extends SmackTestCase { + + public IQTest(String arg0) { + super(arg0); + } + + /** + * Check that the server responds a 503 error code when the client sends an IQ packet with an + * invalid namespace. + */ + public void testInvalidNamespace() { + IQ iq = new IQ() { + public String getChildElementXML() { + StringBuffer buf = new StringBuffer(); + buf.append(""); + buf.append(""); + return buf.toString(); + } + }; + + PacketFilter filter = new AndFilter(new PacketIDFilter(iq.getPacketID()), + new PacketTypeFilter(IQ.class)); + PacketCollector collector = getConnection(0).createPacketCollector(filter); + // Send the iq packet with an invalid namespace + getConnection(0).sendPacket(iq); + + IQ result = (IQ)collector.nextResult(SmackConfiguration.getPacketReplyTimeout()); + // Stop queuing results + collector.cancel(); + if (result == null) { + fail("No response from server"); + } + else if (result.getType() != IQ.Type.ERROR) { + fail("The server didn't reply with an error packet"); + } + else { + assertEquals("Server answered an incorrect error code", 503, result.getError().getCode()); + } + } + + protected int getMaxConnections() { + return 1; + } +}