Package org.apache.camel.component.cxf.util

Source Code of org.apache.camel.component.cxf.util.CxfEndpointUtilsTest

/**
* 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.camel.component.cxf.util;

import javax.xml.namespace.QName;

import junit.framework.TestCase;
import org.apache.camel.CamelContext;
import org.apache.camel.component.cxf.CxfComponent;
import org.apache.camel.component.cxf.CxfEndpoint;
import org.apache.camel.impl.DefaultCamelContext;

public class CxfEndpointUtilsTest extends TestCase {
    static final String CXF_BASE_URI = "cxf://http://www.example.com/testaddress"
        + "?serviceClass=org.apache.camel.component.cxf.HelloService"
        + "&portName={http://www.example.com/test}PortName"
        + "&serviceName={http://www.example.com/test}ServiceName";

    // set up the port name and service name
    private static final QName SERVICE_NAME =
        new QName("http://www.example.com/test", "ServiceName");

    CxfEndpoint cxfEndpoint;

    protected void createEndpoint(String uri) throws Exception {
        CamelContext context = new DefaultCamelContext();
        cxfEndpoint = (CxfEndpoint)new CxfComponent(context).createEndpoint(uri);
    }

    public void testGetQName() throws Exception {
        createEndpoint(CXF_BASE_URI);
        QName service = CxfEndpointUtils.getQName(cxfEndpoint.getServiceName());
        assertEquals("We should get the right service name", service, SERVICE_NAME);
    }



}
TOP

Related Classes of org.apache.camel.component.cxf.util.CxfEndpointUtilsTest

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.