📄 testfailsafeasync.java
字号:
/*------------------------------------------------------------------------------Name: TestFailSafeAsync.javaProject: xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.test.client;import java.util.logging.Logger;import java.util.logging.Level;import org.xmlBlaster.util.Global;import org.xmlBlaster.util.def.Constants;import org.xmlBlaster.util.property.PropString;import org.xmlBlaster.util.XmlBlasterException;import org.xmlBlaster.util.EmbeddedXmlBlaster;import org.xmlBlaster.client.qos.ConnectQos;import org.xmlBlaster.client.I_XmlBlasterAccess;import org.xmlBlaster.client.key.PublishKey;import org.xmlBlaster.client.qos.PublishQos;import org.xmlBlaster.client.key.UpdateKey;import org.xmlBlaster.client.qos.UpdateQos;import org.xmlBlaster.client.qos.EraseQos;import org.xmlBlaster.client.qos.EraseReturnQos;import org.xmlBlaster.client.I_Callback;import org.xmlBlaster.client.I_ConnectionStateListener;import org.xmlBlaster.util.qos.address.Address;import org.xmlBlaster.util.MsgUnit;import org.xmlBlaster.util.dispatch.ConnectionStateEnum;import org.xmlBlaster.test.Util;import org.xmlBlaster.test.MsgInterceptor;import junit.framework.*;/** * Tests the fail save behavior of the I_XmlBlasterAccess client helper class, * especially the asynchronous playback of messages. * <p /> * When the connection to xmlBlaster is lost, and you continue to publish messages * they are stored locally with the invocation recorder on harddisk.<br /> * On reconnect they are flushed with an adjustable rate in background.<br /> * If your client code decides to publish new messages during playback recovery, * your new messages will overtake some of the play back messages. * <p /> * If you want guaranteed sequence, please don't send messages during playback. * <p /> * Invoke examples:<br /> * <pre> * java junit.textui.TestRunner -noloading org.xmlBlaster.test.client.TestFailSafeAsync * java junit.swingui.TestRunner -noloading org.xmlBlaster.test.client.TestFailSafeAsync * </pre> */public class TestFailSafeAsync extends TestCase implements I_Callback, I_ConnectionStateListener{ private static String ME = "TestFailSafeAsync"; private Global glob; private static Logger log = Logger.getLogger(TestFailSafeAsync.class.getName()); private boolean messageArrived = false; private int serverPort = 7604; private EmbeddedXmlBlaster serverThread; private MsgInterceptor updateInterceptor; private I_XmlBlasterAccess con; private String senderName; private int numReceived; private int numTailbackReceived; private int numNormalPublishReceived; private final String contentMime = "text/plain"; private boolean reconnected; private boolean allTailbackAreFlushed; /** TEST: Sendin 0-19 directly, sending 20-39 to recorder (no connection), sending 40-100 directly */ private final int maxEntries = 100; private final int failMsg = 20; private final int reconnectMsg = 40; /** publish rate msg/sec */ private final long publishRate = 5; /** publish rate of tailback msg/sec */ private final long pullbackRate = 1; PublishKey publishKeyWrapper; PublishQos publishQosWrapper; public TestFailSafeAsync(String testName) { this(null, testName); } public TestFailSafeAsync(Global glob, String testName) { super(testName); this.glob = glob; this.senderName = testName; } /** * Sets up the fixture. * <p /> * Connect to xmlBlaster and login */ protected void setUp() { this.glob = (this.glob == null) ? new Global() : this.glob; numReceived = 0; numTailbackReceived = 0; numNormalPublishReceived = 0; reconnected = false; allTailbackAreFlushed = true; glob.init(Util.getOtherServerPorts(serverPort)); serverThread = EmbeddedXmlBlaster.startXmlBlaster(Util.getOtherServerPorts(serverPort)); try { numReceived = 0; con = glob.getXmlBlasterAccess(); // Find server String passwd = "secret"; ConnectQos connectQos = new ConnectQos(glob, senderName, passwd); // Setup fail save handling ... Address addressProp = new Address(glob); addressProp.setDelay(400L); // retry connecting every 400 milli sec addressProp.setRetries(-1); // -1 == forever addressProp.setPingInterval(400L); // ping every 400 milli second con.registerConnectionListener(this); connectQos.setAddress(addressProp); this.updateInterceptor = new MsgInterceptor(this.glob, log, this); // Collect received msgs // and do the login ... con.connect(connectQos, this.updateInterceptor); // Login to xmlBlaster } catch (XmlBlasterException e) { log.warning("setUp() - login failed: " + e.toString()); fail("setUp() - login failed: " + e.toString()); } catch (Exception e) { log.severe("setUp() - login failed: " + e.toString()); e.printStackTrace(); fail("setUp() - login failed: " + e.toString()); } publishKeyWrapper = new PublishKey(glob, "emptyOid", contentMime); publishKeyWrapper.setClientTags("<TestFailSafeAsync-AGENT id='192.168.124.10' subId='1' type='generic'/>"); /* String xmlKey = "<key oid='" + oid + "' contentMime='" + contentMime + "'>\n" + " <TestFailSafeAsync-AGENT id='192.168.124.10' subId='1' type='generic'>" + " </TestFailSafeAsync-AGENT>" + "</key>"; */ publishQosWrapper = new PublishQos(glob); // == "<qos></qos>" } /** * Tears down the fixture. * <p /> * cleaning up .... erase() the previous message OID and logout */ protected void tearDown() { log.info("Entering tearDown(), test is finished"); String xmlKey = "<key oid='' queryType='XPATH'>\n" + " //TestFailSafeAsync-AGENT" + "</key>"; //String eraseQos = "<qos><notify>false</notify></qos>"; EraseQos eraseQos = new EraseQos(glob); eraseQos.setForceDestroy(true); try { try { EraseReturnQos[] arr = con.erase(xmlKey, eraseQos.toXml()); PropString defaultPlugin = new PropString("CACHE,1.0"); String propName = defaultPlugin.setFromEnv(this.glob, glob.getStrippedId(), null, "persistence", Constants.RELATING_TOPICSTORE, "defaultPlugin"); log.info("Lookup of propName=" + propName + " defaultValue=" + defaultPlugin.getValue()); if (defaultPlugin.getValue().startsWith("RAM")) assertEquals("Wrong number of message erased", (maxEntries-failMsg), arr.length); // expect 80 to delete as the first 20 are lost when server 'crashed' else assertEquals("Wrong number of message erased", maxEntries, arr.length); } catch(XmlBlasterException e) { assertTrue("tearDown - XmlBlasterException: " + e.getMessage(), false); } con.disconnect(null); } finally { try { Thread.sleep(200L); } catch( InterruptedException i) {} // Wait some time EmbeddedXmlBlaster.stopXmlBlaster(this.serverThread); this.serverThread = null; // reset to default server bootstrapPort (necessary if other tests follow in the same JVM). Util.resetPorts(glob); this.glob = null; this.con = null; this.updateInterceptor = null; Global.instance().shutdown(); publishKeyWrapper = null; publishQosWrapper = null; } } /** * TEST: Subscribe to messages with XPATH. */ public void subscribe() { if (log.isLoggable(Level.FINE)) log.fine("Subscribing using EXACT oid syntax ..."); String xmlKey = "<key oid='' queryType='XPATH'>\n" + " //TestFailSafeAsync-AGENT" + "</key>"; String qos = "<qos></qos>"; try { String subscribeOid = con.subscribe(xmlKey, qos).getSubscriptionId(); log.info("Success: Subscribe on " + subscribeOid + " done"); assertTrue("returned null subscribeOid", subscribeOid != null); } catch(XmlBlasterException e) { log.warning("XmlBlasterException: " + e.getMessage()); assertTrue("subscribe - XmlBlasterException: " + e.getMessage(), false); } } /** * Construct a message and publish it. */ public void publish(int counter) { if (log.isLoggable(Level.FINE)) log.fine("Publishing a message ..."); long publishDelay = 1000/publishRate; // 20 msg/sec -> send every 50 milli one String oid = "MSG-" + counter; try { publishKeyWrapper.setOid(oid); String content = "" + counter; MsgUnit msgUnit = new MsgUnit(publishKeyWrapper.toXml(), content.getBytes(), publishQosWrapper.toXml()); con.publish(msgUnit); Util.delay(publishDelay); // Wait some time } catch(XmlBlasterException e) { fail(ME + ": Publish failed: " + e.toString()); } log.info("Success: Publishing of " + oid + " done"); } /** * TEST: Sendin 0-19 directly, sending 20-39 to recorder (no connection), sending 40-100 directly */ public void testFailSafe() { // subscribe(); see reachedAlive() for (int ii=0; ii<maxEntries; ii++) { if (ii==failMsg) { EmbeddedXmlBlaster.stopXmlBlaster(this.serverThread); this.serverThread = null; Util.delay(600L); // Wait some time, ping should activate login polling log.info("lostConnection, sending message " + ii + " - " + (reconnectMsg-1)); } if (ii==reconnectMsg) { serverThread = EmbeddedXmlBlaster.startXmlBlaster(Util.getOtherServerPorts(serverPort)); while (true) { if (reconnected == true) break; Util.delay(10L); // Wait some time, to allow the login poller to reconnect } log.info("Reconnected, sending message " + ii + " - " + (maxEntries-1)); } publish(ii); } int numFailsave = reconnectMsg-failMsg; // 20 int numPublish = maxEntries-numFailsave; // 80 long wait = 5000L + (long)((1000.0 * numPublish / publishRate) + (1000.0 * numFailsave / pullbackRate)); assertEquals("", maxEntries, this.updateInterceptor.waitOnUpdate(wait, maxEntries)); log.info("******* testFailSafe() DONE"); } public void reachedAlive(ConnectionStateEnum oldState, I_XmlBlasterAccess connection) { log.info("I_ConnectionStateListener: We were lucky, (re)connected to xmlBlaster"); subscribe(); // initialize subscription again reconnected = true; allTailbackAreFlushed = true; } public void reachedPolling(ConnectionStateEnum oldState, I_XmlBlasterAccess connection) { if (log != null) log.warning("I_ConnectionStateListener: Lost connection to xmlBlaster"); allTailbackAreFlushed = false; } public void reachedDead(ConnectionStateEnum oldState, I_XmlBlasterAccess connection) { if (log != null) log.severe("DEBUG ONLY: Changed from connection state " + oldState + " to " + ConnectionStateEnum.DEAD); } /** * This is the callback method invoked from xmlBlaster * delivering us a new asynchronous message. * @see org.xmlBlaster.client.I_Callback#update(String, UpdateKey, byte[], UpdateQos) */ public String update(String cbSessionId, UpdateKey updateKey, byte[] content, UpdateQos updateQos) { synchronized (this) { String oid = updateKey.getOid(); if (updateQos.isErased()) { return ""; } numReceived++; assertEquals("Wrong sender", senderName, updateQos.getSender().getLoginName()); assertEquals("Message contentMime is corrupted", contentMime, updateKey.getContentMime()); int ii = 0; try { ii = Integer.parseInt(oid.substring("MSG-".length())); } catch(NumberFormatException e) { log.severe("Can't extract message number " + oid); fail("Can't extract message number " + oid); } if (ii >= failMsg && ii < reconnectMsg) numTailbackReceived++; else numNormalPublishReceived++; // Check content try { int contentCounter = 0; String cnt = new String(content); contentCounter = Integer.parseInt(cnt); assertEquals("Wrong counter in content", ii, contentCounter); } catch(NumberFormatException e) { log.severe("Can't extract message number '" + new String(content) + "': " + updateQos.toXml()); } log.info("Update message oid=" + oid + " numReceived=" + numReceived + ", numNormalPublishReceived=" + numNormalPublishReceived + " numTailbackReceived=" + numTailbackReceived + " ..."); /* NOT SUPPORTED ANYMORE SINCE CLIENT SIDE QUEUE EMBEDDING (before supported by Recorder framework) // Check here async behavior: if (numReceived == 80) { int expectedTailback = (int)((80.-reconnectMsg)*(1.*pullbackRate/publishRate)); int diff = Math.abs(numTailbackReceived - expectedTailback); if (diff > 6) { String text = "Expected tailback updates = " + expectedTailback + " but got " + numTailbackReceived; log.severe(text); fail(text); } log.info("TEST SUCCESS: Expected tailback updates = " + expectedTailback + " and got " + numTailbackReceived); } */ messageArrived = true; } // synchronized as we have the client as publisher and the invocation recorder as a publisher return ""; } /** * Invoke: java org.xmlBlaster.test.client.TestFailSafeAsync * @deprecated Use the TestRunner from the testsuite to run it:<p /> * <pre> java -Djava.compiler= junit.textui.TestRunner org.xmlBlaster.test.client.TestFailSafeAsync</pre> */ public static void main(String args[]) { Global glob = new Global(); if (glob.init(args) != 0) { log.severe("Init failed"); System.exit(1); } TestFailSafeAsync testSub = new TestFailSafeAsync(glob, "TestFailSafeAsync"); testSub.setUp(); testSub.testFailSafe(); testSub.tearDown(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -