Bump upstreams
[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.List;
13 import org.apache.commons.lang3.SerializationUtils;
14 import org.junit.Test;
15 import org.opendaylight.controller.remote.rpc.AbstractOpsTest;
16
17 /**
18  * Unit tests for RpcResponse.
19  *
20  * @author Thomas Pantelis
21  */
22 public class OpsResponseTest {
23
24     @Test
25     public void testSerialization() {
26         RpcResponse expectedRpc = new RpcResponse(AbstractOpsTest.makeRPCOutput("serialization-test"));
27
28         ActionResponse expectedAction = new ActionResponse(AbstractOpsTest.makeRPCOutput("serialization-test"),
29             List.of());
30
31         RpcResponse actualRpc = SerializationUtils.clone(expectedRpc);
32
33         ActionResponse actualAction = SerializationUtils.clone(expectedAction);
34
35         assertEquals("getResultNormalizedNode", expectedRpc.getOutput(), actualRpc.getOutput());
36
37         assertEquals("getResultNormalizedNode", expectedAction.getOutput(), actualAction.getOutput());
38     }
39 }