Improve segmented journal actor metrics
[controller.git] / opendaylight / md-sal / cds-access-api / src / test / java / org / opendaylight / controller / cluster / access / commands / ReadTransactionRequestTest.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 ReadTransactionRequestTest extends AbstractReadTransactionRequestTest<ReadTransactionRequest> {
16     private static final ReadTransactionRequest OBJECT = new ReadTransactionRequest(TRANSACTION_IDENTIFIER, 0,
17         ACTOR_REF, PATH, SNAPSHOT_ONLY);
18
19     public ReadTransactionRequestTest() {
20         super(OBJECT, 108);
21     }
22
23     @Test
24     public void cloneAsVersionTest() {
25         final var cloneVersion = ABIVersion.TEST_FUTURE_VERSION;
26         final var clone = OBJECT.cloneAsVersion(cloneVersion);
27         assertEquals(cloneVersion, clone.getVersion());
28         assertEquals(OBJECT.getPath(), clone.getPath());
29         assertEquals(OBJECT.isSnapshotOnly(), clone.isSnapshotOnly());
30     }
31
32     @Override
33     protected void doAdditionalAssertions(final ReadTransactionRequest deserialize) {
34         assertEquals(OBJECT.getReplyTo(), deserialize.getReplyTo());
35         assertEquals(OBJECT.getPath(), deserialize.getPath());
36     }
37 }