756abb078505c4acbae7c2645a8ade6611adc392
[yangtools.git] / yang / yang-data-impl / src / test / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / RetestModel.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 java.io.InputStream;
11 import java.util.Arrays;
12 import org.opendaylight.yangtools.yang.common.QName;
13 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
14 import org.opendaylight.yangtools.yang.data.impl.RetestUtils;
15 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
17
18 public class RetestModel {
19
20     public static final QName TEST_QNAME = QName.create(
21             "urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:test", "2014-03-13", "test");
22     public static final QName OUTER_LIST_QNAME = QName.create(TEST_QNAME, "outer-list");
23     public static final QName INNER_LIST_QNAME = QName.create(TEST_QNAME, "inner-list");
24     public static final QName OUTER_CHOICE_QNAME = QName.create(TEST_QNAME, "outer-choice");
25     public static final QName ID_QNAME = QName.create(TEST_QNAME, "id");
26     public static final QName NAME_QNAME = QName.create(TEST_QNAME, "name");
27     public static final QName VALUE_QNAME = QName.create(TEST_QNAME, "value");
28     private static final String DATASTORE_TEST_YANG = "/odl-datastore-test.yang";
29
30     public static final YangInstanceIdentifier TEST_PATH = YangInstanceIdentifier.of(TEST_QNAME);
31     public static final YangInstanceIdentifier OUTER_LIST_PATH = YangInstanceIdentifier.builder(TEST_PATH)
32             .node(OUTER_LIST_QNAME).build();
33     public static final QName TWO_QNAME = QName.create(TEST_QNAME, "two");
34     public static final QName THREE_QNAME = QName.create(TEST_QNAME, "three");
35
36     public static final InputStream getDatastoreTestInputStream() {
37         return RetestModel.class.getResourceAsStream(DATASTORE_TEST_YANG);
38     }
39
40     public static SchemaContext createTestContext() throws ReactorException {
41         return RetestUtils.parseYangStreams(Arrays.asList(getDatastoreTestInputStream()));
42     }
43 }