mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 09:45:59 +01:00
3e16b35162
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/branches/improve_bytestreams@11819 b35dd754-fafc-0310-a699-88a17e54d16e
81 lines
2.5 KiB
Java
81 lines
2.5 KiB
Java
/**
|
|
* 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.bytestreams.ibb.packet;
|
|
|
|
import static junit.framework.Assert.*;
|
|
import static org.custommonkey.xmlunit.XMLAssert.*;
|
|
|
|
import java.util.Properties;
|
|
|
|
import org.jivesoftware.smack.packet.IQ;
|
|
import org.jivesoftware.smackx.bytestreams.ibb.packet.Close;
|
|
import org.junit.Test;
|
|
|
|
import com.jamesmurty.utils.XMLBuilder;
|
|
|
|
/**
|
|
* Test for the Close class.
|
|
*
|
|
* @author Henning Staib
|
|
*/
|
|
public class CloseTest {
|
|
|
|
@Test(expected = IllegalArgumentException.class)
|
|
public void shouldNotInstantiateWithInvalidArguments1() {
|
|
new Close(null);
|
|
}
|
|
|
|
@Test(expected = IllegalArgumentException.class)
|
|
public void shouldNotInstantiateWithInvalidArguments2() {
|
|
new Close("");
|
|
}
|
|
|
|
@Test
|
|
public void shouldBeOfIQTypeSET() {
|
|
Close close = new Close("sessionID");
|
|
assertEquals(IQ.Type.SET, close.getType());
|
|
}
|
|
|
|
@Test
|
|
public void shouldSetAllFieldsCorrectly() {
|
|
Close close = new Close("sessionID");
|
|
assertEquals("sessionID", close.getSessionID());
|
|
}
|
|
|
|
private static Properties outputProperties = new Properties();
|
|
{
|
|
outputProperties.put(javax.xml.transform.OutputKeys.OMIT_XML_DECLARATION, "yes");
|
|
}
|
|
|
|
@Test
|
|
public void shouldReturnValidIQStanzaXML() throws Exception {
|
|
String control = XMLBuilder.create("iq")
|
|
.a("from", "romeo@montague.lit/orchard")
|
|
.a("to", "juliet@capulet.lit/balcony")
|
|
.a("id", "us71g45j")
|
|
.a("type", "set")
|
|
.e("close")
|
|
.a("xmlns", "http://jabber.org/protocol/ibb")
|
|
.a("sid", "i781hf64")
|
|
.asString(outputProperties);
|
|
|
|
Close close = new Close("i781hf64");
|
|
close.setFrom("romeo@montague.lit/orchard");
|
|
close.setTo("juliet@capulet.lit/balcony");
|
|
close.setPacketID("us71g45j");
|
|
|
|
assertXMLEqual(control, close.toXML());
|
|
}
|
|
|
|
}
|