Specify initial serialization buffer capacity for Payloads
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / DataTreeCohortIntegrationTest.java
1 /*
2  * Copyright (c) 2016 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
9 package org.opendaylight.controller.cluster.datastore;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.assertNotNull;
13 import static org.junit.Assert.assertSame;
14 import static org.junit.Assert.fail;
15 import static org.mockito.ArgumentMatchers.any;
16 import static org.mockito.Mockito.doReturn;
17 import static org.mockito.Mockito.mock;
18 import static org.mockito.Mockito.reset;
19 import static org.mockito.Mockito.verify;
20 import static org.mockito.Mockito.verifyNoMoreInteractions;
21
22 import akka.actor.ActorSystem;
23 import akka.actor.Address;
24 import akka.actor.AddressFromURIString;
25 import akka.cluster.Cluster;
26 import akka.testkit.javadsl.TestKit;
27 import com.google.common.base.Optional;
28 import com.google.common.base.Throwables;
29 import com.google.common.util.concurrent.FluentFuture;
30 import com.typesafe.config.ConfigFactory;
31 import java.math.BigInteger;
32 import java.util.Collection;
33 import java.util.concurrent.ExecutionException;
34 import java.util.concurrent.TimeUnit;
35 import org.junit.AfterClass;
36 import org.junit.BeforeClass;
37 import org.junit.Ignore;
38 import org.junit.Test;
39 import org.mockito.ArgumentCaptor;
40 import org.opendaylight.controller.md.cluster.datastore.model.CarsModel;
41 import org.opendaylight.controller.md.cluster.datastore.model.TestModel;
42 import org.opendaylight.mdsal.common.api.DataValidationFailedException;
43 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
44 import org.opendaylight.mdsal.common.api.PostCanCommitStep;
45 import org.opendaylight.mdsal.common.api.PostPreCommitStep;
46 import org.opendaylight.mdsal.common.api.ThreePhaseCommitStep;
47 import org.opendaylight.mdsal.dom.api.DOMDataTreeCandidate;
48 import org.opendaylight.mdsal.dom.api.DOMDataTreeCommitCohort;
49 import org.opendaylight.mdsal.dom.api.DOMDataTreeIdentifier;
50 import org.opendaylight.mdsal.dom.spi.store.DOMStoreThreePhaseCommitCohort;
51 import org.opendaylight.mdsal.dom.spi.store.DOMStoreWriteTransaction;
52 import org.opendaylight.yangtools.concepts.ObjectRegistration;
53 import org.opendaylight.yangtools.util.concurrent.FluentFutures;
54 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
55 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
56 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
57 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
58 import org.opendaylight.yangtools.yang.data.api.schema.tree.ModificationType;
59 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
60 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
61
62 public class DataTreeCohortIntegrationTest {
63
64     private static final DataValidationFailedException FAILED_CAN_COMMIT =
65             new DataValidationFailedException(YangInstanceIdentifier.class, TestModel.TEST_PATH, "Test failure.");
66     private static final FluentFuture<PostCanCommitStep> FAILED_CAN_COMMIT_FUTURE =
67             FluentFutures.immediateFailedFluentFuture(FAILED_CAN_COMMIT);
68
69     private static final DOMDataTreeIdentifier TEST_ID =
70             new DOMDataTreeIdentifier(LogicalDatastoreType.CONFIGURATION, TestModel.TEST_PATH);
71
72     private static ActorSystem system;
73
74     private final DatastoreContext.Builder datastoreContextBuilder =
75             DatastoreContext.newBuilder().shardHeartbeatIntervalInMillis(100);
76
77     @BeforeClass
78     public static void setUpClass() {
79         system = ActorSystem.create("cluster-test", ConfigFactory.load().getConfig("Member1"));
80         final Address member1Address = AddressFromURIString.parse("akka://cluster-test@127.0.0.1:2558");
81         Cluster.get(system).join(member1Address);
82     }
83
84     @AfterClass
85     public static void tearDownClass() {
86         TestKit.shutdownActorSystem(system);
87         system = null;
88     }
89
90     protected ActorSystem getSystem() {
91         return system;
92     }
93
94     @SuppressWarnings({ "unchecked", "rawtypes" })
95     @Test
96     public void testSuccessfulCanCommitWithNoopPostStep() throws Exception {
97         final DOMDataTreeCommitCohort cohort = mock(DOMDataTreeCommitCohort.class);
98         doReturn(PostCanCommitStep.NOOP_SUCCESSFUL_FUTURE).when(cohort).canCommit(any(Object.class),
99                 any(SchemaContext.class), any(Collection.class));
100         ArgumentCaptor<Collection> candidateCapt = ArgumentCaptor.forClass(Collection.class);
101         IntegrationTestKit kit = new IntegrationTestKit(getSystem(), datastoreContextBuilder);
102
103         try (AbstractDataStore dataStore = kit.setupAbstractDataStore(
104                 DistributedDataStore.class, "testSuccessfulCanCommitWithNoopPostStep", "test-1")) {
105             final ObjectRegistration<DOMDataTreeCommitCohort> cohortReg = dataStore.registerCommitCohort(TEST_ID,
106                     cohort);
107             assertNotNull(cohortReg);
108
109             IntegrationTestKit.verifyShardState(dataStore, "test-1",
110                 state -> assertEquals("Cohort registrations", 1, state.getCommitCohortActors().size()));
111
112             final ContainerNode node = ImmutableNodes.containerNode(TestModel.TEST_QNAME);
113             kit.testWriteTransaction(dataStore, TestModel.TEST_PATH, node);
114             verify(cohort).canCommit(any(Object.class), any(SchemaContext.class), candidateCapt.capture());
115             assertDataTreeCandidate((DOMDataTreeCandidate) candidateCapt.getValue().iterator().next(), TEST_ID,
116                     ModificationType.WRITE, Optional.of(node), Optional.absent());
117
118             reset(cohort);
119             doReturn(PostCanCommitStep.NOOP_SUCCESSFUL_FUTURE).when(cohort).canCommit(any(Object.class),
120                     any(SchemaContext.class), any(Collection.class));
121
122             kit.testWriteTransaction(dataStore, TestModel.OUTER_LIST_PATH,
123                     ImmutableNodes.mapNodeBuilder(TestModel.OUTER_LIST_QNAME)
124                     .withChild(ImmutableNodes.mapEntry(TestModel.OUTER_LIST_QNAME, TestModel.ID_QNAME, 42))
125                     .build());
126             verify(cohort).canCommit(any(Object.class), any(SchemaContext.class), any(Collection.class));
127
128             cohortReg.close();
129
130             IntegrationTestKit.verifyShardState(dataStore, "test-1",
131                 state -> assertEquals("Cohort registrations", 0, state.getCommitCohortActors().size()));
132
133             kit.testWriteTransaction(dataStore, TestModel.TEST_PATH, node);
134             verifyNoMoreInteractions(cohort);
135         }
136     }
137
138     @SuppressWarnings("unchecked")
139     @Test
140     public void testFailedCanCommit() throws Exception {
141         final DOMDataTreeCommitCohort failedCohort = mock(DOMDataTreeCommitCohort.class);
142
143         doReturn(FAILED_CAN_COMMIT_FUTURE).when(failedCohort).canCommit(any(Object.class),
144                 any(SchemaContext.class), any(Collection.class));
145
146         IntegrationTestKit kit = new IntegrationTestKit(getSystem(), datastoreContextBuilder);
147         try (AbstractDataStore dataStore = kit.setupAbstractDataStore(
148                 DistributedDataStore.class, "testFailedCanCommit", "test-1")) {
149             dataStore.registerCommitCohort(TEST_ID, failedCohort);
150
151             IntegrationTestKit.verifyShardState(dataStore, "test-1",
152                 state -> assertEquals("Cohort registrations", 1, state.getCommitCohortActors().size()));
153
154             DOMStoreWriteTransaction writeTx = dataStore.newWriteOnlyTransaction();
155             writeTx.write(TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME));
156             DOMStoreThreePhaseCommitCohort dsCohort = writeTx.ready();
157             try {
158                 dsCohort.canCommit().get(5, TimeUnit.SECONDS);
159                 fail("Exception should be raised.");
160             } catch (ExecutionException e) {
161                 assertSame(FAILED_CAN_COMMIT, Throwables.getRootCause(e));
162             }
163         }
164     }
165
166     @SuppressWarnings({ "unchecked", "rawtypes" })
167     @Test
168     public void testCanCommitWithListEntries() throws Exception {
169         final DOMDataTreeCommitCohort cohort = mock(DOMDataTreeCommitCohort.class);
170         doReturn(PostCanCommitStep.NOOP_SUCCESSFUL_FUTURE).when(cohort).canCommit(any(Object.class),
171                 any(SchemaContext.class), any(Collection.class));
172         IntegrationTestKit kit = new IntegrationTestKit(getSystem(), datastoreContextBuilder);
173
174         try (AbstractDataStore dataStore = kit.setupAbstractDataStore(
175                 DistributedDataStore.class, "testCanCommitWithMultipleListEntries", "cars-1")) {
176             final ObjectRegistration<DOMDataTreeCommitCohort> cohortReg = dataStore.registerCommitCohort(
177                     new DOMDataTreeIdentifier(LogicalDatastoreType.CONFIGURATION, CarsModel.CAR_LIST_PATH
178                             .node(CarsModel.CAR_QNAME)), cohort);
179             assertNotNull(cohortReg);
180
181             IntegrationTestKit.verifyShardState(dataStore, "cars-1",
182                 state -> assertEquals("Cohort registrations", 1, state.getCommitCohortActors().size()));
183
184             // First write an empty base container and verify the cohort isn't invoked.
185
186             DOMStoreWriteTransaction writeTx = dataStore.newWriteOnlyTransaction();
187             writeTx.write(CarsModel.BASE_PATH, CarsModel.emptyContainer());
188             writeTx.write(CarsModel.CAR_LIST_PATH, CarsModel.newCarMapNode());
189             kit.doCommit(writeTx.ready());
190             verifyNoMoreInteractions(cohort);
191
192             // Write a single car entry and verify the cohort is invoked.
193
194             writeTx = dataStore.newWriteOnlyTransaction();
195             final YangInstanceIdentifier optimaPath = CarsModel.newCarPath("optima");
196             final MapEntryNode optimaNode = CarsModel.newCarEntry("optima", BigInteger.valueOf(20000));
197             writeTx.write(optimaPath, optimaNode);
198             kit.doCommit(writeTx.ready());
199
200             ArgumentCaptor<Collection> candidateCapture = ArgumentCaptor.forClass(Collection.class);
201             verify(cohort).canCommit(any(Object.class), any(SchemaContext.class), candidateCapture.capture());
202             assertDataTreeCandidate((DOMDataTreeCandidate) candidateCapture.getValue().iterator().next(),
203                     new DOMDataTreeIdentifier(LogicalDatastoreType.CONFIGURATION, optimaPath), ModificationType.WRITE,
204                     Optional.of(optimaNode), Optional.absent());
205
206             // Write replace the cars container with 2 new car entries. The cohort should get invoked with 3
207             // DOMDataTreeCandidates: once for each of the 2 new car entries (WRITE mod) and once for the deleted prior
208             // car entry (DELETE mod).
209
210             reset(cohort);
211             doReturn(PostCanCommitStep.NOOP_SUCCESSFUL_FUTURE).when(cohort).canCommit(any(Object.class),
212                     any(SchemaContext.class), any(Collection.class));
213
214             writeTx = dataStore.newWriteOnlyTransaction();
215             final YangInstanceIdentifier sportagePath = CarsModel.newCarPath("sportage");
216             final MapEntryNode sportageNode = CarsModel.newCarEntry("sportage", BigInteger.valueOf(20000));
217             final YangInstanceIdentifier soulPath = CarsModel.newCarPath("soul");
218             final MapEntryNode soulNode = CarsModel.newCarEntry("soul", BigInteger.valueOf(20000));
219             writeTx.write(CarsModel.BASE_PATH, CarsModel.newCarsNode(CarsModel.newCarsMapNode(sportageNode,soulNode)));
220             kit.doCommit(writeTx.ready());
221
222             candidateCapture = ArgumentCaptor.forClass(Collection.class);
223             verify(cohort).canCommit(any(Object.class), any(SchemaContext.class), candidateCapture.capture());
224
225             assertDataTreeCandidate(findCandidate(candidateCapture, sportagePath), new DOMDataTreeIdentifier(
226                     LogicalDatastoreType.CONFIGURATION, sportagePath), ModificationType.WRITE,
227                     Optional.of(sportageNode), Optional.absent());
228
229             assertDataTreeCandidate(findCandidate(candidateCapture, soulPath), new DOMDataTreeIdentifier(
230                     LogicalDatastoreType.CONFIGURATION, soulPath), ModificationType.WRITE,
231                     Optional.of(soulNode), Optional.absent());
232
233             assertDataTreeCandidate(findCandidate(candidateCapture, optimaPath), new DOMDataTreeIdentifier(
234                     LogicalDatastoreType.CONFIGURATION, optimaPath), ModificationType.DELETE,
235                     Optional.absent(), Optional.of(optimaNode));
236
237             // Delete the cars container - cohort should be invoked for the 2 deleted car entries.
238
239             reset(cohort);
240             doReturn(PostCanCommitStep.NOOP_SUCCESSFUL_FUTURE).when(cohort).canCommit(any(Object.class),
241                     any(SchemaContext.class), any(Collection.class));
242
243             writeTx = dataStore.newWriteOnlyTransaction();
244             writeTx.delete(CarsModel.BASE_PATH);
245             kit.doCommit(writeTx.ready());
246
247             candidateCapture = ArgumentCaptor.forClass(Collection.class);
248             verify(cohort).canCommit(any(Object.class), any(SchemaContext.class), candidateCapture.capture());
249
250             assertDataTreeCandidate(findCandidate(candidateCapture, sportagePath), new DOMDataTreeIdentifier(
251                     LogicalDatastoreType.CONFIGURATION, sportagePath), ModificationType.DELETE,
252                     Optional.absent(), Optional.of(sportageNode));
253
254             assertDataTreeCandidate(findCandidate(candidateCapture, soulPath), new DOMDataTreeIdentifier(
255                     LogicalDatastoreType.CONFIGURATION, soulPath), ModificationType.DELETE,
256                     Optional.absent(), Optional.of(soulNode));
257
258         }
259     }
260
261     @SuppressWarnings("rawtypes")
262     private static DOMDataTreeCandidate findCandidate(final ArgumentCaptor<Collection> candidateCapture,
263             final YangInstanceIdentifier rootPath) {
264         for (Object obj: candidateCapture.getValue()) {
265             DOMDataTreeCandidate candidate = (DOMDataTreeCandidate)obj;
266             if (rootPath.equals(candidate.getRootPath().getRootIdentifier())) {
267                 return candidate;
268             }
269         }
270
271         return null;
272     }
273
274     /**
275      * FIXME: Since we invoke DOMDataTreeCommitCohort#canCommit on preCommit (as that's when we generate a
276      * DataTreeCandidate) and since currently preCommit is a noop in the Shard backend (it is combined with commit),
277      * we can't actually test abort after canCommit.
278      */
279     @SuppressWarnings("unchecked")
280     @Test
281     @Ignore
282     public void testAbortAfterCanCommit() throws Exception {
283         final DOMDataTreeCommitCohort cohortToAbort = mock(DOMDataTreeCommitCohort.class);
284         final PostCanCommitStep stepToAbort = mock(PostCanCommitStep.class);
285         doReturn(ThreePhaseCommitStep.NOOP_ABORT_FUTURE).when(stepToAbort).abort();
286         doReturn(PostPreCommitStep.NOOP_FUTURE).when(stepToAbort).preCommit();
287         doReturn(FluentFutures.immediateFluentFuture(stepToAbort)).when(cohortToAbort).canCommit(any(Object.class),
288                 any(SchemaContext.class), any(Collection.class));
289
290         IntegrationTestKit kit = new IntegrationTestKit(getSystem(), datastoreContextBuilder);
291         try (AbstractDataStore dataStore = kit.setupAbstractDataStore(
292                 DistributedDataStore.class, "testAbortAfterCanCommit", "test-1", "cars-1")) {
293             dataStore.registerCommitCohort(TEST_ID, cohortToAbort);
294
295             IntegrationTestKit.verifyShardState(dataStore, "test-1",
296                 state -> assertEquals("Cohort registrations", 1, state.getCommitCohortActors().size()));
297
298             DOMStoreWriteTransaction writeTx = dataStore.newWriteOnlyTransaction();
299             writeTx.write(TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME));
300             writeTx.write(CarsModel.BASE_PATH, CarsModel.emptyContainer());
301             DOMStoreThreePhaseCommitCohort dsCohort = writeTx.ready();
302
303             dsCohort.canCommit().get(5, TimeUnit.SECONDS);
304             dsCohort.preCommit().get(5, TimeUnit.SECONDS);
305             dsCohort.abort().get(5, TimeUnit.SECONDS);
306             verify(stepToAbort).abort();
307         }
308     }
309
310     private static void assertDataTreeCandidate(final DOMDataTreeCandidate candidate,
311             final DOMDataTreeIdentifier expTreeId, final ModificationType expType,
312             final Optional<NormalizedNode<?, ?>> expDataAfter, final Optional<NormalizedNode<?, ?>> expDataBefore) {
313         assertNotNull("Expected candidate for path " + expTreeId.getRootIdentifier(), candidate);
314         assertEquals("rootPath", expTreeId, candidate.getRootPath());
315         assertEquals("modificationType", expType, candidate.getRootNode().getModificationType());
316
317         assertEquals("dataAfter present", expDataAfter.isPresent(), candidate.getRootNode().getDataAfter().isPresent());
318         if (expDataAfter.isPresent()) {
319             assertEquals("dataAfter", expDataAfter.get(), candidate.getRootNode().getDataAfter().get());
320         }
321
322         assertEquals("dataBefore present", expDataBefore.isPresent(),
323                 candidate.getRootNode().getDataBefore().isPresent());
324         if (expDataBefore.isPresent()) {
325             assertEquals("dataBefore", expDataBefore.get(), candidate.getRootNode().getDataBefore().get());
326         }
327     }
328 }