247f4b2e491e53a97d4422f26cf8708fd8169966
[controller.git] / opendaylight / md-sal / sal-inmemory-datastore / src / test / java / org / opendaylight / controller / md / sal / dom / store / impl / TestModel.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 java.io.InputStream;
11 import java.util.Collections;
12 import java.util.List;
13 import org.opendaylight.yangtools.yang.common.QName;
14 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
15 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
17 import org.opendaylight.yangtools.yang.parser.stmt.reactor.CrossSourceStatementReactor;
18 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.YangInferencePipeline;
19
20 public class TestModel {
21
22     public static final QName TEST_QNAME =
23             QName.create("urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:test", "2014-03-13", "test");
24     public static final QName OUTER_LIST_QNAME = QName.create(TEST_QNAME, "outer-list");
25     public static final QName INNER_LIST_QNAME = QName.create(TEST_QNAME, "inner-list");
26     public static final QName OUTER_CHOICE_QNAME = QName.create(TEST_QNAME, "outer-choice");
27     public static final QName ID_QNAME = QName.create(TEST_QNAME, "id");
28     public static final QName NAME_QNAME = QName.create(TEST_QNAME, "name");
29     public static final QName VALUE_QNAME = QName.create(TEST_QNAME, "value");
30     public static final QName TWO_QNAME = QName.create(TEST_QNAME, "two");
31     public static final QName THREE_QNAME = QName.create(TEST_QNAME, "three");
32     public static final YangInstanceIdentifier TEST_PATH = YangInstanceIdentifier.of(TEST_QNAME);
33     public static final YangInstanceIdentifier OUTER_LIST_PATH =
34             YangInstanceIdentifier.builder(TEST_PATH).node(OUTER_LIST_QNAME).build();
35     private static final String DATASTORE_TEST_YANG = "/odl-datastore-test.yang";
36
37     private static InputStream getInputStream() {
38         return TestModel.class.getResourceAsStream(DATASTORE_TEST_YANG);
39     }
40
41     public static SchemaContext createTestContext() {
42         final CrossSourceStatementReactor.BuildAction reactor = YangInferencePipeline.RFC6020_REACTOR.newBuild();
43         final SchemaContext schemaContext;
44         final List<InputStream> streams = Collections.singletonList(getInputStream());
45
46         try {
47             schemaContext = reactor.buildEffective(streams);
48         } catch (ReactorException e) {
49             throw new RuntimeException("Unable to build schema context from " + streams, e);
50         }
51         return schemaContext;
52     }
53 }