b21dfc03f30c99beb4f418c99974cd303094b3b8
[yangtools.git] / yang / yang-data-impl / src / test / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / 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.yangtools.yang.data.impl.schema.tree;
9
10 import com.google.common.io.Resources;
11 import java.io.IOException;
12 import java.io.InputStream;
13 import java.util.Collections;
14 import org.opendaylight.yangtools.yang.common.QName;
15 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
16 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
17 import org.opendaylight.yangtools.yang.model.parser.api.YangSyntaxErrorException;
18 import org.opendaylight.yangtools.yang.parser.impl.YangParserImpl;
19
20 public final class TestModel {
21
22     public static final QName TEST_QNAME = QName.create("urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:test", "2014-03-13",
23         "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     private static final String DATASTORE_TEST_YANG = "/odl-datastore-test.yang";
31
32     public static final YangInstanceIdentifier TEST_PATH = YangInstanceIdentifier.of(TEST_QNAME);
33     public static final YangInstanceIdentifier OUTER_LIST_PATH = YangInstanceIdentifier.builder(TEST_PATH).node(OUTER_LIST_QNAME).build();
34     public static final QName TWO_QNAME = QName.create(TEST_QNAME, "two");
35     public static final QName THREE_QNAME = QName.create(TEST_QNAME, "three");
36
37     private TestModel() {
38         throw new UnsupportedOperationException();
39     }
40
41     public static final InputStream getDatastoreTestInputStream() {
42         return TestModel.class.getResourceAsStream(DATASTORE_TEST_YANG);
43     }
44
45     public static SchemaContext createTestContext() {
46         YangParserImpl parser = new YangParserImpl();
47         try {
48             return parser.parseSources(Collections.singleton(Resources.asByteSource(TestModel.class.getResource(DATASTORE_TEST_YANG))));
49         } catch (IOException | YangSyntaxErrorException e) {
50             throw new IllegalStateException("Failed to create context", e);
51         }
52     }
53 }