Remove unused exceptions
[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 org.junit.Assert;
11 import org.junit.Test;
12 import org.opendaylight.controller.cluster.access.ABIVersion;
13
14 public class ReadTransactionRequestTest extends AbstractReadTransactionRequestTest<ReadTransactionRequest> {
15     private static final ReadTransactionRequest OBJECT = new ReadTransactionRequest(
16             TRANSACTION_IDENTIFIER, 0, ACTOR_REF, PATH, SNAPSHOT_ONLY);
17
18     @Override
19     protected ReadTransactionRequest object() {
20         return OBJECT;
21     }
22
23     @Test
24     public void cloneAsVersionTest() {
25         final ABIVersion cloneVersion = ABIVersion.TEST_FUTURE_VERSION;
26         final ReadTransactionRequest clone = OBJECT.cloneAsVersion(cloneVersion);
27         Assert.assertEquals(cloneVersion, clone.getVersion());
28         Assert.assertEquals(OBJECT.getPath(), clone.getPath());
29         Assert.assertEquals(OBJECT.isSnapshotOnly(), clone.isSnapshotOnly());
30     }
31
32     @Override
33     protected void doAdditionalAssertions(final Object deserialize) {
34         Assert.assertTrue(deserialize instanceof ReadTransactionRequest);
35         Assert.assertEquals(OBJECT.getReplyTo(), ((ReadTransactionRequest) deserialize).getReplyTo());
36         Assert.assertEquals(OBJECT.getPath(), ((ReadTransactionRequest) deserialize).getPath());
37     }
38 }