62fb46f96449418468c5acbfa0298112586722e2
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / java / org / opendaylight / yangtools / yang / stmt / yin / YinFileImportStmtTest.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.yang.stmt.yin;
9
10 import static org.hamcrest.CoreMatchers.anyOf;
11 import static org.hamcrest.MatcherAssert.assertThat;
12 import static org.hamcrest.core.Is.is;
13 import static org.junit.Assert.assertEquals;
14 import static org.junit.Assert.assertNotNull;
15
16 import java.util.Collection;
17 import java.util.Iterator;
18 import org.junit.Test;
19 import org.opendaylight.yangtools.yang.model.api.Module;
20 import org.opendaylight.yangtools.yang.model.api.ModuleImport;
21
22 public class YinFileImportStmtTest extends AbstractYinModulesTest {
23
24     @Test
25     public void testImport() {
26         Module testModule = context.findModules("ietf-netconf-monitoring").iterator().next();
27         assertNotNull(testModule);
28
29         Collection<? extends ModuleImport> imports = testModule.getImports();
30         assertEquals(2, imports.size());
31
32         Iterator<? extends ModuleImport> importsIterator = imports.iterator();
33         ModuleImport moduleImport = importsIterator.next();
34
35         assertThat(moduleImport.getModuleName(), anyOf(is("ietf-yang-types"), is("ietf-inet-types")));
36         assertThat(moduleImport.getPrefix(), anyOf(is("yang"), is("inet")));
37
38         moduleImport = importsIterator.next();
39         assertThat(moduleImport.getModuleName(), anyOf(is("ietf-yang-types"), is("ietf-inet-types")));
40         assertThat(moduleImport.getPrefix(), anyOf(is("yang"), is("inet")));
41     }
42 }