3761c787057f0e0be0580d7e2238207f81e929ad
[mdsal.git] / dom / mdsal-dom-broker / src / test / java / org / opendaylight / mdsal / dom / broker / test / util / 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.mdsal.dom.broker.test.util;
9
10 import java.io.InputStream;
11 import java.util.Collections;
12 import java.util.Set;
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.Module;
16 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
17 import org.opendaylight.yangtools.yang.parser.impl.YangParserImpl;
18
19 public class TestModel {
20
21     public static final QName TEST_QNAME = QName.create("urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:test", "2014-03-13",
22             "test");
23     public static final QName TEST2_QNAME = QName.create("urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:test", "2014-03-13",
24             "test2");
25     public static final QName OUTER_LIST_QNAME = QName.create(TEST_QNAME, "outer-list");
26     public static final QName INNER_LIST_QNAME = QName.create(TEST_QNAME, "inner-list");
27     public static final QName OUTER_CHOICE_QNAME = QName.create(TEST_QNAME, "outer-choice");
28     public static final QName ID_QNAME = QName.create(TEST_QNAME, "id");
29     public static final QName NAME_QNAME = QName.create(TEST_QNAME, "name");
30     public static final QName VALUE_QNAME = QName.create(TEST_QNAME, "value");
31     private static final String DATASTORE_TEST_YANG = "/odl-datastore-test.yang";
32
33     public static final YangInstanceIdentifier TEST_PATH = YangInstanceIdentifier.of(TEST_QNAME);
34     public static final YangInstanceIdentifier TEST2_PATH = YangInstanceIdentifier.of(TEST2_QNAME);
35     public static final YangInstanceIdentifier OUTER_LIST_PATH = YangInstanceIdentifier.builder(TEST_PATH).node(OUTER_LIST_QNAME).build();
36     public static final QName TWO_QNAME = QName.create(TEST_QNAME,"two");
37     public static final QName THREE_QNAME = QName.create(TEST_QNAME,"three");
38
39
40     public static final InputStream getDatastoreTestInputStream() {
41         return getInputStream(DATASTORE_TEST_YANG);
42     }
43
44     private static InputStream getInputStream(final String resourceName) {
45         return TestModel.class.getResourceAsStream(DATASTORE_TEST_YANG);
46     }
47
48     public static SchemaContext createTestContext() {
49         YangParserImpl parser = new YangParserImpl();
50         Set<Module> modules = parser.parseYangModelsFromStreams(Collections.singletonList(getDatastoreTestInputStream()));
51         return parser.resolveSchemaContext(modules);
52     }
53 }