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
|
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package test.functional;
import junit.framework.TestCase;
import org.apache.axis.AxisFault;
import org.apache.axis.client.AdminClient;
import org.apache.axis.components.logger.LogFactory;
import org.apache.commons.logging.Log;
import samples.stock.GetQuote;
import samples.stock.GetQuote2;
/** Test the stock sample code.
*/
public class TestStockSample extends TestCase {
static Log log =
LogFactory.getLog(TestStockSample.class.getName());
public TestStockSample(String name) {
super(name);
}
public void doTestStockJWS () throws Exception {
String[] args = { "-uuser1", "-wpass1", "XXX", "-sjws/StockQuoteService.jws" };
float val = new GetQuote().getQuote(args);
assertEquals("TestStockSample.doTestStockJWS(): stock price should be 66.25", val, 66.25, 0.01);
// This should FAIL
args[3] = "-sjws/AltStockQuoteService.jws";
try {
val = new GetQuote().getQuote(args);
} catch (AxisFault e) {
// Don't print stack trace unless there is an error
// e.printStackTrace();
return;
}
assertNull("-sjws/AltStockQuoteService.jws did not fail as expected.");
}
public void doTestDeploy () throws Exception {
String[] args = { "samples/stock/deploy.wsdd" };
AdminClient.main(args);
}
public void doTestStockJava() throws Exception {
String[] args = { "XXX" };
float val = new GetQuote2().getQuote(args);
assertEquals("Stock price is not the expected 55.25 +/- 0.01", val, 55.25, 0.01);
}
public void doTestStock () throws Exception {
String[] args = { "-uuser1", "-wpass1", "XXX" };
float val = new GetQuote().getQuote(args);
assertEquals("Stock price is not the expected 55.25 +/- 0.01", val, 55.25, 0.01);
}
public void doTestStockNoAction () throws Exception {
String[] args = { "-uuser1", "-wpass1", "XXX_noaction" };
float val = new GetQuote().getQuote(args);
assertEquals("Stock price is not the expected 55.25 +/- 0.01", val, 55.25, 0.01);
}
public void doTestUndeploy () throws Exception {
String[] args = { "samples/stock/undeploy.wsdd" };
AdminClient.main(args);
}
public static void main(String args[]) throws Exception {
TestStockSample tester = new TestStockSample("tester");
tester.testStockService();
}
public void testStockService () throws Exception {
try {
log.info("Testing stock sample.");
log.info("Testing JWS...");
doTestStockJWS();
log.info("Testing Java Binding...");
doTestStockJava();
log.info("Testing deployment...");
doTestDeploy();
log.info("Testing service...");
doTestStock();
log.info("Testing service with SOAPAction: \"\"...");
doTestStockNoAction();
log.info("Testing undeployment...");
doTestUndeploy();
log.info("Test complete.");
}
catch( Exception e ) {
e.printStackTrace();
throw new Exception("Fault returned from test: "+e);
}
}
}
|