c98044af329416a365c50cf14f09dbdb0dbd968e
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / md / cluster / datastore / model / SchemaContextHelper.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.cluster.datastore.model;
9
10 import java.io.InputStream;
11 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
12 import org.opendaylight.yangtools.yang.test.util.YangParserTestUtils;
13
14 public final class SchemaContextHelper {
15
16     public static final String ODL_DATASTORE_TEST_YANG = "/odl-datastore-test.yang";
17     public static final String PEOPLE_YANG = "/people.yang";
18     public static final String CARS_YANG = "/cars.yang";
19
20     private SchemaContextHelper() {
21
22     }
23
24     public static InputStream getInputStream(final String yangFileName) {
25         return SchemaContextHelper.class.getResourceAsStream(yangFileName);
26     }
27
28     public static SchemaContext full() {
29         return select(ODL_DATASTORE_TEST_YANG, PEOPLE_YANG, CARS_YANG);
30     }
31
32     public static SchemaContext select(final String... schemaFiles) {
33         return YangParserTestUtils.parseYangResources(SchemaContextHelper.class, schemaFiles);
34     }
35
36     public static SchemaContext distributedShardedDOMDataTreeSchemaContext() {
37         // we need prefix-shard-configuration and odl-datastore-test models
38         // for DistributedShardedDOMDataTree tests
39         return YangParserTestUtils.parseYangResources(SchemaContextHelper.class, ODL_DATASTORE_TEST_YANG,
40             "/META-INF/yang/prefix-shard-configuration@2017-01-10.yang");
41     }
42 }