0ea82f8fb8586fa52b0692316491c526241b688f
[controller.git] / opendaylight / sal / yang-prototype / code-generator / maven-yang-plugin-it / src / test / java / org / opendaylight / controller / yang2sources / plugin / it / YangToSourcesPluginTestIT.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.yang2sources.plugin.it;
9
10 import static org.junit.Assert.*;
11 import static org.junit.matchers.JUnitMatchers.*;
12
13 import java.io.File;
14 import java.net.URL;
15
16 import org.apache.maven.it.VerificationException;
17 import org.apache.maven.it.Verifier;
18 import org.junit.Test;
19
20 public class YangToSourcesPluginTestIT {
21
22     // TODO Test yang files in transitive dependencies
23
24     @Test
25     public void testYangRootNotExist() {
26         try {
27             setUp("YangRootNotExist/", false);
28         } catch (VerificationException e) {
29             assertVerificationException(e,
30                     "[ERROR] yang-to-sources: Unable to parse yang files from ");
31             assertVerificationException(
32                     e,
33                     "Caused by: org.apache.maven.plugin.MojoExecutionException: yang-to-sources: Unable to parse yang files from ");
34             return;
35         }
36
37         fail("Verification exception should have been thrown");
38     }
39
40     @Test
41     public void testCorrect() throws VerificationException {
42         Verifier v = setUp("Correct/", false);
43         verifyCorrectLog(v);
44     }
45
46     @Test
47     public void testAdditionalConfiguration() throws VerificationException {
48         Verifier v = setUp("AdditionalConfig/", false);
49         v.verifyTextInLog("[DEBUG] yang-to-sources: Additional configuration picked up for : org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl: {nm1=abcd=a.b.c.d, nm2=abcd2=a.b.c.d.2}");
50         v.verifyTextInLog("[DEBUG] yang-to-sources: Additional configuration picked up for : org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl: {c1=config}");
51         v.verifyTextInLog("../files marked as resources: META-INF/yang");
52         v.verifyTextInLog("target/generated-resources marked as resources for generator: org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl");
53     }
54
55     @Test
56     public void testMissingYangInDep() throws VerificationException {
57         try {
58             setUp("MissingYangInDep/", false);
59         } catch (VerificationException e) {
60             assertVerificationException(
61                     e,
62                     "org.opendaylight.controller.yang.parser.util.YangValidationException: Not existing module imported:unknownDep:2013-02-27 by:private:2013-02-27");
63             return;
64         }
65
66         fail("Verification exception should have been thrown");
67     }
68
69     static void verifyCorrectLog(Verifier v) throws VerificationException {
70         v.verifyErrorFreeLog();
71         v.verifyTextInLog("[INFO] yang-to-sources: YANG files parsed from");
72         v.verifyTextInLog("[INFO] yang-to-sources: Code generator instantiated from org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl");
73         v.verifyTextInLog("[INFO] yang-to-sources: Sources generated by org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl: null");
74     }
75
76     @Test
77     public void testNoGenerators() throws VerificationException {
78         Verifier v = setUp("NoGenerators/", false);
79         v.verifyErrorFreeLog();
80         v.verifyTextInLog("[WARNING] yang-to-sources: No code generators provided");
81     }
82
83     @Test
84     public void testUnknownGenerator() throws VerificationException {
85         Verifier v = setUp("UnknownGenerator/", true);
86         v.verifyTextInLog("[ERROR] yang-to-sources: Unable to generate sources with unknown generator");
87         v.verifyTextInLog("java.lang.ClassNotFoundException: unknown");
88         v.verifyTextInLog("[INFO] yang-to-sources: Code generator instantiated from org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl");
89         v.verifyTextInLog("[INFO] yang-to-sources: Sources generated by org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl: null");
90         v.verifyTextInLog("[ERROR] yang-to-sources: One or more code generators failed, including failed list(generatorClass=exception) {unknown=java.lang.ClassNotFoundException}");
91     }
92
93     @Test
94     public void testNoYangFiles() throws VerificationException {
95         Verifier v = setUp("NoYangFiles/", false);
96         v.verifyTextInLog("[INFO] yang-to-sources: YANG files parsed from []");
97         v.verifyTextInLog("[INFO] yang-to-sources: Code generator instantiated from org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl");
98         v.verifyTextInLog("[INFO] yang-to-sources: Sources generated by org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl: null");
99     }
100
101     static void assertVerificationException(VerificationException e,
102             String string) {
103         assertThat(e.getMessage(), containsString(string));
104     }
105
106     static Verifier setUp(String project, boolean ignoreF)
107             throws VerificationException {
108         final URL path = YangToSourcesPluginTestIT
109                 .class.getResource("/" + project
110                 + "pom.xml");
111         File parent = new File(path.getPath());
112         Verifier verifier = new Verifier(parent.getParent());
113         if (ignoreF)
114             verifier.addCliOption("-fn");
115         verifier.setMavenDebug(true);
116         verifier.executeGoal("generate-sources");
117         return verifier;
118     }
119
120     @Test
121     public void testNoOutputDir() throws VerificationException {
122         Verifier v = YangToSourcesPluginTestIT.setUp("NoOutputDir/", false);
123         verifyCorrectLog(v);
124     }
125
126     @Test
127     public void testFindResourceOnCp() throws VerificationException {
128         Verifier v1 = new Verifier(
129                 new File(getClass().getResource("/GenerateTest1/pom.xml")
130                         .getPath()).getParent());
131         v1.executeGoal("clean");
132         v1.executeGoal("package");
133         v1.assertFilePresent("target/classes/META-INF/yang/testfile1.yang");
134         v1.assertFilePresent("target/classes/META-INF/yang/testfile2.yang");
135         v1.assertFilePresent("target/classes/META-INF/yang/testfile3.yang");
136
137         Verifier v2 = YangToSourcesPluginTestIT.setUp("GenerateTest2/", false);
138         v2.executeGoal("clean");
139         v2.executeGoal("package");
140         v2.assertFilePresent("target/classes/META-INF/yang/private.yang");
141         v2.assertFileNotPresent("target/classes/META-INF/yang/testfile1.yang");
142         v2.assertFileNotPresent("target/classes/META-INF/yang/testfile2.yang");
143         v2.assertFileNotPresent("target/classes/META-INF/yang/testfile3.yang");
144     }
145 }