0b17a86bdaf08c1b3b0e12fa2599957d866bc092
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / java / org / opendaylight / yangtools / sal / binding / generator / impl / IdentityrefTypeTest.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.yangtools.sal.binding.generator.impl;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotNull;
12
13 import java.io.File;
14 import java.io.IOException;
15 import java.net.URI;
16 import java.net.URISyntaxException;
17 import java.util.ArrayList;
18 import java.util.List;
19
20 import org.junit.Before;
21 import org.junit.Test;
22 import org.opendaylight.yangtools.sal.binding.generator.api.BindingGenerator;
23 import org.opendaylight.yangtools.sal.binding.model.api.GeneratedType;
24 import org.opendaylight.yangtools.sal.binding.model.api.MethodSignature;
25 import org.opendaylight.yangtools.sal.binding.model.api.ParameterizedType;
26 import org.opendaylight.yangtools.sal.binding.model.api.Type;
27 import org.opendaylight.yangtools.sal.binding.yang.types.TypeProviderImpl;
28 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
29 import org.opendaylight.yangtools.yang.model.parser.api.YangContextParser;
30 import org.opendaylight.yangtools.yang.parser.impl.YangParserImpl;
31
32 public class IdentityrefTypeTest {
33
34     private static List<File> testModels = null;
35
36     @Before
37     public void loadTestResources() throws URISyntaxException {
38         URI folderPath = IdentityrefTypeTest.class.getResource("/identityref.yang").toURI();
39         File folderFile = new File(folderPath);
40         testModels = new ArrayList<File>();
41
42         if (folderFile.isFile()) {
43             testModels.add(folderFile);
44         } else {
45             for (File file : folderFile.listFiles()) {
46                 if (file.isFile()) {
47                     testModels.add(file);
48                 }
49             }
50         }
51     }
52
53     /**
54      * Test mainly for the method
55      * {@link TypeProviderImpl#provideTypeForIdentityref(IdentityrefTypeDefinition)
56      * provideTypeForIdentityref}
57      * @throws IOException IOException
58      */
59     @Test
60     public void testIdentityrefYangBuiltInType() throws IOException {
61         final YangContextParser parser = new YangParserImpl();
62         final SchemaContext context = parser.parseFiles(testModels);
63
64         assertNotNull(context);
65         final BindingGenerator bindingGen = new BindingGeneratorImpl(true);
66         final List<Type> genTypes = bindingGen.generateTypes(context);
67
68         GeneratedType moduleGenType = null;
69         for (Type type : genTypes) {
70             if (type.getName().equals("ModuleIdentityrefData")) {
71                 if (type instanceof GeneratedType) {
72                     moduleGenType = (GeneratedType) type;
73                 }
74             }
75         }
76
77         assertNotNull("Generated type for whole module wasn't found", moduleGenType);
78
79         String typeName = null;
80         String actualTypeName = "";
81         int numOfActualTypes = 0;
82         List<MethodSignature> methodSignatures = moduleGenType.getMethodDefinitions();
83         for (MethodSignature methodSignature : methodSignatures) {
84             if (methodSignature.getName().equals("getLf")) {
85                 Type returnType = methodSignature.getReturnType();
86                 if (returnType instanceof ParameterizedType) {
87                     typeName = returnType.getName();
88                     Type[] actualTypes = ((ParameterizedType) returnType).getActualTypeArguments();
89                     numOfActualTypes = actualTypes.length;
90                     actualTypeName = actualTypes[0].getName();
91                 }
92             }
93         }
94         assertNotNull("The method 'getLf' wasn't found", typeName);
95         assertEquals("Return type has incorrect name", "Class", typeName);
96         assertEquals("Incorrect number of type parameters", 1, numOfActualTypes);
97         assertEquals("Return type has incorrect actual parameter", "SomeIdentity", actualTypeName);
98
99     }
100
101 }