ByteDataTest.java :  » Web-Services-apache-cxf-2.2.6 » aegis » org » apache » cxf » aegis » type » basic » Java Open Source

Java Open Source » Web Services apache cxf 2.2.6 » aegis 
aegis » org » apache » cxf » aegis » type » basic » ByteDataTest.java
/**
 * 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 org.apache.cxf.aegis.type.basic;

import org.w3c.dom.Document;
import org.w3c.dom.Node;

import org.apache.cxf.aegis.AbstractAegisTest;
import org.apache.cxf.aegis.services.DataService;
import org.apache.cxf.common.util.SOAPConstants;
import org.junit.Test;

/**
 * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
 * @since Feb 21, 2004
 */
public class ByteDataTest extends AbstractAegisTest {
    public void setUp() throws Exception {
        super.setUp();
        createService(DataService.class);
    }

    @Test
    public void testBeanService() throws Exception {
        Node response = invoke("DataService", "GetData.xml");

        addNamespace("s", "http://services.aegis.cxf.apache.org");
        assertValid("//s:return/s:data", response);

        response = invoke("DataService", "EchoData.xml");

        assertValid("//s:return/s:data", response);

    }

    public void testBeanServiceWSDL() throws Exception {
        Document doc = getWSDLDocument("DataService");
        addNamespace("wsdl", SOAPConstants.WSDL11_NS);
        addNamespace("wsdlsoap", SOAPConstants.WSDL11_SOAP_NS);
        addNamespace("xsd", SOAPConstants.XSD);

        assertValid("//xsd:element[@name='data'][@type='xsd:base64Binary']", doc);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.