Search in sources :

Example 1 with SwitchOutput

use of org.opendaylight.yang.gen.v1.rpc.norev.SwitchOutput in project mdsal by opendaylight.

the class Mdsal500Test method testDOMRegistrationWithBindingInvocation.

@Test
public void testDOMRegistrationWithBindingInvocation() throws InterruptedException, ExecutionException, TimeoutException {
    SwitchOutput baSwitchOutput = new SwitchOutputBuilder().build();
    biRpcProviderService.registerRpcImplementation((rpc, input) -> FluentFutures.immediateFluentFuture(new DefaultDOMRpcResult(testContext.getCodec().currentSerializer().toNormalizedNodeRpcData(baSwitchOutput))), DOMRpcIdentifier.create(SWITCH_QNAME));
    final Mdsal500Service baSwitchService = baRpcConsumerService.getRpcService(Mdsal500Service.class);
    Future<RpcResult<SwitchOutput>> baResult = baSwitchService.switch$(switchBuilder(FOO).build());
    assertNotNull(baResult);
    assertEquals(baSwitchOutput, baResult.get(5, TimeUnit.SECONDS).getResult());
}
Also used : DefaultDOMRpcResult(org.opendaylight.mdsal.dom.spi.DefaultDOMRpcResult) Mdsal500Service(org.opendaylight.yang.gen.v1.rpc.norev.Mdsal500Service) SwitchOutputBuilder(org.opendaylight.yang.gen.v1.rpc.norev.SwitchOutputBuilder) RpcResult(org.opendaylight.yangtools.yang.common.RpcResult) DefaultDOMRpcResult(org.opendaylight.mdsal.dom.spi.DefaultDOMRpcResult) DOMRpcResult(org.opendaylight.mdsal.dom.api.DOMRpcResult) SwitchOutput(org.opendaylight.yang.gen.v1.rpc.norev.SwitchOutput) Test(org.junit.Test)

Example 2 with SwitchOutput

use of org.opendaylight.yang.gen.v1.rpc.norev.SwitchOutput in project mdsal by opendaylight.

the class Mdsal500Test method testBindingRpcShortcut.

@Test
public void testBindingRpcShortcut() throws InterruptedException, ExecutionException, TimeoutException {
    final ListenableFuture<RpcResult<SwitchOutput>> baSwitchResult = switchResult(true);
    switchRpcImpl.registerTo(baRpcProviderService).setSwitchResult(baSwitchResult);
    final Mdsal500Service baSwitchService = baRpcConsumerService.getRpcService(Mdsal500Service.class);
    SwitchInput baSwitchInput = switchBuilder(FOO).build();
    ListenableFuture<RpcResult<SwitchOutput>> future = baSwitchService.switch$(baSwitchInput);
    final RpcResult<SwitchOutput> rpcResult = future.get(5, TimeUnit.SECONDS);
    assertEquals(baSwitchResult.get().getResult().getClass(), rpcResult.getResult().getClass());
    assertSame(baSwitchResult.get().getResult(), rpcResult.getResult());
    assertSame(baSwitchInput, switchRpcImpl.getReceivedSwitch().get(FOO).iterator().next());
}
Also used : Mdsal500Service(org.opendaylight.yang.gen.v1.rpc.norev.Mdsal500Service) RpcResult(org.opendaylight.yangtools.yang.common.RpcResult) DefaultDOMRpcResult(org.opendaylight.mdsal.dom.spi.DefaultDOMRpcResult) DOMRpcResult(org.opendaylight.mdsal.dom.api.DOMRpcResult) SwitchInput(org.opendaylight.yang.gen.v1.rpc.norev.SwitchInput) SwitchOutput(org.opendaylight.yang.gen.v1.rpc.norev.SwitchOutput) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)2 DOMRpcResult (org.opendaylight.mdsal.dom.api.DOMRpcResult)2 DefaultDOMRpcResult (org.opendaylight.mdsal.dom.spi.DefaultDOMRpcResult)2 Mdsal500Service (org.opendaylight.yang.gen.v1.rpc.norev.Mdsal500Service)2 SwitchOutput (org.opendaylight.yang.gen.v1.rpc.norev.SwitchOutput)2 RpcResult (org.opendaylight.yangtools.yang.common.RpcResult)2 SwitchInput (org.opendaylight.yang.gen.v1.rpc.norev.SwitchInput)1 SwitchOutputBuilder (org.opendaylight.yang.gen.v1.rpc.norev.SwitchOutputBuilder)1