BUG-865: remove String-based getDataChildByName()
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / java / org / opendaylight / yangtools / sal / binding / yang / types / TestUtils.java
1 /*
2  * Copyright (c) 2016 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.sal.binding.yang.types;
9
10 import java.io.File;
11 import java.io.FileInputStream;
12 import java.io.FileNotFoundException;
13 import java.io.InputStream;
14 import java.util.Collection;
15 import java.util.List;
16 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
18 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
19 import org.opendaylight.yangtools.yang.parser.spi.source.StatementStreamSource;
20 import org.opendaylight.yangtools.yang.parser.stmt.reactor.CrossSourceStatementReactor;
21 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.YangInferencePipeline;
22 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.YangStatementSourceImpl;
23
24 public class TestUtils {
25
26     private TestUtils() {
27         throw new UnsupportedOperationException("Utility class");
28     }
29
30     public static SchemaContext parseYangSources(StatementStreamSource... sources)
31             throws SourceException, ReactorException {
32
33         CrossSourceStatementReactor.BuildAction reactor = YangInferencePipeline.RFC6020_REACTOR
34                 .newBuild();
35         reactor.addSources(sources);
36
37         return reactor.buildEffective();
38     }
39
40     public static SchemaContext parseYangSources(File... files) throws SourceException, ReactorException, FileNotFoundException {
41
42         StatementStreamSource[] sources = new StatementStreamSource[files.length];
43
44         for(int i = 0; i<files.length; i++) {
45             sources[i] = new YangStatementSourceImpl(new FileInputStream(files[i]));
46         }
47
48         return parseYangSources(sources);
49     }
50
51     public static SchemaContext parseYangSources(Collection<File> files) throws SourceException, ReactorException, FileNotFoundException {
52         return parseYangSources(files.toArray(new File[files.size()]));
53     }
54
55
56     public static SchemaContext parseYangStreams(List<InputStream> streams)
57             throws SourceException, ReactorException {
58
59         CrossSourceStatementReactor.BuildAction reactor = YangInferencePipeline.RFC6020_REACTOR
60                 .newBuild();
61         return reactor.buildEffective(streams);
62     }
63 }