Do not pretty-print body class
[yangtools.git] / data / yang-data-impl / src / test / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / Bug3674Test.java
1 /*
2  * Copyright (c) 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.yangtools.yang.data.impl.schema.tree;
9
10 import static org.junit.Assert.assertEquals;
11
12 import org.junit.Before;
13 import org.junit.Test;
14 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTree;
15 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate;
16 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidateNode;
17 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeConfiguration;
18 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeModification;
19 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataValidationFailedException;
20 import org.opendaylight.yangtools.yang.data.api.schema.tree.ModificationType;
21 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
22
23 /**
24  * BUG-3674: issuing a delete on a non-existent entry must be preserved in
25  *           DataTreeModification, but should appear as UNMODIFIED in the
26  *           resulting DataTreeCandidate.
27  */
28 public class Bug3674Test extends AbstractTestModelTest {
29     private DataTree tree;
30
31     @Before
32     public void setUp() throws DataValidationFailedException {
33         tree = new InMemoryDataTreeFactory().create(DataTreeConfiguration.DEFAULT_OPERATIONAL, SCHEMA_CONTEXT);
34
35         // Create the top-level container
36         final DataTreeModification mod = tree.takeSnapshot().newModification();
37         mod.write(TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME));
38         mod.ready();
39         tree.commit(tree.prepare(mod));
40     }
41
42     @Test
43     public void testDeleteOfNonExistingNode() throws DataValidationFailedException {
44         final DataTreeModification mod = tree.takeSnapshot().newModification();
45         mod.delete(TestModel.OUTER_LIST_PATH);
46         mod.ready();
47
48         final DataTreeCandidate candidate = tree.prepare(mod);
49         final DataTreeCandidateNode root = candidate.getRootNode();
50         assertEquals(ModificationType.UNMODIFIED, root.getModificationType());
51     }
52 }