Do not use MoreExecutors.sameThreadExecutor()
[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
9 package org.opendaylight.controller.cluster.datastore.modification;
10
11 import static org.junit.Assert.assertEquals;
12 import com.google.common.base.Optional;
13 import org.apache.commons.lang.SerializationUtils;
14 import org.junit.Assert;
15 import org.junit.Test;
16 import org.opendaylight.controller.md.cluster.datastore.model.TestModel;
17 import org.opendaylight.controller.sal.core.spi.data.DOMStoreReadWriteTransaction;
18 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
19 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
20 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
21 import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableContainerNodeBuilder;
22
23 public class WriteModificationTest extends AbstractModificationTest {
24
25     @Test
26     public void testApply() throws Exception {
27         //Write something into the datastore
28         DOMStoreReadWriteTransaction writeTransaction = store.newReadWriteTransaction();
29         WriteModification writeModification = new WriteModification(TestModel.TEST_PATH,
30                 ImmutableNodes.containerNode(TestModel.TEST_QNAME));
31         writeModification.apply(writeTransaction);
32         commitTransaction(writeTransaction);
33
34         //Check if it's in the datastore
35         Optional<NormalizedNode<?,?>> data = readData(TestModel.TEST_PATH);
36         Assert.assertTrue(data.isPresent());
37     }
38
39     @Test
40     public void testSerialization() {
41         YangInstanceIdentifier path = TestModel.TEST_PATH;
42         NormalizedNode<?, ?> data = ImmutableContainerNodeBuilder.create().withNodeIdentifier(
43                 new YangInstanceIdentifier.NodeIdentifier(TestModel.TEST_QNAME)).
44                 withChild(ImmutableNodes.leafNode(TestModel.DESC_QNAME, "foo")).build();
45
46         WriteModification expected = new WriteModification(path, data);
47
48         WriteModification clone = (WriteModification) SerializationUtils.clone(expected);
49         assertEquals("getPath", expected.getPath(), clone.getPath());
50         assertEquals("getData", expected.getData(), clone.getData());
51     }
52 }