786bd099829eae3eed8a895dbd428e067812eba2
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / java / org / opendaylight / mdsal / binding / generator / impl / Bug6135Test.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.mdsal.binding.generator.impl;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertFalse;
12 import static org.junit.Assert.assertNotNull;
13
14 import java.util.List;
15 import org.junit.Test;
16 import org.opendaylight.mdsal.binding.model.api.Enumeration;
17 import org.opendaylight.mdsal.binding.model.api.GeneratedType;
18 import org.opendaylight.mdsal.binding.model.api.Type;
19 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
20 import org.opendaylight.yangtools.yang.test.util.YangParserTestUtils;
21
22 public class Bug6135Test {
23
24     @Test
25     public void bug6135Test() {
26         final SchemaContext context = YangParserTestUtils.parseYangResource("/bug-6135/foo.yang");
27         assertNotNull(context);
28
29         final List<Type> generateTypes = DefaultBindingGenerator.generateFor(context);
30         assertFalse(generateTypes.isEmpty());
31
32         GeneratedType genInterface = null;
33         for (final Type type : generateTypes) {
34             if (type.getName().equals("TestLeafrefData")) {
35                 genInterface = (GeneratedType) type;
36                 break;
37             }
38         }
39         assertNotNull(genInterface);
40         final List<Enumeration> enums = genInterface.getEnumerations();
41         assertEquals(2, enums.size());
42     }
43 }