Package org.springframework.ws.wsdl.wsdl11.provider

Source Code of org.springframework.ws.wsdl.wsdl11.provider.SuffixBasedMessagesProviderTest

/*
* Copyright 2005-2010 the original author or authors.
*
* 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 org.springframework.ws.wsdl.wsdl11.provider;

import javax.wsdl.Definition;
import javax.wsdl.Message;
import javax.wsdl.Part;
import javax.wsdl.Types;
import javax.wsdl.extensions.schema.Schema;
import javax.wsdl.factory.WSDLFactory;
import javax.xml.namespace.QName;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
import org.springframework.xml.sax.SaxUtils;

import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.w3c.dom.Document;

public class SuffixBasedMessagesProviderTest {

    private SuffixBasedMessagesProvider provider;

    private Definition definition;

    private DocumentBuilder documentBuilder;

    @Before
    public void setUp() throws Exception {
        provider = new SuffixBasedMessagesProvider();
        provider.setFaultSuffix("Foo");
        WSDLFactory factory = WSDLFactory.newInstance();
        definition = factory.newDefinition();
        DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
        documentBuilderFactory.setNamespaceAware(true);
        documentBuilder = documentBuilderFactory.newDocumentBuilder();
    }

    @Test
    public void testAddMessages() throws Exception {
        String definitionNamespace = "http://springframework.org/spring-ws";
        definition.addNamespace("tns", definitionNamespace);
        definition.setTargetNamespace(definitionNamespace);
        String schemaNamespace = "http://www.springframework.org/spring-ws/schema";
        definition.addNamespace("schema", schemaNamespace);

        Resource resource = new ClassPathResource("schema.xsd", getClass());
        Document schemaDocument = documentBuilder.parse(SaxUtils.createInputSource(resource));
        Types types = definition.createTypes();
        definition.setTypes(types);
        Schema schema = (Schema) definition.getExtensionRegistry()
                .createExtension(Types.class, new QName("http://www.w3.org/2001/XMLSchema", "schema"));
        types.addExtensibilityElement(schema);
        schema.setElement(schemaDocument.getDocumentElement());

        provider.addMessages(definition);

        Assert.assertEquals("Invalid amount of messages created", 2, definition.getMessages().size());

        Message message = definition.getMessage(new QName(definitionNamespace, "GetOrderRequest"));
        Assert.assertNotNull("Message not created", message);
        Part part = message.getPart("GetOrderRequest");
        Assert.assertNotNull("Part not created", part);
        Assert.assertEquals("Invalid element on part", new QName(schemaNamespace, "GetOrderRequest"),
                part.getElementName());

        message = definition.getMessage(new QName(definitionNamespace, "GetOrderResponse"));
        Assert.assertNotNull("Message not created", message);
        part = message.getPart("GetOrderResponse");
        Assert.assertNotNull("Part not created", part);
        Assert.assertEquals("Invalid element on part", new QName(schemaNamespace, "GetOrderResponse"),
                part.getElementName());
    }
}
TOP

Related Classes of org.springframework.ws.wsdl.wsdl11.provider.SuffixBasedMessagesProviderTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.