How to use removeNsPrefix method of com.consol.citrus.generate.xml.WsdlXmlTestGenerator class

Best Citrus code snippet using com.consol.citrus.generate.xml.WsdlXmlTestGenerator.removeNsPrefix

Source:WsdlXmlTestGenerator.java Github

copy

Full Screen

...74 XmlObject[] bindingOperations = wsdlObject.selectPath(wsdlNsDelaration + ".//wsdl:binding/wsdl:operation");75 for (XmlObject bindingOperation : bindingOperations) {76 String bindingOperationName = evaluateAsString(bindingOperation, wsdlNsDelaration + "./@name");77 if (bindingOperationName.equals(operationName)) {78 String soapAction = removeNsPrefix(evaluateAsString(bindingOperation, soapNsDelaration + "./soap:operation/@soapAction"));79 request.soapAction(soapAction);80 break;81 }82 }83 String inputMessage = removeNsPrefix(evaluateAsString(operation, wsdlNsDelaration + "./wsdl:input/@message"));84 String outputMessage = removeNsPrefix(evaluateAsString(operation, wsdlNsDelaration + "./wsdl:output/@message"));85 String inputElement = null;86 String outputElement = null;87 for (XmlObject message : messages) {88 String messageName = evaluateAsString(message, wsdlNsDelaration + "./@name");89 if (messageName.equals(inputMessage)) {90 inputElement = removeNsPrefix(evaluateAsString(message, wsdlNsDelaration + "./wsdl:part/@element"));91 }92 if (messageName.equals(outputMessage)) {93 outputElement = removeNsPrefix(evaluateAsString(message, wsdlNsDelaration + "./wsdl:part/@element"));94 }95 }96 // Now generate it97 withName(namePrefix + operationName + nameSuffix);98 SchemaType requestElem = getSchemaType(schemaTypeSystem, operationName, inputElement);99 request.setPayload(SampleXmlUtil.createSampleForType(requestElem));100 withRequest(request);101 SchemaType responseElem = getSchemaType(schemaTypeSystem, operationName, outputElement);102 response.setPayload(SampleXmlUtil.createSampleForType(responseElem));103 withResponse(response);104 XmlConfigurer configurer = new XmlConfigurer();105 configurer.setSerializeSettings(Collections.singletonMap(XmlConfigurer.XML_DECLARATION, false));106 XMLUtils.initialize(configurer);107 super.create();108 log.info("Successfully created new test case " + getTargetPackage() + "." + getName());109 }110 }111 @Override112 protected List<String> getMarshallerContextPaths() {113 List<String> contextPaths = super.getMarshallerContextPaths();114 contextPaths.add(ObjectFactory.class.getPackage().getName());115 return contextPaths;116 }117 @Override118 protected Message generateInboundMessage(Message message) {119 return inboundDataDictionary.interceptMessageConstruction(message, MessageType.XML.name(), new TestContext());120 }121 @Override122 protected Message generateOutboundMessage(Message message) {123 return outboundDataDictionary.interceptMessageConstruction(message, MessageType.XML.name(), new TestContext());124 }125 /**126 * Finds nested XML schema definition and compiles it to a schema type system instance127 * @param wsdl128 * @return129 */130 private XmlObject compileWsdl(String wsdl) {131 File wsdlFile;132 try {133 wsdlFile = new PathMatchingResourcePatternResolver().getResource(wsdl).getFile();134 } catch (IOException e) {135 wsdlFile = new File(wsdl);136 }137 if (!wsdlFile.exists()) {138 throw new CitrusRuntimeException("Unable to read WSDL - does not exist in " + wsdlFile.getAbsolutePath());139 }140 if (!wsdlFile.canRead()) {141 throw new CitrusRuntimeException("Unable to read WSDL - could not open in read mode");142 }143 try {144 return XmlObject.Factory.parse(wsdlFile, (new XmlOptions()).setLoadLineNumbers().setLoadMessageDigest().setCompileDownloadUrls());145 } catch (XmlException e) {146 for (Object error : e.getErrors()) {147 log.error(((XmlError)error).getLine() + "" + error.toString());148 }149 throw new CitrusRuntimeException("WSDL could not be parsed", e);150 } catch (Exception e) {151 throw new CitrusRuntimeException("WSDL could not be parsed", e);152 }153 }154 /**155 * Finds nested XML schema definition and compiles it to a schema type system instance.156 * @param wsdl157 * @return158 */159 private SchemaTypeSystem compileXsd(XmlObject wsdl) {160 // extract namespaces defined on wsdl-level:161 String[] namespacesWsdl = extractNamespacesOnWsdlLevel(wsdl);162 // calc the namespace-prefix of the schema-tag, default ""163 String schemaNsPrefix = extractSchemaNamespacePrefix(wsdl);164 // extract each schema-element and add missing namespaces defined on wsdl-level165 String[] schemas = getNestedSchemas(wsdl, namespacesWsdl, schemaNsPrefix);166 XmlObject[] xsd = new XmlObject[schemas.length];167 try {168 for (int i=0; i < schemas.length; i++) {169 xsd[i] = XmlObject.Factory.parse(schemas[i], (new XmlOptions()).setLoadLineNumbers().setLoadMessageDigest().setCompileDownloadUrls());170 }171 } catch (Exception e) {172 throw new CitrusRuntimeException("Failed to parse XSD schema", e);173 }174 SchemaTypeSystem schemaTypeSystem = null;175 try {176 schemaTypeSystem = XmlBeans.compileXsd(xsd, XmlBeans.getContextTypeLoader(), new XmlOptions());177 } catch (XmlException e) {178 for (Object error : e.getErrors()) {179 log.error("Line " + ((XmlError)error).getLine() + ": " + error.toString());180 }181 throw new CitrusRuntimeException("Failed to compile XSD schema", e);182 } catch (Exception e) {183 throw new CitrusRuntimeException("Failed to compile XSD schema", e);184 }185 return schemaTypeSystem;186 }187 /**188 * @param schemaTypeSystem189 * @param operation190 * @param elementName191 * @return192 */193 private SchemaType getSchemaType(SchemaTypeSystem schemaTypeSystem, String operation, String elementName) {194 for (SchemaType elem : schemaTypeSystem.documentTypes()) {195 if (elem.getContentModel().getName().getLocalPart().equals(elementName)) {196 return elem;197 }198 }199 throw new CitrusRuntimeException("Unable to find schema type declaration '" + elementName + "'" +200 " for WSDL operation '" + operation + "'");201 }202 /**203 * Removes namespace prefix if present.204 * @param elementName205 * @return206 */207 private String removeNsPrefix(String elementName) {208 return elementName.indexOf(':') != -1 ? elementName.substring(elementName.indexOf(':') + 1) : elementName;209 }210 /**211 * Finds nested schema definitions and puts globally WSDL defined namespaces to schema level.212 *213 * @param wsdl214 * @param namespacesWsdl215 * @param schemaNsPrefix216 */217 private String[] getNestedSchemas(XmlObject wsdl, String[] namespacesWsdl, String schemaNsPrefix) {218 List<String> schemas = new ArrayList<>();219 String openedStartTag = "<" + schemaNsPrefix + "schema";220 String endTag = "</" + schemaNsPrefix + "schema>";221 int cursor = 0;...

