Increased version of binding-generator to 0.5.5-SNAPSHOT.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-generator-impl / src / test / java / org / opendaylight / controller / sal / binding / generator / impl / ChoiceCaseGenTypesTest.java
1 /*
2  * Copyright (c) 2013 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.controller.sal.binding.generator.impl;
9
10 import static org.junit.Assert.*;
11
12 import java.io.File;
13 import java.util.ArrayList;
14 import java.util.List;
15 import java.util.Set;
16
17 import org.junit.BeforeClass;
18 import org.junit.Test;
19 import org.opendaylight.controller.sal.binding.generator.api.BindingGenerator;
20 import org.opendaylight.controller.sal.binding.model.api.Type;
21 import org.opendaylight.yangtools.yang.model.api.Module;
22 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
23 import org.opendaylight.yangtools.yang.model.parser.api.YangModelParser;
24 import org.opendaylight.yangtools.yang.parser.impl.YangParserImpl;
25
26 public class ChoiceCaseGenTypesTest {
27
28     private final static List<File> yangModels = new ArrayList<>();
29     private final static String yangModelsFolder = AugmentedTypeTest.class.getResource("/choice-case-type-test-models")
30             .getPath();
31
32     @BeforeClass
33     public static void loadTestResources() {
34         final File augFolder = new File(yangModelsFolder);
35         for (final File fileEntry : augFolder.listFiles()) {
36             if (fileEntry.isFile()) {
37                 yangModels.add(fileEntry);
38             }
39         }
40     }
41
42     @Test
43     public void choiceCaseResolvingTypeTest() {
44         final YangModelParser parser = new YangParserImpl();
45         final Set<Module> modules = parser.parseYangModels(yangModels);
46         final SchemaContext context = parser.resolveSchemaContext(modules);
47
48         assertNotNull("context is null", context);
49         final BindingGenerator bindingGen = new BindingGeneratorImpl();
50         final List<Type> genTypes = bindingGen.generateTypes(context);
51
52         assertNotNull("genTypes is null", genTypes);
53         assertFalse("genTypes is empty", genTypes.isEmpty());
54     }
55 }