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

📄 commandwrappertest.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
package org.xmlBlaster.test.classtest;import java.util.logging.Logger;import java.util.logging.Level;import org.xmlBlaster.util.StopWatch;import org.xmlBlaster.client.qos.GetQos;import org.xmlBlaster.engine.ServerScope;import org.xmlBlaster.util.XmlBlasterException;import org.xmlBlaster.util.def.MethodName;import org.xmlBlaster.util.key.QueryKeyData;import org.xmlBlaster.util.qos.ClientProperty;import org.xmlBlaster.util.qos.QueryQosData;import org.xmlBlaster.engine.admin.CommandWrapper;import junit.framework.*;/** * Test CommandWrapper class.  * <p /> * Invoke: java -Djava.compiler= junit.textui.TestRunner org.xmlBlaster.test.classtest.CommandWrapperTest * * @see org.xmlBlaster.engine.admin.CommandWrapper */public class CommandWrapperTest extends TestCase {   private String ME = "CommandWrapperTest";   protected ServerScope glob;   private static Logger log = Logger.getLogger(CommandWrapperTest.class.getName());   private StopWatch stopWatch = new StopWatch();   public CommandWrapperTest(String name) {      super(name);   }   protected void setUp() {      glob = new ServerScope();      glob.setId("heron");   }   protected void tearDown() {   }   public void testBasic() {      assertEquals("Wrong node id", "heron", glob.getId());      String cmd = null;      CommandWrapper w = null;      try {         cmd = "/node/heron/client/joe/?sessionList";         w = new CommandWrapper(glob, cmd);         assertEquals("Command '" + cmd + "' wrong parsed", "node", w.getRoot());         assertEquals("Command '" + cmd + "' wrong parsed", "heron", w.getClusterNodeId());         assertEquals("Command '" + cmd + "' wrong parsed", "client", w.getThirdLevel());         assertEquals("Command '" + cmd + "' wrong parsed", "joe/?sessionList", w.getTail());               cmd = "/node/heron/client/joe/";         w = new CommandWrapper(glob, cmd);         assertEquals("Command '" + cmd + "' wrong parsed", "node", w.getRoot());         assertEquals("Command '" + cmd + "' wrong parsed", "heron", w.getClusterNodeId());         assertEquals("Command '" + cmd + "' wrong parsed", "client", w.getThirdLevel());         assertEquals("Command '" + cmd + "' wrong parsed", "joe/", w.getTail());         cmd = "/node/heron/client/joe";         w = new CommandWrapper(glob, cmd);         assertEquals("Command '" + cmd + "' wrong parsed", "node", w.getRoot());         assertEquals("Command '" + cmd + "' wrong parsed", "heron", w.getClusterNodeId());         assertEquals("Command '" + cmd + "' wrong parsed", "client", w.getThirdLevel());         assertEquals("Command '" + cmd + "' wrong parsed", "joe", w.getTail());         cmd = "/node/heron/client/";         w = new CommandWrapper(glob, cmd);         assertEquals("Command '" + cmd + "' wrong parsed", "node", w.getRoot());         assertEquals("Command '" + cmd + "' wrong parsed", "heron", w.getClusterNodeId());         assertEquals("Command '" + cmd + "' wrong parsed", "client", w.getThirdLevel());         assertEquals("Command '" + cmd + "' wrong parsed", null, w.getTail());         cmd = "/node/heron/client";         w = new CommandWrapper(glob, cmd);         assertEquals("Command '" + cmd + "' wrong parsed", "/node/heron/client", w.getCommand());         assertEquals("Command '" + cmd + "' wrong parsed", "node", w.getRoot());         assertEquals("Command '" + cmd + "' wrong parsed", "heron", w.getClusterNodeId());         assertEquals("Command '" + cmd + "' wrong parsed", "client", w.getThirdLevel());         assertEquals("Command '" + cmd + "' wrong parsed", null, w.getTail());         cmd = "client/joe/?sessionList";         w = new CommandWrapper(glob, cmd);         assertEquals("Command '" + cmd + "' wrong parsed", "node", w.getRoot());         assertEquals("Command '" + cmd + "' wrong parsed", "heron", w.getClusterNodeId());         assertEquals("Command '" + cmd + "' wrong parsed", "client", w.getThirdLevel());         assertEquals("Command '" + cmd + "' wrong parsed", "joe/?sessionList", w.getTail());               cmd = "client";         w = new CommandWrapper(glob, cmd);         assertEquals("Command '" + cmd + "' wrong parsed", "/node/heron/client", w.getCommand());         assertEquals("Command '" + cmd + "' wrong parsed", "node", w.getRoot());         assertEquals("Command '" + cmd + "' wrong parsed", "heron", w.getClusterNodeId());         assertEquals("Command '" + cmd + "' wrong parsed", "client", w.getThirdLevel());         assertEquals("Command '" + cmd + "' wrong parsed", null, w.getTail());      }      catch(XmlBlasterException e) {         fail("Failed: " + e.toString());      }   }   public void testInvalid() {      assertEquals("Wrong node id", "heron", glob.getId());      String cmd = null;      CommandWrapper w = null;      try {         cmd = "/node/heron/";         w = new CommandWrapper(glob, cmd);         fail("Failed, expected exception for '" + cmd + "'");      }      catch(XmlBlasterException e) {         System.out.println("OK - expected Exception: " + e.toString());      }      try {         cmd = "/node/foeignNode/client/?joe";         w = new CommandWrapper(glob, cmd);         fail("Failed, expected exception for '" + cmd + "'");      }      catch(XmlBlasterException e) {         System.out.println("OK - expected Exception: " + e.toString());      }      try {         cmd = "/strangeNode/heron/client/?joe";         w = new CommandWrapper(glob, cmd);         fail("Failed, expected exception for '" + cmd + "'");      }      catch(XmlBlasterException e) {         System.out.println("OK - expected Exception: " + e.toString());      }      try {         cmd = "/node/";         w = new CommandWrapper(glob, cmd);         fail("Failed, expected exception for '" + cmd + "'");      }      catch(XmlBlasterException e) {         System.out.println("OK - expected Exception: " + e.toString());      }      try {         cmd = "/";         w = new CommandWrapper(glob, cmd);         fail("Failed, expected exception for '" + cmd + "'");      }      catch(XmlBlasterException e) {         System.out.println("OK - expected Exception: " + e.toString());      }      try {         cmd = "";         w = new CommandWrapper(glob, cmd);         fail("Failed, expected exception for '" + cmd + "'");      }      catch(XmlBlasterException e) {         System.out.println("OK - expected Exception: " + e.toString());      }      try {         cmd = null;         w = new CommandWrapper(glob, cmd);         fail("Failed, expected exception for '" + cmd + "'");      }      catch(XmlBlasterException e) {         System.out.println("OK - expected Exception: " + e.toString());      }      try {         cmd = "/////";         w = new CommandWrapper(glob, cmd);         fail("Failed, expected exception for '" + cmd + "'");      }      catch(XmlBlasterException e) {         System.out.println("OK - expected Exception: " + e.toString());      }   }/*   public void testQosData() {      String cmd = null;      GetQos getQos = new GetQos(this.glob);      getQos.addClientProperty("_one", "1");      getQos.addClientProperty("_two", "2");            cmd = "client/joe/1/?queue&xmlBlaster.qos=" + getQos.toXml();      QueryKeyData keyData = new QueryKeyData(this.glob);      keyData.setOid("__cmd:" + cmd);            try {         CommandWrapper w = new CommandWrapper(glob, keyData);         QueryQosData qos = w.getQueryQosData();         log.info(qos.toXml());         ClientProperty clp = qos.getClientProperty("_one");         assertNotNull("should not be null", clp);         assertEquals("wrong value for this property", "1", clp.getStringValue());         clp = qos.getClientProperty("_two");         assertNotNull("should not be null", clp);         assertEquals("wrong value for this property", "2", clp.getStringValue());         clp = qos.getClientProperty("_three");         assertNull("should be null", clp);      }      catch(XmlBlasterException e) {         e.printStackTrace();         assertTrue("exception should not occur here: " + e.getMessage(), false);      }   }*/   /**    * Invoke: java org.xmlBlaster.test.client.TestCommandWrapperTest    * <p />    * @deprecated Use the TestRunner from the testsuite to run it:<p />    * <pre>   java -Djava.compiler= junit.textui.TestRunner org.xmlBlaster.test.client.TestActivateDispatcher</pre>    */   public static void main(String args[])   {      ServerScope glob = new ServerScope();      if (glob.init(args) != 0) {         System.out.println("Init failed");         System.exit(1);      }      CommandWrapperTest test = new CommandWrapperTest("CommandWrapperTest");      test.setUp();      test.testInvalid();      test.tearDown();   }}

⌨️ 快捷键说明

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