Package itest.common.intf

Examples of itest.common.intf.ClientIntf


    }

    @Test
    @Ignore
    public void testSDOSCA() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");
        assertNotNull(client);
        client.callSDO();
    }
View Full Code Here


        client.callSDO();
    }

    @Test
    public void testDOMIdentitySCA() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");
        assertNotNull(client);
        client.testRoundTripDOMIdentity();
    }
View Full Code Here

        client.testRoundTripDOMIdentity();
    }

    @Test
    public void testDOMIdentityWS() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");
        assertNotNull(client);
        client.testRoundTripDOMIdentity();
    }
View Full Code Here

        node.start();
    }

    @Test
    public void testJAXBCrossContributionSCA() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");
        assertNotNull(client);
        client.callJAXBCrossContribution();
    }
View Full Code Here

    // TUSCANY-3941 - make sure binding.sca is matched properly when
    //                it's used to carry the target URI. Not much to do with
    //                JAXB but this is a convenient test
    @Test
    public void testJAXBCrossContributionSCAAlternative() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientSCAAlternative");
        assertNotNull(client);
        client.callJAXBCrossContribution();
       
        // Get the binding from the ClientSCA component
        Binding binding = ((NodeImpl)node).getDomainComposite().getComponents().get(2).getReferences().get(0).getEndpointReferences().get(0).getBinding();
        assertEquals(true, binding instanceof SCABinding);
       
View Full Code Here

    }


    @Test
    public void testJAXBCrossContributionWS() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientWS");
        assertNotNull(client);
        client.callJAXBCrossContribution();
    }
View Full Code Here

        client.callJAXBCrossContribution();
    }

    @Test
    public void testSameObjectSCA() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");
        assertNotNull(client);
        client.callObjectGraphCheck(1);
    }
View Full Code Here

        client.callObjectGraphCheck(1);
    }

    @Test
    public void testDifferentObjectSCA() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");
        assertNotNull(client);
        client.callObjectGraphCheck(2);
    }
View Full Code Here

        client.callObjectGraphCheck(2);
    }

    @Test
    public void testSameObjectRMI() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientRMI");
        assertNotNull(client);
        client.callObjectGraphCheck(1);
    }
View Full Code Here

        client.callObjectGraphCheck(1);
    }

    @Test
    public void testDifferentObjectRMI() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientRMI");
        assertNotNull(client);
        client.callObjectGraphCheck(2);
    }
View Full Code Here

TOP

Related Classes of itest.common.intf.ClientIntf

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.