Update sal-distributed-datastore tests a bit
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / databroker / actors / dds / EmptyTransactionCommitCohortTest.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.databroker.actors.dds;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNull;
12 import static org.mockito.Mockito.verify;
13 import static org.opendaylight.controller.cluster.databroker.actors.dds.TestUtils.TRANSACTION_ID;
14 import static org.opendaylight.controller.cluster.databroker.actors.dds.TestUtils.getWithTimeout;
15
16 import com.google.common.util.concurrent.ListenableFuture;
17 import org.junit.Before;
18 import org.junit.Test;
19 import org.junit.runner.RunWith;
20 import org.mockito.Mock;
21 import org.mockito.junit.MockitoJUnitRunner;
22
23 @RunWith(MockitoJUnitRunner.StrictStubs.class)
24 public class EmptyTransactionCommitCohortTest {
25     @Mock
26     private AbstractClientHistory history;
27
28     private EmptyTransactionCommitCohort cohort;
29
30     @Before
31     public void setUp() {
32         cohort = new EmptyTransactionCommitCohort(history, TRANSACTION_ID);
33     }
34
35     @Test
36     public void testCanCommit() throws Exception {
37         final ListenableFuture<Boolean> canCommit = cohort.canCommit();
38         assertEquals(Boolean.TRUE, getWithTimeout(canCommit));
39     }
40
41     @Test
42     public void testPreCommit() throws Exception {
43         final ListenableFuture<Void> preCommit = cohort.preCommit();
44         assertNull(getWithTimeout(preCommit));
45     }
46
47     @Test
48     public void testAbort() throws Exception {
49         final ListenableFuture<Void> abort = cohort.abort();
50         verify(history).onTransactionComplete(TRANSACTION_ID);
51         assertNull(getWithTimeout(abort));
52     }
53
54     @Test
55     public void testCommit() throws Exception {
56         final ListenableFuture<Void> commit = cohort.commit();
57         verify(history).onTransactionComplete(TRANSACTION_ID);
58         assertNull(getWithTimeout(commit));
59     }
60
61 }