xmlBlaster 2.2.0 API

org.xmlBlaster.test.qos
Class TestUnSub

java.lang.Object
  extended by junit.framework.Assert
      extended by junit.framework.TestCase
          extended by org.xmlBlaster.test.qos.TestUnSub
All Implemented Interfaces:
junit.framework.Test, I_Callback

public class TestUnSub
extends junit.framework.TestCase
implements I_Callback

This client tests the method subscribe() with XPath query and with a later unSubscribe().
Multiple identical subscribes shouldn't harm and all following are ignored.

This client may be invoked multiple time on the same xmlBlaster server, as it cleans up everything after his tests are done.

Invoke examples:

    java junit.textui.TestRunner org.xmlBlaster.test.qos.TestUnSub
    java junit.swingui.TestRunner org.xmlBlaster.test.qos.TestUnSub
 


Field Summary
private  java.lang.String contentMime
           
private  java.lang.String contentMimeExtended
           
private  Global glob
           
private static java.util.logging.Logger log
           
private static java.lang.String ME
           
private  boolean messageArrived
           
private  int numReceived
           
private  java.lang.String publishOid
           
private  java.lang.String receiverName
           
private  I_XmlBlasterAccess senderConnection
           
private  java.lang.String senderContent
           
private  java.lang.String senderName
           
private  java.lang.String subscribeOid
           
private  java.lang.String xpath
           
 
Constructor Summary
TestUnSub(Global glob, java.lang.String testName, java.lang.String loginName)
          Constructs the TestUnSub object.
 
Method Summary
 void doPublish()
          TEST: Construct a message and publish it.
static void main(java.lang.String[] args)
          Deprecated. Use the TestRunner from the testsuite to run it:

   java -Djava.compiler= junit.textui.TestRunner org.xmlBlaster.test.qos.TestUnSub
protected  void setUp()
          Sets up the fixture (login).
 void subscribeXPath()
          TEST: Subscribe to messages with XPATH.
static junit.framework.Test suite()
          Method is used by TestRunner to load these tests
protected  void tearDown()
          Tears down the fixture (logout).
 void testSubscribeUnSubscribeEmpty()
          TEST: subscribe and unSubscribe on an empty topic (without a publish)
 void testSubscribeUnSubscribeExact()
          TEST: Publish a message, subscribe on it with XPATH and unSubscribe again with the returned oid.
 void testSubscribeUnSubscribeOid()
          TEST: subscribe and unSubscribe on an empty topic (without a publish) The unSubscribe is done with an oid instead of a subId
 void testSubscribeUnSubscribeXPath()
          TEST: Publish a message, subscribe on it with XPATH and unSubscribe again with the same XPATH query.
 void unSubscribeExact()
          TEST: UnSubscribe to messages with EXACT oid (which was returned from our XPATH subscription).
 void unSubscribeXPath()
          TEST: UnSubscribe to messages with XPATH.
 java.lang.String update(java.lang.String cbSessionId, UpdateKey updateKey, byte[] content, UpdateQos updateQos)
          This is the callback method invoked from xmlBlaster delivering us a new asynchronous message.
private  void waitOnUpdate(long timeout)
          Little helper, waits until the variable 'messageArrive' is set to true, or returns when the given timeout occurs.
 
Methods inherited from class junit.framework.TestCase
countTestCases, createResult, getName, run, run, runBare, runTest, setName, toString
 
Methods inherited from class junit.framework.Assert
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

ME

private static java.lang.String ME

glob

private final Global glob

log

private static java.util.logging.Logger log

messageArrived

private boolean messageArrived

subscribeOid

private java.lang.String subscribeOid

publishOid

private java.lang.String publishOid

senderConnection

private I_XmlBlasterAccess senderConnection

senderName

private java.lang.String senderName

senderContent

private java.lang.String senderContent

receiverName

private java.lang.String receiverName

xpath

private java.lang.String xpath

numReceived

private int numReceived

contentMime

private final java.lang.String contentMime
See Also:
Constant Field Values

contentMimeExtended

private final java.lang.String contentMimeExtended
See Also:
Constant Field Values
Constructor Detail

TestUnSub

public TestUnSub(Global glob,
                 java.lang.String testName,
                 java.lang.String loginName)
Constructs the TestUnSub object.

Parameters:
testName - The name used in the test suite
loginName - The name to login to the xmlBlaster
Method Detail

setUp

protected void setUp()
Sets up the fixture (login).

Connect to xmlBlaster and login

Overrides:
setUp in class junit.framework.TestCase

tearDown

protected void tearDown()
Tears down the fixture (logout).

cleaning up .... erase() the previous message OID and logout

Overrides:
tearDown in class junit.framework.TestCase

subscribeXPath

public void subscribeXPath()
TEST: Subscribe to messages with XPATH.

The returned subscribeOid is checked


unSubscribeXPath

public void unSubscribeXPath()
TEST: UnSubscribe to messages with XPATH.


unSubscribeExact

public void unSubscribeExact()
TEST: UnSubscribe to messages with EXACT oid (which was returned from our XPATH subscription).


doPublish

public void doPublish()
TEST: Construct a message and publish it.

The returned publishOid is checked


testSubscribeUnSubscribeOid

public void testSubscribeUnSubscribeOid()
TEST: subscribe and unSubscribe on an empty topic (without a publish) The unSubscribe is done with an oid instead of a subId


testSubscribeUnSubscribeEmpty

public void testSubscribeUnSubscribeEmpty()
TEST: subscribe and unSubscribe on an empty topic (without a publish)


testSubscribeUnSubscribeExact

public void testSubscribeUnSubscribeExact()
TEST: Publish a message, subscribe on it with XPATH and unSubscribe again with the returned oid.


testSubscribeUnSubscribeXPath

public void testSubscribeUnSubscribeXPath()
TEST: Publish a message, subscribe on it with XPATH and unSubscribe again with the same XPATH query.


update

public java.lang.String update(java.lang.String cbSessionId,
                               UpdateKey updateKey,
                               byte[] content,
                               UpdateQos updateQos)
This is the callback method invoked from xmlBlaster delivering us a new asynchronous message.

Specified by:
update in interface I_Callback
Parameters:
cbSessionId - The session ID specified by the client which registered the callback. You can specify a cbSessionId during connection (with ConnectQos) and this is bounced back here so you can authenticate the message.
updateKey - The arrived key containing the topic name
content - The arrived message content. This is your payload.
See Also:
I_Callback.update(String, UpdateKey, byte[], UpdateQos)

waitOnUpdate

private void waitOnUpdate(long timeout)
Little helper, waits until the variable 'messageArrive' is set to true, or returns when the given timeout occurs.

Parameters:
timeout - in milliseconds

suite

public static junit.framework.Test suite()
Method is used by TestRunner to load these tests


main

public static void main(java.lang.String[] args)
Deprecated. Use the TestRunner from the testsuite to run it:

   java -Djava.compiler= junit.textui.TestRunner org.xmlBlaster.test.qos.TestUnSub

Invoke: java org.xmlBlaster.test.qos.TestUnSub


xmlBlaster 2.2.0 API

Copyright © 1999-2014 The xmlBlaster.org contributers.