CSTest.java
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:3k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2009, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. package org.jboss.blacktie.jatmibroker.xatmi;
  19. public class CSTest extends CSControl
  20. {
  21. private static final org.apache.log4j.Logger log = org.apache.log4j.LogManager.getLogger(CSTest.class);
  22. // private static CSControl control = new CSControl();
  23. // XsdValidator is not thread safe
  24. public void test_211() { runTest("211"); }
  25. // tpcall incorrectly returns TPNOTIME whenever the TPNOBLOCK or TPNOTIME flags are specified
  26. public void test_2120() { runTest("2120"); }
  27. // Similarly specifying TPNOBLOCK means that if a blocking condition does exist then the caller
  28. // should get the error TPEBLOCK
  29. public void test_2121() { runTest("2121"); }
  30. // tpcall should return TPEINVAL if the service name is invalid
  31. public void test_213() { runTest("213"); }
  32. // TPSIGRSTRT flag isn't supported on tpcall
  33. public void test_214() { runTest("214"); }
  34. // tpcall failure with multiple threads
  35. public void test_215() { runTest("215"); }
  36. //tp bufs should morph if they're the wrong type
  37. public void test_2160() { runTest("2160"); }
  38. // passing the wrong return buffer type with TPNOCHANGE
  39. public void test_2161() { runTest("2161"); }
  40. // make sure tpurcode works
  41. public void test_217() { runTest("217"); }
  42. // sanity check
  43. public void test_0() { runTest("0"); }
  44. // tell the server to set a flag on tpreturn (should generate TPESVCERR)
  45. public void test_1() { runTest("1"); }
  46. // set flag on tpreturn should fail
  47. public void test_2() { runTest("2"); }
  48. // telling the service to not tpreturn should generate an error
  49. public void test_3() { runTest("3"); }
  50. // telling service to call tpreturn outside service routine should have no effect
  51. public void test_4() { runTest("4"); }
  52. // tpreturn outside service routing
  53. public void test_5() { runTest("5"); }
  54. }