Bug 5947: additional tests for binding-dom-adapter #2
[mdsal.git] / dom / mdsal-dom-broker / src / test / java / org / opendaylight / mdsal / dom / broker / DOMBrokerTest.java
1 /*
2  * Copyright (c) 2014, 2015 Cisco 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.mdsal.dom.broker;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertFalse;
12 import static org.junit.Assert.assertNotNull;
13 import static org.junit.Assert.assertTrue;
14 import static org.opendaylight.mdsal.common.api.LogicalDatastoreType.CONFIGURATION;
15 import static org.opendaylight.mdsal.common.api.LogicalDatastoreType.OPERATIONAL;
16
17 import com.google.common.base.Optional;
18 import com.google.common.collect.ImmutableMap;
19 import com.google.common.util.concurrent.ForwardingExecutorService;
20 import com.google.common.util.concurrent.ListenableFuture;
21 import com.google.common.util.concurrent.ListeningExecutorService;
22 import com.google.common.util.concurrent.MoreExecutors;
23 import java.util.Collections;
24 import java.util.concurrent.ExecutionException;
25 import java.util.concurrent.ExecutorService;
26 import java.util.concurrent.Executors;
27 import java.util.concurrent.RejectedExecutionException;
28 import java.util.concurrent.TimeUnit;
29 import java.util.concurrent.atomic.AtomicReference;
30 import org.junit.After;
31 import org.junit.Before;
32 import org.junit.Test;
33 import org.mockito.Mockito;
34 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
35 import org.opendaylight.mdsal.common.api.ReadFailedException;
36 import org.opendaylight.mdsal.common.api.TransactionCommitDeadlockException;
37 import org.opendaylight.mdsal.common.api.TransactionCommitFailedException;
38 import org.opendaylight.mdsal.dom.api.DOMDataTreeReadTransaction;
39 import org.opendaylight.mdsal.dom.api.DOMDataTreeWriteTransaction;
40 import org.opendaylight.mdsal.dom.broker.util.TestModel;
41 import org.opendaylight.mdsal.dom.spi.store.DOMStore;
42 import org.opendaylight.mdsal.dom.store.inmemory.InMemoryDOMDataStore;
43 import org.opendaylight.yangtools.util.concurrent.DeadlockDetectingListeningExecutorService;
44 import org.opendaylight.yangtools.util.concurrent.SpecialExecutors;
45 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
46 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
47 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
48 import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
49 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
50 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
51
52 public class DOMBrokerTest {
53
54     private SchemaContext schemaContext;
55     private AbstractDOMDataBroker domBroker;
56     private ListeningExecutorService executor;
57     private ExecutorService futureExecutor;
58     private CommitExecutorService commitExecutor;
59
60     @Before
61     public void setupStore() throws Exception {
62         final InMemoryDOMDataStore operStore = new InMemoryDOMDataStore("OPER",
63                 MoreExecutors.newDirectExecutorService());
64         final InMemoryDOMDataStore configStore = new InMemoryDOMDataStore("CFG",
65                 MoreExecutors.newDirectExecutorService());
66         schemaContext = TestModel.createTestContext();
67
68         operStore.onGlobalContextUpdated(schemaContext);
69         configStore.onGlobalContextUpdated(schemaContext);
70
71         final ImmutableMap<LogicalDatastoreType, DOMStore> stores =
72                 ImmutableMap.<LogicalDatastoreType, DOMStore>builder()
73                 .put(CONFIGURATION, configStore)
74                 .put(OPERATIONAL, operStore)
75                 .build();
76
77         commitExecutor = new CommitExecutorService(Executors.newSingleThreadExecutor());
78         futureExecutor = SpecialExecutors.newBlockingBoundedCachedThreadPool(1, 5, "FCB");
79         executor = new DeadlockDetectingListeningExecutorService(commitExecutor,
80                 TransactionCommitDeadlockException.DEADLOCK_EXCEPTION_SUPPLIER, futureExecutor);
81         domBroker = new SerializedDOMDataBroker(stores, executor);
82     }
83
84     @After
85     public void tearDown() {
86         if (executor != null ) {
87             executor.shutdownNow();
88         }
89
90         if (futureExecutor != null) {
91             futureExecutor.shutdownNow();
92         }
93     }
94
95     @Test(timeout = 10000)
96     public void testTransactionIsolation() throws InterruptedException, ExecutionException {
97         assertNotNull(domBroker);
98
99         final DOMDataTreeReadTransaction readTx = domBroker.newReadOnlyTransaction();
100         assertNotNull(readTx);
101
102         final DOMDataTreeWriteTransaction writeTx = domBroker.newWriteOnlyTransaction();
103         assertNotNull(writeTx);
104
105         /**
106          * Writes /test in writeTx.
107          *
108          */
109         writeTx.put(OPERATIONAL, TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME));
110
111         /**
112          * Reads /test from readTx Read should return Absent.
113          *
114          */
115         final ListenableFuture<Optional<NormalizedNode<?, ?>>> readTxContainer = readTx
116                 .read(OPERATIONAL, TestModel.TEST_PATH);
117         assertFalse(readTxContainer.get().isPresent());
118     }
119
120     @Test(timeout = 10000)
121     public void testTransactionCommit() throws InterruptedException, ExecutionException {
122         final DOMDataTreeWriteTransaction writeTx = domBroker.newWriteOnlyTransaction();
123         assertNotNull(writeTx);
124         /**
125          * Writes /test in writeTx
126          *
127          */
128         writeTx.put(OPERATIONAL, TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME));
129
130         writeTx.submit().get();
131
132         final Optional<NormalizedNode<?, ?>> afterCommitRead = domBroker.newReadOnlyTransaction()
133                 .read(OPERATIONAL, TestModel.TEST_PATH).get();
134         assertTrue(afterCommitRead.isPresent());
135     }
136
137     @Test(expected = TransactionCommitFailedException.class)
138     public void testRejectedCommit() throws Exception {
139         commitExecutor.delegate = Mockito.mock( ExecutorService.class );
140         Mockito.doThrow( new RejectedExecutionException( "mock" ) )
141             .when( commitExecutor.delegate ).execute( Mockito.any( Runnable.class ) );
142         Mockito.doNothing().when( commitExecutor.delegate ).shutdown();
143         Mockito.doReturn( Collections.emptyList() ).when( commitExecutor.delegate ).shutdownNow();
144         Mockito.doReturn( "" ).when( commitExecutor.delegate ).toString();
145         Mockito.doReturn( true ).when( commitExecutor.delegate )
146             .awaitTermination( Mockito.anyLong(), Mockito.any( TimeUnit.class ) );
147
148         final DOMDataTreeWriteTransaction writeTx = domBroker.newWriteOnlyTransaction();
149         writeTx.put( OPERATIONAL, TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME) );
150
151         writeTx.submit().checkedGet( 5, TimeUnit.SECONDS );
152     }
153
154     @SuppressWarnings("checkstyle:IllegalCatch")
155     AtomicReference<Throwable> submitTxAsync( final DOMDataTreeWriteTransaction writeTx ) {
156         final AtomicReference<Throwable> caughtEx = new AtomicReference<>();
157         new Thread() {
158             @Override
159             public void run() {
160
161                 try {
162                     writeTx.submit();
163                 } catch ( final Throwable e ) {
164                     caughtEx.set( e );
165                 }
166             }
167
168         }.start();
169
170         return caughtEx;
171     }
172
173     @Test(expected = ReadFailedException.class)
174     public void basicTests() throws Exception {
175         final DataContainerChild<?, ?> outerList = ImmutableNodes.mapNodeBuilder(TestModel.OUTER_LIST_QNAME)
176                 .withChild(ImmutableNodes.mapEntry(TestModel.OUTER_LIST_QNAME, TestModel.ID_QNAME, 1))
177                 .build();
178         final NormalizedNode<?, ?> testContainer = Builders.containerBuilder()
179                 .withNodeIdentifier(new YangInstanceIdentifier.NodeIdentifier(TestModel.TEST_QNAME))
180                 .withChild(outerList)
181                 .build();
182
183         DOMDataTreeWriteTransaction writeTx = domBroker.newWriteOnlyTransaction();
184         final DOMDataTreeReadTransaction readRx = domBroker.newReadOnlyTransaction();
185         assertNotNull(writeTx);
186         assertNotNull(readRx);
187         assertNotNull(((SerializedDOMDataBroker) domBroker).getCommitStatsTracker());
188
189         writeTx.put(OPERATIONAL, TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME));
190         writeTx.submit().get();
191         assertFalse(writeTx.cancel());
192
193         assertEquals(false, domBroker.newReadOnlyTransaction().exists(CONFIGURATION, TestModel.TEST_PATH).get());
194         assertEquals(true, domBroker.newReadOnlyTransaction().exists(OPERATIONAL, TestModel.TEST_PATH).get());
195         assertEquals(false, domBroker.newReadOnlyTransaction().exists(OPERATIONAL, TestModel.TEST2_PATH).get());
196
197         writeTx = domBroker.newWriteOnlyTransaction();
198         writeTx.put(OPERATIONAL, TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME));
199         writeTx.delete(OPERATIONAL, TestModel.TEST_PATH);
200         writeTx.submit().get();
201         assertEquals(false, domBroker.newReadOnlyTransaction().exists(OPERATIONAL, TestModel.TEST_PATH).get());
202         assertTrue(domBroker.newWriteOnlyTransaction().cancel());
203
204         writeTx = domBroker.newWriteOnlyTransaction();
205         writeTx.put(OPERATIONAL, TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME));
206         writeTx.merge(OPERATIONAL, TestModel.TEST_PATH, testContainer);
207         writeTx.submit().get();
208         assertEquals(true, domBroker.newReadOnlyTransaction().exists(OPERATIONAL, TestModel.TEST_PATH).get());
209         assertEquals(true, domBroker.newReadOnlyTransaction().read(OPERATIONAL, TestModel.TEST_PATH).get()
210                  .get().toString().contains(testContainer.toString()));
211
212         readRx.close();
213         //Expected exception after close call
214         readRx.read(OPERATIONAL, TestModel.TEST_PATH).checkedGet();
215     }
216
217     @SuppressWarnings({"checkstyle:IllegalThrows", "checkstyle:IllegalCatch"})
218     @Test
219     public void closeTest() throws Exception {
220         final String testException = "TestException";
221
222         domBroker.setCloseable(() -> {
223             throw new Exception(testException);
224         });
225
226         try {
227             domBroker.close();
228         } catch (final Exception e) {
229             assertTrue(e.getMessage().contains(testException));
230         }
231     }
232
233     static class CommitExecutorService extends ForwardingExecutorService {
234
235         ExecutorService delegate;
236
237         CommitExecutorService( final ExecutorService delegate ) {
238             this.delegate = delegate;
239         }
240
241         @Override
242         protected ExecutorService delegate() {
243             return delegate;
244         }
245     }
246 }