Added Support for conversion yang binary type to java type;
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-generator-impl / src / test / java / org / opendaylight / controller / sal / binding / generator / impl / BinaryTypeTest.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 org.junit.BeforeClass;
11 import org.junit.Test;
12 import org.opendaylight.controller.sal.binding.generator.api.BindingGenerator;
13 import org.opendaylight.controller.sal.binding.model.api.Type;
14 import org.opendaylight.controller.yang.model.api.Module;
15 import org.opendaylight.controller.yang.model.api.SchemaContext;
16 import org.opendaylight.controller.yang.model.parser.api.YangModelParser;
17 import org.opendaylight.controller.yang.parser.impl.YangParserImpl;
18
19 import java.io.File;
20 import java.util.ArrayList;
21 import java.util.List;
22 import java.util.Set;
23
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertNotNull;
26
27 public class BinaryTypeTest {
28     private final static List<File> yangModels = new ArrayList<>();
29     private final static String yangModelsFolder = AugmentedTypeTest.class
30             .getResource("/binary-type-test-models").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 binaryTypeTest() {
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         //TODO: implement test
56     }
57 }