Package org.talend.esb.servicelocator.client

Examples of org.talend.esb.servicelocator.client.Endpoint


    }

    @Ignore
    @Test
    public void unregister() throws Exception {
        Endpoint endpoint = create(SERVICE_QNAME_1, ENDPOINT_1, BindingType.JAXRS, TransportType.HTTP);

        Capture<Long> lastTimeStoppedCapture = new Capture<Long>();

        endpointExists(ENDPOINT_PATH_11);
        getData(ENDPOINT_PATH_11, OLD_DATA);
View Full Code Here


    @Ignore
    @Test
    public void unregisterEndpointExistsNot() throws Exception {
        endpointExistsNot(ENDPOINT_PATH_11);

        Endpoint eprProvider = create(SERVICE_QNAME_1, ENDPOINT_1);

        replayAll();

        ServiceLocatorImpl slc = createServiceLocatorSuccess();
        slc.setEndpointTransformer(trans);
View Full Code Here

        getData(ENDPOINT_PATH_11, OLD_DATA);
        data2Ep(SERVICE_QNAME_1, OLD_DATA);

        delete(ENDPOINT_STATUS_PATH_11, new KeeperException.RuntimeInconsistencyException());

        Endpoint eprProvider = create(SERVICE_QNAME_1, ENDPOINT_1);
        replayAll();

        ServiceLocatorImpl slc = createServiceLocatorSuccess();
        slc.setEndpointTransformer(trans);
View Full Code Here

    public static  Endpoint create(QName serviceName, String endpoint,
            BindingType bindingType, TransportType transportType)
        throws Exception {
       
        Endpoint eprProvider = createNiceMock(Endpoint.class);
        expect(eprProvider.getServiceName()).andStubReturn(serviceName);
        expect(eprProvider.getAddress()).andStubReturn(endpoint);
        expect(eprProvider.getBinding()).andStubReturn(bindingType);
        expect(eprProvider.getTransport()).andStubReturn(transportType);
        eprProvider.writeEndpointReferenceTo(anyDOMResult(), (Endpoint.PropertiesTransformer) EasyMock.anyObject());
        expectLastCall().asStub();
       
        replay(eprProvider);

        return eprProvider;
View Full Code Here

    }

    @Test
    public void fromEndpoint()  throws Exception {

            Endpoint endpoint = EndpointStubFactory.
                create(SERVICE_QNAME_1, ENDPOINT_1, BindingType.JAXRS,
                        TransportType.HTTP);

            EndpointTransformerImpl trans = new EndpointTransformerImpl();
           
View Full Code Here

TOP

Related Classes of org.talend.esb.servicelocator.client.Endpoint

Copyright © 2018 www.massapicom. 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.