f4bd782a19735e9b9f8fb1e7930e4fb624beb899
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / java / org / opendaylight / mdsal / binding / yang / types / Bug4621.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.mdsal.binding.yang.types;
9
10 import static org.junit.Assert.assertNotNull;
11
12 import java.net.URI;
13 import org.junit.Rule;
14 import org.junit.Test;
15 import org.junit.rules.ExpectedException;
16 import org.opendaylight.yangtools.yang.common.QName;
17 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
18 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
19 import org.opendaylight.yangtools.yang.model.api.ListSchemaNode;
20 import org.opendaylight.yangtools.yang.model.api.Module;
21 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
22 import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
23 import org.opendaylight.yangtools.yang.test.util.YangParserTestUtils;
24
25 public class Bug4621 {
26
27     @Rule
28     public ExpectedException expectedEx = ExpectedException.none();
29
30     @Test
31     public void bug4621test() {
32         final SchemaContext schemaContext = YangParserTestUtils.parseYangResource("/bug-4621/foo.yang");
33         final Module moduleValid = schemaContext.findModules(URI.create("foo")).iterator().next();
34         final TypeProviderImpl typeProvider = new TypeProviderImpl(schemaContext);
35
36         expectedEx.expect(IllegalArgumentException.class);
37
38         final QName listNode = QName.create(moduleValid.getQNameModule(), "neighbor");
39         final QName leafrefNode = QName.create(moduleValid.getQNameModule(), "neighbor2-id");
40         DataSchemaNode leafrefRel = ((ListSchemaNode) moduleValid.getDataChildByName(listNode))
41                 .getDataChildByName(leafrefNode);
42         LeafSchemaNode leafRel = (LeafSchemaNode) leafrefRel;
43         TypeDefinition<?> leafTypeRel = leafRel.getType();
44         assertNotNull(typeProvider.javaTypeForSchemaDefinitionType(leafTypeRel, leafRel));
45     }
46 }