Full Screen

Full Screen

removeNsPrefix

Using AI Code Generation

copy

Full Screen

1import com.consol.citrus.generate.xml.WsdlXmlTestGenerator2import com.consol.citrus.generate.xml.WsdlXmlTestGeneratorBuilder3def wsdlXmlTestGenerator = new WsdlXmlTestGeneratorBuilder()4 .withTestName("HelloWorldTest")5 .withPackageName("com.consol.citrus.wsdl.test")6 .withJavaProjectPath("/tmp/citrus-wsdl-test")7 .withRemoveNamespacePrefixes(["tns", "xsd"])8 .build()9wsdlXmlTestGenerator.generate()10package com.consol.citrus.wsdl.test;11import com.consol.citrus.annotations.CitrusTest;12import com.consol.citrus.dsl.testng.TestNGCitrusTestRunner;13import com.consol.citrus.ws.client.WebServiceClient;14import com.consol.citrus.ws.message.SoapMessageHeaders;15import com.consol.citrus.ws.server.WebServiceServer;16import org.springframework.beans.factory.annotation.Autowired;17import org.springframework.beans.factory.annotation.Qualifier;18import org.springframework.core.io.ClassPathResource;19import org.springframework.ws.soap.SoapHeaderElement;20import org.testng.annotations.Test;21import javax.xml.namespace.QName;22import java.util.Collections;23public class HelloWorldTest extends TestNGCitrusTestRunner {24 @Qualifier("helloClient")25 private WebServiceClient helloClient;26 @Qualifier("helloServer")27 private WebServiceServer helloServer;28 public void helloWorldTest() {29 send(helloClient)30 .soap()31 .payload(new ClassPathResource("templates/hello_request.xml"));32 receive(helloServer)33 .payload(new ClassPathResource("templates/hello_response.xml"))34 send(helloServer)35 .soap()36 .payload(new ClassPathResource("templates/hello_response.xml"));37 receive(helloClient)38 .payload(new ClassPathResource("templates/hello_request.xml"));39 }40}

Full Screen

Full Screen

removeNsPrefix

Using AI Code Generation

copy

Full Screen

1WsdlXmlTestGenerator generator = new WsdlXmlTestGenerator();2generator.setWsdlResource(new ClassPathResource("my-wsdl.wsdl"));3generator.afterPropertiesSet();4String xmlWithoutNsPrefix = generator.removeNsPrefix(new ClassPathResource("xml-with-ns-prefix.xml").toString());5WsdlXmlTestGenerator generator = new WsdlXmlTestGenerator();6generator.setWsdlResource(new ClassPathResource("my-wsdl.wsdl"));7generator.afterPropertiesSet();8String xmlWithoutNsPrefix = generator.removeNsPrefix(new ClassPathResource("xml-with-ns-prefix.xml").getInputStream());9WsdlXmlTestGenerator generator = new WsdlXmlTestGenerator();10generator.setWsdlResource(new ClassPathResource("my-wsdl.wsdl"));11generator.afterPropertiesSet();12</soapenv:Envelope>");13public static String removeNsPrefix(String xml) {14 try {15 DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();16 DocumentBuilder builder = factory.newDocumentBuilder();17 Document document = builder.parse(new InputSource(new StringReader(xml)));18 document.getDocumentElement().normalize();19 return removeNsPrefix(document);20 } catch (ParserConfigurationException | SAXException | IOException e) {21 throw new CitrusRuntimeException(e);22 }23}24public static String removeNsPrefix(InputStream xml) {25 try {

Full Screen

Full Screen

removeNsPrefix

Using AI Code Generation

copy

Full Screen

1public void testRemoveNsPrefix() throws Exception {2 WsdlXmlTestGenerator generator = new WsdlXmlTestGenerator(new ClassPathResource("wsdl/HelloService.wsdl"));3 generator.setRemoveNsPrefix(true);4 generator.generate();5 log.info(generator.getXmlTest().toString());6}7 <string>${requestPayload}</string>

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful