Assert payload serialized size
[controller.git] / opendaylight / md-sal / cds-access-api / src / test / java / org / opendaylight / controller / cluster / access / commands / TransactionDoCommitRequestTest.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. 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.cluster.access.commands;
9
10 import static org.junit.Assert.assertEquals;
11
12 import org.junit.Test;
13 import org.opendaylight.controller.cluster.access.ABIVersion;
14
15 public class TransactionDoCommitRequestTest extends AbstractTransactionRequestTest<TransactionDoCommitRequest> {
16     private static final TransactionDoCommitRequest OBJECT = new TransactionDoCommitRequest(TRANSACTION_IDENTIFIER, 0,
17         ACTOR_REF);
18
19     public TransactionDoCommitRequestTest() {
20         super(OBJECT, 403);
21     }
22
23     @Test
24     public void cloneAsVersionTest() {
25         assertEquals(OBJECT, OBJECT.cloneAsVersion(ABIVersion.BORON));
26     }
27
28     @Override
29     protected void doAdditionalAssertions(final TransactionDoCommitRequest deserialize) {
30         assertEquals(OBJECT.getReplyTo(), deserialize.getReplyTo());
31     }
32 }