sunround2interoptest.java
来自「开源的axis2框架的源码。用于开发WEBSERVER」· Java 代码 · 共 579 行 · 第 1/2 页
JAVA
579 行
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.interop.whitemesa.round2;
import org.apache.axis2.AxisFault;
import org.apache.axiom.soap.SOAPEnvelope;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import test.interop.whitemesa.SunClient;
import test.interop.whitemesa.SunClientUtil;
import test.interop.whitemesa.WhiteMesaIneterop;
import test.interop.whitemesa.WhiteMesaConstants;
import test.interop.whitemesa.round2.util.GroupbEcho2DStringArrayUtil;
import test.interop.whitemesa.round2.util.GroupbEchoNestedArrayUtil;
import test.interop.whitemesa.round2.util.GroupbEchoNestedStructUtil;
import test.interop.whitemesa.round2.util.GroupbEchoSimpleTypesAsStructUtil;
import test.interop.whitemesa.round2.util.GroupbEchoStructAsSimpleTypesUtil;
import test.interop.whitemesa.round2.util.GroupcBase64Util;
import test.interop.whitemesa.round2.util.GroupcBooleanUtil;
import test.interop.whitemesa.round2.util.GroupcEchoStringUtil;
import test.interop.whitemesa.round2.util.GroupcFloatArrayUtil;
import test.interop.whitemesa.round2.util.GroupcFloatUtil;
import test.interop.whitemesa.round2.util.GroupcHexBinaryUtil;
import test.interop.whitemesa.round2.util.GroupcIntegerArrayUtil;
import test.interop.whitemesa.round2.util.GroupcIntergerUtil;
import test.interop.whitemesa.round2.util.GroupcStringArrayUtil;
import test.interop.whitemesa.round2.util.GroupcStructArrayUtil;
import test.interop.whitemesa.round2.util.GroupcStructUtil;
import test.interop.whitemesa.round2.util.GroupcVoidUtil;
import test.interop.whitemesa.round2.util.Round2EchoBase64ClientUtil;
import test.interop.whitemesa.round2.util.Round2EchoBooleanClientUtil;
import test.interop.whitemesa.round2.util.Round2EchoDateClientUtil;
import test.interop.whitemesa.round2.util.Round2EchoDecimalClientUtil;
import test.interop.whitemesa.round2.util.Round2EchoFloatArrayClientUtil;
import test.interop.whitemesa.round2.util.Round2EchoFloatClientUtil;
import test.interop.whitemesa.round2.util.Round2EchoHexBinaryClientUtil;
import test.interop.whitemesa.round2.util.Round2EchoIntegerArrayclientUtil;
import test.interop.whitemesa.round2.util.Round2EchoIntegerClientUtil;
import test.interop.whitemesa.round2.util.Round2EchoStringArrayClientUtil;
import test.interop.whitemesa.round2.util.Round2EchoStringclientUtil;
import test.interop.whitemesa.round2.util.Round2EchoStructArrayClientUtil;
import test.interop.whitemesa.round2.util.Round2EchoStructClientUtil;
import test.interop.whitemesa.round2.util.Round2EchoVoidClientUtil;
import java.io.File;
/**
* class
* To test Interoperability Axis2 clients vs sun Server, Round2
* WSDLs:-
* "base" http://soapinterop.java.sun.com/round2/base?WSDL
* "Group B" http://soapinterop.java.sun.com/round2/groupb?WSDL
* "Group C" http://soapinterop.java.sun.com/round2/groupc?WSDL
*/
/**
* Test cases that work on date values may fail since the response
* date format may be different from the request date format.
*/
public class SunRound2InteropTest extends WhiteMesaIneterop {
SOAPEnvelope retEnv = null;
File file = null;
String url = "";
String soapAction = "";
String resFilePath = "interop/whitemesa/round2/";
String tempPath = "";
SunClientUtil util;
SunClient client = new SunClient();
private static final Log log = LogFactory.getLog(SunRound2InteropTest.class);
/**
* Round2
* Group Base
* operation echoString
*/
public void testR2BaseEchoString() throws AxisFault {
url = "http://soapinterop.java.sun.com:80/round2/base";
soapAction = "http://soapinterop.org/";
util = new Round2EchoStringclientUtil();
retEnv = client.sendMsg(util, url, soapAction);
tempPath = resFilePath + "sunBaseStringRes.xml";
assertR2DefaultEchoStringResult(retEnv);
}
/**
* Round2
* Group Base
* operation echoStringArray
*/
public void testR2BaseEchoStringArray() throws AxisFault {
url = "http://soapinterop.java.sun.com:80/round2/base";
soapAction = "http://soapinterop.org/";
util = new Round2EchoStringArrayClientUtil();
retEnv = client.sendMsg(util, url, soapAction);
tempPath = resFilePath + "SunBaseStringArrayRes.xml";
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRING_ARR_1);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRING_ARR_2);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRING_ARR_3);
}
/**
* Round2
* Group Base
* operation echoInteger
*/
public void testR2BaseEchoInteger() throws AxisFault {
url = "http://soapinterop.java.sun.com:80/round2/base";
soapAction = "http://soapinterop.org/";
util = new Round2EchoIntegerClientUtil();
retEnv = client.sendMsg(util, url, soapAction);
tempPath = resFilePath + "sunBaseIntegerRes.xml";
assertR2DefaultEchoIntegerResult(retEnv);
}
/**
* Round2
* Group Base
* operation echoIntegerArray
*/
public void testR2BaseEchoIntegerArray() throws AxisFault {
url = "http://soapinterop.java.sun.com:80/round2/base";
soapAction = "http://soapinterop.org/";
util = new Round2EchoIntegerArrayclientUtil();
retEnv = client.sendMsg(util, url, soapAction);
tempPath = resFilePath + "sunBaseIntegerArrayRes.xml";
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_INTEGER_ARR_1);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_INTEGER_ARR_2);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_INTEGER_ARR_3);
}
/**
* Round2
* Group Base
* operation echoFloat
*/
public void testR2BaseEchoFloat() throws AxisFault {
url = "http://soapinterop.java.sun.com:80/round2/base";
soapAction = "http://soapinterop.org/";
util = new Round2EchoFloatClientUtil();
retEnv = client.sendMsg(util, url, soapAction);
tempPath = resFilePath + "sunBaseFloatRes.xml";
assertR2DefaultEchoFloatResult(retEnv);
}
/**
* Round2
* Group Base
* operation echoFloatArray
*/
public void testR2BaseEchoFloatArray() throws AxisFault {
url = "http://soapinterop.java.sun.com:80/round2/base";
soapAction = "http://soapinterop.org/";
util = new Round2EchoFloatArrayClientUtil();
retEnv = client.sendMsg(util, url, soapAction);
tempPath = resFilePath + "sunBaseFloatArrayRes.xml";
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_FLOAT_ARR_1);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_FLOAT_ARR_2);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_FLOAT_ARR_3);
}
/**
* Round2
* Group Base
* operation echoStruct
*/
public void testRBaseEchoStruct() throws AxisFault {
url = "http://soapinterop.java.sun.com:80/round2/base";
soapAction = "";
util = new Round2EchoStructClientUtil();
retEnv = client.sendMsg(util, url, soapAction);
tempPath = resFilePath + "sunBaseStructRes.xml";
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_FLOAT);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_INT);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_STRING);
}
/**
* Round2
* Group Base
* operation echoStructArray
*/
public void testR2BaseEchoStructArray() throws AxisFault {
url = "http://soapinterop.java.sun.com:80/round2/base";
soapAction = "http://soapinterop.org/";
util = new Round2EchoStructArrayClientUtil();
retEnv = client.sendMsg(util, url, soapAction);
tempPath = resFilePath + "sunBaseStructArrayRes.xml";
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_ARRAY_INT_1);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_ARRAY_INT_2);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_ARRAY_INT_3);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_ARRAY_STR_1);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_ARRAY_STR_2);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_ARRAY_STR_3);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_ARRAY_FLOAT_1);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_ARRAY_FLOAT_2);
assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_ARRAY_FLOAT_3);
}
/**
* Round2
* Group Base
* operation echoVoid
*/
public void testR2BaseEchoVoid() throws AxisFault {
url = "http://soapinterop.java.sun.com:80/round2/base";
soapAction = "http://soapinterop.org/";
util = new Round2EchoVoidClientUtil();
retEnv = client.sendMsg(util, url, soapAction);
tempPath = resFilePath + "sunBaseVoidRes.xml";
assertR2DefaultEchoVoidResult(retEnv);
}
/**
* Round2
* Group Base
* operation echoBase64
*/
public void testR2BaseEchoBase64() throws AxisFault {
url = "http://soapinterop.java.sun.com:80/round2/base";
soapAction = "http://soapinterop.org/";
util = new Round2EchoBase64ClientUtil();
retEnv = client.sendMsg(util, url, soapAction);
tempPath = resFilePath + "sunBaseBase64Res.xml";
assertR2DefaultEchoBase64Result(retEnv);
}
/**
* Round2
* Group Base
* operation echoBase64
*/
public void testR2BaseEchoDate() throws AxisFault {
log.info("This may fail if the echoed date format is different");
url = "http://soapinterop.java.sun.com:80/round2/base";
soapAction = "http://soapinterop.org/";
util = new Round2EchoDateClientUtil();
retEnv = client.sendMsg(util, url, soapAction);
tempPath = resFilePath + "sunBaseDateRes.xml";
assertR2DefaultEchoDateResult(retEnv);
}
/**
* Round2
* Group Base
* operation echoHexBinary
*/
public void testR2BaseEchoHexBinary() throws AxisFault {
url = "http://soapinterop.java.sun.com:80/round2/base";
soapAction = "http://soapinterop.org/";
util = new Round2EchoHexBinaryClientUtil();
retEnv = client.sendMsg(util, url, soapAction);
tempPath = resFilePath + "sunBaseHexBinaryRes.xml";
assertR2DefaultEchoHexBinaryResult(retEnv);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?