2 * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved.
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
9 package org.opendaylight.controller.cluster.datastore.modification;
11 import com.google.common.util.concurrent.ListenableFuture;
12 import com.google.common.util.concurrent.MoreExecutors;
13 import java.util.Optional;
14 import org.junit.Before;
15 import org.opendaylight.controller.md.cluster.datastore.model.TestModel;
16 import org.opendaylight.mdsal.dom.spi.store.DOMStoreReadTransaction;
17 import org.opendaylight.mdsal.dom.spi.store.DOMStoreThreePhaseCommitCohort;
18 import org.opendaylight.mdsal.dom.spi.store.DOMStoreWriteTransaction;
19 import org.opendaylight.mdsal.dom.store.inmemory.InMemoryDOMDataStore;
20 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
21 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
23 public abstract class AbstractModificationTest {
25 protected InMemoryDOMDataStore store;
29 store = new InMemoryDOMDataStore("test", MoreExecutors.newDirectExecutorService());
30 store.onGlobalContextUpdated(TestModel.createTestContext());
33 protected void commitTransaction(final DOMStoreWriteTransaction transaction) {
34 DOMStoreThreePhaseCommitCohort cohort = transaction.ready();
39 protected Optional<NormalizedNode<?, ?>> readData(final YangInstanceIdentifier path) throws Exception {
40 DOMStoreReadTransaction transaction = store.newReadOnlyTransaction();
41 ListenableFuture<Optional<NormalizedNode<?, ?>>> future = transaction.read(path);