Merge "Resolve Bug:445 Remove freemarker from config code generator."
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / src / test / java / org / opendaylight / controller / config / yangjmxgenerator / plugin / module / AbstractGeneratedObjectTest.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
9 package org.opendaylight.controller.config.yangjmxgenerator.plugin.module;
10
11 import net.sourceforge.pmd.lang.Parser;
12 import net.sourceforge.pmd.lang.ParserOptions;
13 import net.sourceforge.pmd.lang.ast.Node;
14 import net.sourceforge.pmd.lang.java.Java17Parser;
15 import org.apache.commons.io.FileUtils;
16 import org.opendaylight.controller.config.yangjmxgenerator.plugin.AbstractGeneratorTest;
17 import org.slf4j.Logger;
18 import org.slf4j.LoggerFactory;
19
20 import java.io.File;
21 import java.io.FileReader;
22 import java.io.IOException;
23
24 import static org.junit.Assert.assertNotNull;
25 import static org.junit.Assert.assertTrue;
26
27 public class AbstractGeneratedObjectTest extends AbstractGeneratorTest {
28     private static final Logger logger = LoggerFactory.getLogger(AbstractGeneratedObjectTest.class);
29
30     protected void assertHasMethodNamed(Node c, String method) {
31         assertTrue(c.hasDescendantMatchingXPath("//MethodDeclaration[MethodDeclarator[@Image='" +
32                 method +
33                 "']]"));
34     }
35
36     protected Node parse(File dstFile) throws IOException {
37         assertNotNull(dstFile);
38         logger.debug(FileUtils.readFileToString(dstFile));
39         Parser parser = new Java17Parser(new ParserOptions());
40         return parser.parse(dstFile.toString(), new FileReader(dstFile));
41     }
42
43
44 }