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 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
package test.functional;
import junit.framework.TestCase;
import test.rpc.IF1;
import test.rpc.IF2SOAP;
import test.rpc.IF3SOAP;
import test.rpc.IF3SOAPProxy;
import java.util.Calendar;
import java.util.GregorianCalendar;
public final class TestIF3SOAP extends TestCase {
private static final String URL = "http://localhost:8080/axis/services/IF3SOAP";
private static final String Service = "IF3SOAP";
private IF3SOAPProxy m_soap;
public TestIF3SOAP(String name) {
super(name);
}
protected void setUp() {
if (m_soap == null)
m_soap = new IF3SOAPProxy(Service, URL);
} // setUp
protected void tearDown() {
} // tearDown
public void testGetBeanById() throws Exception {
IF2SOAP soap = m_soap;
IF1 bean = soap.getBeanById("42042042042");
assertNotNull("bean is null", bean);
System.out.println("beanById:");
System.out.println("id: " + bean.getId());
}
public void testGetAllBeans() throws Exception {
IF2SOAP soap = m_soap;
IF1[] beans = soap.getAllBeans();
assertNotNull("beans is null", beans);
System.out.println("allBeans:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetAllBeansFiltered() throws Exception {
IF2SOAP soap = m_soap;
String[] filter = new String[1];
filter[0] = "11011011011";
IF1[] beans = soap.getAllBeans(filter);
assertNotNull("beans is null", beans);
System.out.println("allBeansFiltered:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetAllCategories() throws Exception {
IF2SOAP soap = m_soap;
String[] categories = soap.getAllCategories();
assertNotNull("categories is null", categories);
System.out.println("allCategories:");
for (int i = 0; i < categories.length; i++)
System.out.println("cat[" + i + "]: " + categories[i]);
}
public void testGetBeansByCategory() throws Exception {
IF2SOAP soap = m_soap;
IF1[] beans = soap.getBeansByCategory("Test");
assertNotNull("beans is null", beans);
System.out.println("beansByCategory:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetBeansByCategoryFiltered() throws Exception {
IF2SOAP soap = m_soap;
String[] filter = new String[1];
filter[0] = "11011011011";
IF1[] beans = soap.getBeansByCategory("Test", filter);
assertNotNull("beans is null", beans);
System.out.println("beansByCategoryFiltered:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetBeansByDate() throws Exception {
IF2SOAP soap = m_soap;
Calendar[] dates = new Calendar[1];
dates[0] = new GregorianCalendar();
IF1[] beans = soap.getBeansByDate(dates);
assertNotNull("beans is null", beans);
System.out.println("beansByDate:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetBeansByDateFiltered() throws Exception {
IF2SOAP soap = m_soap;
String[] filter = new String[1];
filter[0] = "11011011011";
Calendar[] dates = new Calendar[1];
dates[0] = new GregorianCalendar();
IF1[] beans = soap.getBeansByDate(dates, filter);
assertNotNull("beans is null", beans);
System.out.println("beansByDateFiltered:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetBeansByExpression() throws Exception {
IF2SOAP soap = m_soap;
IF1[] beans = soap.getBeansByExpression(IF2SOAP.KEYWORD_EXP, "keyword");
assertNotNull("beans is null", beans);
System.out.println("beansByExpression:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetBeansByExpressionFiltered() throws Exception {
IF2SOAP soap = m_soap;
String[] filter = new String[1];
filter[0] = "11011011011";
IF1[] beans = soap.getBeansByExpression(IF2SOAP.KEYWORD_EXP, "keyword", filter);
assertNotNull("beans is null", beans);
System.out.println("beansByExpressionFiltered:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetXMLForBean() throws Exception {
IF2SOAP soap = m_soap;
IF1 bean = soap.getBeanById("42042042042");
String xml = soap.getXMLForBean(bean);
assertNotNull("xml is null", xml);
System.out.println("xmlForBean:");
System.out.println("xml: " + xml);
}
public void testGetBeansForIFByCategory() throws Exception {
IF3SOAP soap = m_soap;
IF1[] beans = soap.getBeansByCategory("if", "Test");
assertNotNull("beans is null", beans);
System.out.println("beansForIFByCategory:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetBeansForIFByCategoryFiltered() throws Exception {
IF3SOAP soap = m_soap;
String[] filter = new String[1];
filter[0] = "11011011011";
IF1[] beans = soap.getBeansByCategory("if", "Test", filter);
assertNotNull("beans is null", beans);
System.out.println("beansForIFByCategoryFiltered:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetBeansForIFByDate() throws Exception {
IF3SOAP soap = m_soap;
Calendar[] dates = new Calendar[1];
dates[0] = new GregorianCalendar();
IF1[] beans = soap.getBeansByDate("if", dates);
assertNotNull("beans is null", beans);
System.out.println("beansForIFByDate:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetBeansForIFByDateFiltered() throws Exception {
IF3SOAP soap = m_soap;
String[] filter = new String[1];
filter[0] = "11011011011";
Calendar[] dates = new Calendar[1];
dates[0] = new GregorianCalendar();
IF1[] beans = soap.getBeansByDate("if", dates, filter);
assertNotNull("beans is null", beans);
System.out.println("beansForIFByDateFiltered:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetBeansForIFByExpression() throws Exception {
IF3SOAP soap = m_soap;
IF1[] beans = soap.getBeansByExpression("if", IF2SOAP.KEYWORD_EXP, "keyword");
assertNotNull("beans is null", beans);
System.out.println("beansForIFByExpression:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
public void testGetBeansForIFByExpressionFiltered() throws Exception {
IF3SOAP soap = m_soap;
String[] filter = new String[1];
filter[0] = "11011011011";
IF1[] beans = soap.getBeansByExpression("if", IF2SOAP.KEYWORD_EXP, "keyword", filter);
assertNotNull("beans is null", beans);
System.out.println("beansForIFByExpressionFiltered:");
for (int i = 0; i < beans.length; i++)
System.out.println("id[" + i + "]: " + beans[i].getId());
}
}
|