Update BindingRuntime{Context,Generator,Types}
[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.test.util.YangParserTestUtils;
20
21 public class Bug6135Test {
22     @Test
23     public void bug6135Test() {
24         final List<Type> generateTypes = DefaultBindingGenerator.generateFor(YangParserTestUtils.parseYangResource(
25             "/bug-6135/foo.yang"));
26         assertFalse(generateTypes.isEmpty());
27
28         GeneratedType genInterface = null;
29         for (final Type type : generateTypes) {
30             if (type.getName().equals("TestLeafrefData")) {
31                 genInterface = (GeneratedType) type;
32                 break;
33             }
34         }
35         assertNotNull(genInterface);
36         final List<Enumeration> enums = genInterface.getEnumerations();
37         assertEquals(2, enums.size());
38     }
39 }