summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarun Gupta <tarun1995gupta@gmail.com>2015-06-22 20:29:55 (GMT)
committerKevin Smith <kevin.smith@isode.com>2015-07-07 07:09:25 (GMT)
commitae1f4d65b253fa1a263556be7419836a37683dd2 (patch)
tree7628bd7b894e0dee72e61f7aba197ffb7bf28716 /test/com/isode/stroke/parser/StreamFeaturesParserTest.java
parentac54c7b41a869d5c8762ce57fb8e918f1ba557f0 (diff)
downloadstroke-ae1f4d65b253fa1a263556be7419836a37683dd2.zip
stroke-ae1f4d65b253fa1a263556be7419836a37683dd2.tar.bz2
Adds tests for Parser and Serializers.
Adds PubSubEvent Element. Adds StreamFeaturesSerializer. Adds ParserTester, ElementParserTester, StanzaParserTester, PayloadParserTester, PayloadsSerializer and EnumParser. Updates Error Payload, JingleFIleTransferHash Elements/ Updates StreamFeaturesParser, ParserElement. Updates Delay Serializer, Error Serializer. Updates AuthChallenge and AuthRequest Element. License: This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details. Test-Information: Test are added for: AuthChallenge Serializer, AuthRequest Serializer, AuthResponse Serializer, AuthSuccess Serializer. GenericPayloadTreeParserTest. IQ Parser. Message Parser. Presence Parser. StanzaAck Parser. Stanza Parser. StreamFeatures Parser and Serializer. StreamManagementEnabled Parser. Private Storage Parser and Serializer. RawXMLPayload Parser. Storage Parser and Serializer. Error Serializer. Jingle Serializer. PubSubItem Serializer and PubSubItems Serializer. Serializing Parser. All tests passes. Change-Id: I79e00dc5b5c4f85e659bf88b1547dd7c17825805
Diffstat (limited to 'test/com/isode/stroke/parser/StreamFeaturesParserTest.java')
-rw-r--r--test/com/isode/stroke/parser/StreamFeaturesParserTest.java118
1 files changed, 118 insertions, 0 deletions
diff --git a/test/com/isode/stroke/parser/StreamFeaturesParserTest.java b/test/com/isode/stroke/parser/StreamFeaturesParserTest.java
new file mode 100644
index 0000000..1a32a72
--- /dev/null
+++ b/test/com/isode/stroke/parser/StreamFeaturesParserTest.java
@@ -0,0 +1,118 @@
+/*
+ * Copyright (c) 2013 Isode Limited.
+ * All rights reserved.
+ * See the COPYING file for more information.
+ */
+/*
+ * Copyright (c) 2015 Tarun Gupta.
+ * Licensed under the simplified BSD license.
+ * See Documentation/Licenses/BSD-simplified.txt for more information.
+ */
+
+package com.isode.stroke.parser;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+import org.junit.Test;
+import com.isode.stroke.parser.StreamFeaturesParser;
+import com.isode.stroke.elements.StreamFeatures;
+import com.isode.stroke.parser.ElementParserTester;
+
+public class StreamFeaturesParserTest {
+
+ public StreamFeaturesParserTest() {
+
+ }
+
+ @Test
+ public void testParse() {
+ StreamFeaturesParser testling = new StreamFeaturesParser();
+ ElementParserTester parser = new ElementParserTester(testling);
+
+ assertTrue(parser.parse(
+ "<stream:features xmlns:stream='http://etherx.jabber.org/streams'>"
+ + "<starttls xmlns=\"urn:ietf:params:xml:ns:xmpp-tls\"/>"
+ + "<compression xmlns=\"http://jabber.org/features/compress\">"
+ + "<method>zlib</method>"
+ + "<method>lzw</method>"
+ + "</compression>"
+ + "<mechanisms xmlns=\"urn:ietf:params:xml:ns:xmpp-sasl\">"
+ + "<mechanism>DIGEST-MD5</mechanism>"
+ + "<mechanism>PLAIN</mechanism>"
+ + "</mechanisms>"
+ + "<bind xmlns=\"urn:ietf:params:xml:ns:xmpp-bind\"/>"
+ + "<sm xmlns='urn:xmpp:sm:2'/>"
+ + "<session xmlns=\"urn:ietf:params:xml:ns:xmpp-session\"/>"
+ + "<ver xmlns=\"urn:xmpp:features:rosterver\"/>"
+ + "</stream:features>"));
+
+ StreamFeatures element = (StreamFeatures)(testling.getElement());
+ assertTrue(element.hasStartTLS());
+ assertTrue(element.hasSession());
+ assertTrue(element.hasResourceBind());
+ assertTrue(element.hasCompressionMethod("zlib"));
+ assertTrue(element.hasCompressionMethod("lzw"));
+ assertTrue(element.hasAuthenticationMechanisms());
+ assertTrue(element.hasAuthenticationMechanism("DIGEST-MD5"));
+ assertTrue(element.hasAuthenticationMechanism("PLAIN"));
+ assertNull(element.getAuthenticationHostname());
+ assertTrue(element.hasStreamManagement());
+ assertTrue(element.hasRosterVersioning());
+ }
+
+ @Test
+ public void testParse_Empty() {
+ StreamFeaturesParser testling = new StreamFeaturesParser();
+ ElementParserTester parser = new ElementParserTester(testling);
+
+ assertTrue(parser.parse("<stream:features xmlns:stream='http://etherx.jabber.org/streams'/>"));
+
+ StreamFeatures element = (StreamFeatures)(testling.getElement());
+ assertFalse(element.hasStartTLS());
+ assertFalse(element.hasSession());
+ assertFalse(element.hasResourceBind());
+ assertFalse(element.hasAuthenticationMechanisms());
+ }
+
+
+ @Test
+ public void testParse_AuthenticationHostname() {
+ StreamFeaturesParser testling = new StreamFeaturesParser();
+ ElementParserTester parser = new ElementParserTester(testling);
+ String hostname = "auth42.us.example.com";
+
+ assertTrue(parser.parse(
+ "<stream:features xmlns:stream='http://etherx.jabber.org/streams'>"
+ + "<mechanisms xmlns=\"urn:ietf:params:xml:ns:xmpp-sasl\">"
+ + "<mechanism>GSSAPI</mechanism>"
+ + "<hostname xmlns=\"urn:xmpp:domain-based-name:1\">auth42.us.example.com</hostname>"
+ + "</mechanisms>"
+ + "</stream:features>"));
+
+ StreamFeatures element = (StreamFeatures)(testling.getElement());
+ assertTrue(element.hasAuthenticationMechanism("GSSAPI"));
+ assertEquals(element.getAuthenticationHostname(), hostname);
+ }
+
+
+ @Test
+ public void testParse_AuthenticationHostnameEmpty() {
+ StreamFeaturesParser testling = new StreamFeaturesParser();
+ ElementParserTester parser = new ElementParserTester(testling);
+
+ assertTrue(parser.parse(
+ "<stream:features xmlns:stream='http://etherx.jabber.org/streams'>"
+ + "<mechanisms xmlns=\"urn:ietf:params:xml:ns:xmpp-sasl\">"
+ + "<mechanism>GSSAPI</mechanism>"
+ + "<hostname xmlns=\"urn:xmpp:domain-based-name:1\"></hostname>"
+ + "</mechanisms>"
+ + "</stream:features>"));
+
+ StreamFeatures element = (StreamFeatures)(testling.getElement());
+ assertTrue(element.hasAuthenticationMechanism("GSSAPI"));
+ assertTrue(element.getAuthenticationHostname().isEmpty());
+ }
+} \ No newline at end of file