Teach sal-remoterpc-connector to route actions
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / test / java / org / opendaylight / controller / remote / rpc / messages / OpsResponseTest.java
1 /*
2  * Copyright (c) 2016 2015 Brocade Communications Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.remote.rpc.messages;
9
10 import static org.junit.Assert.assertEquals;
11
12 import java.util.Collections;
13 import java.util.Optional;
14 import org.apache.commons.lang.SerializationUtils;
15 import org.junit.Test;
16 import org.opendaylight.controller.remote.rpc.AbstractOpsTest;
17
18 /**
19  * Unit tests for RpcResponse.
20  *
21  * @author Thomas Pantelis
22  */
23 public class OpsResponseTest {
24
25     @Test
26     public void testSerialization() {
27         RpcResponse expectedRpc = new RpcResponse(AbstractOpsTest.makeRPCOutput("serialization-test"));
28
29         ActionResponse expectedAction = new ActionResponse(
30             Optional.of(AbstractOpsTest.makeRPCOutput("serialization-test")), Collections.emptyList());
31
32         RpcResponse actualRpc = (RpcResponse) SerializationUtils.clone(expectedRpc);
33
34         ActionResponse actualAction = (ActionResponse) SerializationUtils.clone(expectedAction);
35
36         assertEquals("getResultNormalizedNode", expectedRpc.getOutput(),
37                 actualRpc.getOutput());
38
39         assertEquals("getResultNormalizedNode", expectedAction.getOutput(),
40                 actualAction.getOutput());
41     }
42 }