Package org.apache.vysper.xmpp.modules.core.base.handler

Examples of org.apache.vysper.xmpp.modules.core.base.handler.TestIQHandler


    public void testLookupSpecializedIQHandler() {
        StanzaHandlerLookup stanzaHandlerLookup = initStanzaHandlerLookup();
        stanzaHandlerLookup.addDictionary(new BaseStreamStanzaDictionary());

        NamespaceHandlerDictionary testDictionary = new NamespaceHandlerDictionary("test:namespace:OK");
        testDictionary.register(new TestIQHandler("testOK", "test:namespace:OK"));
        stanzaHandlerLookup.addDictionary(testDictionary);

        Stanza stanza = buildStanza("testOK", "test:namespace:FAIL");
        StanzaHandler handler = stanzaHandlerLookup.getHandler(stanza);
        assertTrue("handler not found for NS", handler instanceof ServiceUnavailableStanzaErrorHandler);
View Full Code Here


    public void testLookupSpecializedIQHandler() {
        StanzaHandlerLookup stanzaHandlerLookup = initStanzaHandlerLookup();
        stanzaHandlerLookup.addDictionary(new BaseStreamStanzaDictionary());

        NamespaceHandlerDictionary testDictionary = new NamespaceHandlerDictionary("test:namespace:OK");
        testDictionary.register(new TestIQHandler("testOK", "test:namespace:OK"));
        stanzaHandlerLookup.addDictionary(testDictionary);

        Stanza stanza = buildStanza("testOK", "test:namespace:FAIL");
        StanzaHandler handler = stanzaHandlerLookup.getHandler(stanza);
        assertTrue("handler not found for NS", handler instanceof ServiceUnavailableStanzaErrorHandler);
View Full Code Here

TOP

Related Classes of org.apache.vysper.xmpp.modules.core.base.handler.TestIQHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.