Introducing the Modification classses
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / modification / WriteModificationTest.java
1 package org.opendaylight.controller.cluster.datastore.modification;
2
3 import com.google.common.base.Optional;
4 import org.junit.Assert;
5 import org.junit.Test;
6 import org.opendaylight.controller.md.cluster.datastore.model.TestModel;
7 import org.opendaylight.controller.sal.core.spi.data.DOMStoreReadWriteTransaction;
8 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
9 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
10
11 public class WriteModificationTest extends AbstractModificationTest{
12
13   @Test
14   public void testApply() throws Exception {
15     //Write something into the datastore
16     DOMStoreReadWriteTransaction writeTransaction = store.newReadWriteTransaction();
17     WriteModification writeModification = new WriteModification(TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME));
18     writeModification.apply(writeTransaction);
19     commitTransaction(writeTransaction);
20
21     //Check if it's in the datastore
22     Optional<NormalizedNode<?,?>> data = readData(TestModel.TEST_PATH);
23     Assert.assertTrue(data.isPresent());
24
25   }
26 }