d2e8a7822db709a93799a48b02d855d22870404b
[mdsal.git] / dom / mdsal-dom-inmemory-datastore / src / test / java / org / opendaylight / controller / md / sal / dom / store / impl / SchemaUpdateForTransactionTest.java
1 /*
2  * Copyright (c) 2014 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.md.sal.dom.store.impl;
9
10 import static org.junit.Assert.assertNotNull;
11
12 import org.opendaylight.mdsal.dom.spi.store.DOMStoreReadWriteTransaction;
13
14 import com.google.common.util.concurrent.MoreExecutors;
15 import java.util.concurrent.ExecutionException;
16 import org.junit.Before;
17 import org.junit.Ignore;
18 import org.junit.Test;
19 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
20 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
21
22 public class SchemaUpdateForTransactionTest {
23
24     private static final YangInstanceIdentifier TOP_PATH = YangInstanceIdentifier.of(TestModel.TEST_QNAME);
25     private SchemaContext schemaContext;
26     private InMemoryDOMDataStore domStore;
27
28     @Before
29     public void setupStore() {
30         domStore = new InMemoryDOMDataStore("TEST", MoreExecutors.newDirectExecutorService());
31         // loadSchemas(RockTheHouseInput.class);
32     }
33
34     public void loadSchemas(final Class<?>... classes) {
35         // YangModuleInfo moduleInfo;
36         // try {
37         // ModuleInfoBackedContext context = ModuleInfoBackedContext.create();
38         // for (Class<?> clz : classes) {
39         // moduleInfo = BindingReflections.getModuleInfo(clz);
40         //
41         // context.registerModuleInfo(moduleInfo);
42         // }
43         // schemaContext = context.tryToCreateSchemaContext().get();
44         // domStore.onGlobalContextUpdated(schemaContext);
45         // } catch (Exception e) {
46         // Throwables.propagateIfPossible(e);
47         // }
48     }
49
50     /**
51      * Test suite tests allocating transaction when schema context
52      * does not contain module necessary for client write,
53      * then triggering update of global schema context
54      * and then performing write (according to new module).
55      *
56      * If transaction between allocation and schema context was
57      * unmodified, it is safe to change its schema context
58      * to new one (e.g. it will be same as if allocated after
59      * schema context update.)
60      *
61      * @throws InterruptedException
62      * @throws ExecutionException
63      */
64     @Ignore
65     @Test
66     public void testTransactionSchemaUpdate() throws InterruptedException, ExecutionException {
67         // FIXME: Rewrite this test to be pure DOM only.
68         assertNotNull(domStore);
69
70         // We allocate transaction, initial schema context does not
71         // contain Lists model
72         final DOMStoreReadWriteTransaction writeTx = domStore.newReadWriteTransaction();
73         assertNotNull(writeTx);
74
75         // we trigger schema context update to contain Lists model
76         // loadSchemas(RockTheHouseInput.class, Top.class);
77
78         /**
79          *
80          * Writes /test in writeTx, this write should not fail
81          * with IllegalArgumentException since /test is in
82          * schema context.
83          *
84          */
85         // writeTx.write(TOP_PATH, ImmutableNodes.containerNode(Top.QNAME));
86
87     }
88
89 }