1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
/**
* EmployeeDatabaseTestCase.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.2dev Oct 26, 2003 (08:57:14 EST) WSDL2Java emitter.
*/
package test.wsdl.wrapped2;
public class EmployeeDatabaseTestCase extends junit.framework.TestCase {
public EmployeeDatabaseTestCase(java.lang.String name) {
super(name);
}
public void testEmployeeDatabaseWSDL() throws Exception {
javax.xml.rpc.ServiceFactory serviceFactory = javax.xml.rpc.ServiceFactory.newInstance();
java.net.URL url = new java.net.URL(new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabaseAddress() + "?WSDL");
javax.xml.rpc.Service service = serviceFactory.createService(url, new test.wsdl.wrapped2.EmployeeDatabaseLocator().getServiceName());
assertTrue(service != null);
}
public void test1EmployeeDatabaseGetEmployeeCount() throws Exception {
test.wsdl.wrapped2.EmployeeDBBindingStub binding;
try {
binding = (test.wsdl.wrapped2.EmployeeDBBindingStub)
new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabase();
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertNotNull("binding is null", binding);
// Time out after a minute
binding.setTimeout(60000);
// Test operation
int value = -3;
value = binding.getEmployeeCount(0);
// TBD - validate results
}
public void test2EmployeeDatabaseAddGroups() throws Exception {
test.wsdl.wrapped2.EmployeeDBBindingStub binding;
try {
binding = (test.wsdl.wrapped2.EmployeeDBBindingStub)
new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabase();
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertNotNull("binding is null", binding);
// Time out after a minute
binding.setTimeout(60000);
// Test operation
boolean value = false;
value = binding.addGroups(new java.lang.String[0]);
// TBD - validate results
}
public void test3EmployeeDatabaseIsManager() throws Exception {
test.wsdl.wrapped2.EmployeeDBBindingStub binding;
try {
binding = (test.wsdl.wrapped2.EmployeeDBBindingStub)
new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabase();
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertNotNull("binding is null", binding);
// Time out after a minute
binding.setTimeout(60000);
// Test operation
boolean value = false;
value = binding.isManager(new java.lang.String(), new java.lang.String());
// TBD - validate results
}
public void test4EmployeeDatabasePromoteEmployee() throws Exception {
test.wsdl.wrapped2.EmployeeDBBindingStub binding;
try {
binding = (test.wsdl.wrapped2.EmployeeDBBindingStub)
new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabase();
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertNotNull("binding is null", binding);
// Time out after a minute
binding.setTimeout(60000);
// Test operation
boolean value = false;
value = binding.promoteEmployee(new test.wsdl.wrapped2.xsd.NameType(), 0);
// TBD - validate results
}
public void test5EmployeeDatabaseGetEmployees() throws Exception {
test.wsdl.wrapped2.EmployeeDBBindingStub binding;
try {
binding = (test.wsdl.wrapped2.EmployeeDBBindingStub)
new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabase();
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertNotNull("binding is null", binding);
// Time out after a minute
binding.setTimeout(60000);
// Test operation
test.wsdl.wrapped2.xsd.EmployeeType[] value = null;
value = binding.getEmployees(new test.wsdl.wrapped2.xsd.NameType[0]);
// TBD - validate results
}
public void test6EmployeeDatabaseScheduleMtg() throws Exception {
test.wsdl.wrapped2.EmployeeDBBindingStub binding;
try {
binding = (test.wsdl.wrapped2.EmployeeDBBindingStub)
new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabase();
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertNotNull("binding is null", binding);
// Time out after a minute
binding.setTimeout(60000);
// Test operation
boolean value = false;
value = binding.scheduleMtg(new test.wsdl.wrapped2.xsd.EmployeeType[0]);
// TBD - validate results
}
}
|