⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testlogout.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
/*------------------------------------------------------------------------------Name:      TestLogout.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.test.authentication;import java.util.logging.Logger;import junit.framework.TestCase;import org.xmlBlaster.client.I_Callback;import org.xmlBlaster.client.I_XmlBlasterAccess;import org.xmlBlaster.client.key.UpdateKey;import org.xmlBlaster.client.qos.ConnectQos;import org.xmlBlaster.client.qos.UpdateQos;import org.xmlBlaster.util.Global;import org.xmlBlaster.util.XmlBlasterException;/** */public class TestLogout extends TestCase implements I_Callback{   private static String ME = "TestLogout";   private final Global glob;   private static Logger log = Logger.getLogger(TestLogout.class.getName());   private I_XmlBlasterAccess con;   /**    * Constructs the TestLogout object from out main().    */   public TestLogout(Global glob) {      super("TestLogout");      this.glob = glob;   }   /**    * Constructs the TestLogout object from junit.    */   public TestLogout(String name) {      super(name);      this.glob = new Global();   }   /**    * Connect to xmlBlaster.    */   protected void setUp() {      try {         con = glob.getXmlBlasterAccess(); // Find orb         /*         con.initFailSave(new I_ConnectionStateListener() {               public void reConnected() {                  log.info("I_ConnectionStateListener: We were lucky, reconnected to " + glob.getId());                  try {                     con.flushQueue();    // send all tailback messages                  } catch (XmlBlasterException e) {                     log.severe("Exception during reconnection recovery: " + e.getMessage());                  }               }               public void lostConnection() {                  log.warning("I_ConnectionStateListener: Lost connection to " + glob.getId());               }            });         */         ConnectQos qos = new ConnectQos(glob, ME, "secret");         con.connect(qos, this); // Login to xmlBlaster         log.info("Successful login");      }      catch (XmlBlasterException e) {         log.severe(e.toString());         e.printStackTrace();      }   }   /**    * Tears down the fixture.    * <p />    * cleaning up .... erase() the previous message OID and logout    */   protected void tearDown() {      if (con != null) con.disconnect(null);   }   /**    */   public void testDisconnect() {      log.info("*** Enter testDisconnect() ...");      if (con.disconnect(null) == false) {         log.severe("Expected successful disconnect");         fail("Expected successful disconnect");      }      if (con.disconnect(null) == true) {         log.severe("Expected disconnect to fail, we have disconnected already");         fail("Expected disconnect to fail, we have disconnected already");      }      con = null;      log.info("*** Leave testDisconnect() ...");   }   /**    */   public String update(String cbSessionId, UpdateKey updateKey, byte[] content, UpdateQos updateQos) {      fail("Receiving update of a message " + updateKey.getOid());      return "";   }   /**    * Invoke: java org.xmlBlaster.test.authentication.TestLogout    * <p />    * <pre>java -Djava.compiler= junit.textui.TestRunner -noloading org.xmlBlaster.test.authentication.TestLogout</pre>    */   public static void main(String args[]) {      Global glob = new Global();      if (glob.init(args) != 0) {         System.exit(1);      }      TestLogout testSub = new TestLogout(glob);      testSub.setUp();      testSub.testDisconnect();      testSub.tearDown();   }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -