Search in sources :

Example 21 with ActionTestBean

use of com.canoo.dolphin.integration.action.ActionTestBean in project dolphin-platform by canoo.

the class ActionControllerTest method testCallWithParams.

@Test(dataProvider = ENDPOINTS_DATAPROVIDER, description = "Tests if an private action method can be called")
public void testCallWithParams(String containerType, String endpoint) {
    try {
        final ClientContext context = connect(endpoint);
        final ControllerProxy<ActionTestBean> controller = createController(context, ACTION_CONTROLLER_NAME);
        final String value1 = "Hello Dolphin Platform!";
        final String value2 = "I want to test you!";
        final int value3 = 356;
        invoke(controller, PRIVATE_WITH_SEVERAL_PARAMS_ACTION, containerType, new Param(PARAM_NAME_1, value1), new Param(PARAM_NAME_2, value2), new Param(PARAM_NAME_3, value3));
        Assert.assertTrue(controller.getModel().getBooleanValue());
        Assert.assertEquals(controller.getModel().getStringValue(), value1 + value2 + value3);
        destroy(controller, endpoint);
        disconnect(context, endpoint);
    } catch (Exception e) {
        Assert.fail("Can not create controller for " + containerType, e);
    }
}
Also used : ClientContext(com.canoo.platform.remoting.client.ClientContext) ActionTestBean(com.canoo.dolphin.integration.action.ActionTestBean) Param(com.canoo.platform.remoting.client.Param) Test(org.testng.annotations.Test)

Example 22 with ActionTestBean

use of com.canoo.dolphin.integration.action.ActionTestBean in project dolphin-platform by canoo.

the class ActionControllerTest method testCallPublicMethodWithParam.

@Test(dataProvider = ENDPOINTS_DATAPROVIDER, description = "Tests if an public action with param method can be called")
public void testCallPublicMethodWithParam(String containerType, String endpoint) {
    try {
        final ClientContext context = connect(endpoint);
        final ControllerProxy<ActionTestBean> controller = createController(context, ACTION_CONTROLLER_NAME);
        invoke(controller, PUBLIC_WITH_BOOLEAN_PARAM_ACTION, containerType, new Param(PARAM_NAME, true));
        Assert.assertTrue(controller.getModel().getBooleanValue());
        destroy(controller, endpoint);
        disconnect(context, endpoint);
    } catch (Exception e) {
        Assert.fail("Can not create controller for " + containerType, e);
    }
}
Also used : ClientContext(com.canoo.platform.remoting.client.ClientContext) ActionTestBean(com.canoo.dolphin.integration.action.ActionTestBean) Param(com.canoo.platform.remoting.client.Param) Test(org.testng.annotations.Test)

Aggregations

ActionTestBean (com.canoo.dolphin.integration.action.ActionTestBean)22 ClientContext (com.canoo.platform.remoting.client.ClientContext)22 Test (org.testng.annotations.Test)10 Param (com.canoo.platform.remoting.client.Param)5 HashMap (java.util.HashMap)1