20409999d804d7a60bc193e346e117791263a21b
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / modification / WriteModificationTest.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.controller.cluster.datastore.modification;
9
10 import static org.junit.Assert.assertEquals;
11
12 import java.util.Optional;
13 import org.apache.commons.lang.SerializationUtils;
14 import org.junit.Test;
15 import org.opendaylight.controller.md.cluster.datastore.model.TestModel;
16 import org.opendaylight.mdsal.dom.spi.store.DOMStoreReadWriteTransaction;
17 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
18 import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
19 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
20
21 public class WriteModificationTest extends AbstractModificationTest {
22     @Test
23     public void testApply() throws Exception {
24         //Write something into the datastore
25         DOMStoreReadWriteTransaction writeTransaction = store.newReadWriteTransaction();
26         WriteModification writeModification = new WriteModification(TestModel.TEST_PATH, TEST_CONTAINER);
27         writeModification.apply(writeTransaction);
28         commitTransaction(writeTransaction);
29
30         //Check if it's in the datastore
31         assertEquals(Optional.of(TEST_CONTAINER), readData(TestModel.TEST_PATH));
32     }
33
34     @Test
35     public void testSerialization() {
36         WriteModification expected = new WriteModification(TestModel.TEST_PATH, Builders.containerBuilder()
37             .withNodeIdentifier(new NodeIdentifier(TestModel.TEST_QNAME))
38             .withChild(ImmutableNodes.leafNode(TestModel.DESC_QNAME, "foo"))
39             .build());
40
41         WriteModification clone = (WriteModification) SerializationUtils.clone(expected);
42         assertEquals("getPath", expected.getPath(), clone.getPath());
43         assertEquals("getData", expected.getData(), clone.getData());
44     }
45 }