ko/archetype-test/src/test/java/org/apidesign/bck2brwsr/ko/archetype/test/ArchetypeVersionTest.java
author Anton Epple <toni.epple@eppleton.de>
Mon, 23 Sep 2013 07:52:41 -0700
branchcanvas
changeset 1297 2960a1d37277
parent 1255 3d8730a21c74
permissions -rw-r--r--
removed logger
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.ko.archetype.test;
    19 
    20 import java.io.IOException;
    21 import java.net.URL;
    22 import javax.xml.XMLConstants;
    23 import javax.xml.parsers.DocumentBuilderFactory;
    24 import javax.xml.parsers.ParserConfigurationException;
    25 import javax.xml.xpath.XPathConstants;
    26 import javax.xml.xpath.XPathExpression;
    27 import javax.xml.xpath.XPathExpressionException;
    28 import javax.xml.xpath.XPathFactory;
    29 import javax.xml.xpath.XPathFactoryConfigurationException;
    30 import org.testng.annotations.Test;
    31 import static org.testng.Assert.*;
    32 import org.testng.annotations.BeforeClass;
    33 import org.w3c.dom.Document;
    34 import org.w3c.dom.NodeList;
    35 import org.xml.sax.SAXException;
    36 
    37 /**
    38  *
    39  * @author Jaroslav Tulach <jtulach@netbeans.org>
    40  */
    41 public class ArchetypeVersionTest {
    42     private String version;
    43     
    44     public ArchetypeVersionTest() {
    45     }
    46     
    47     @BeforeClass public void readCurrentVersion() throws Exception {
    48         version = findCurrentVersion();
    49         assertFalse(version.isEmpty(), "There should be some version string");
    50     }
    51     
    52 
    53     @Test public void testComparePomDepsVersions() throws Exception {
    54         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
    55         URL r = l.getResource("archetype-resources/pom.xml");
    56         assertNotNull(r, "Archetype pom found");
    57         
    58         final XPathFactory fact = XPathFactory.newInstance();
    59         XPathExpression xp2 = fact.newXPath().compile(
    60             "//properties/net.java.html.version/text()"
    61         );
    62         
    63         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(r.openStream());
    64         String arch = (String) xp2.evaluate(dom, XPathConstants.STRING);
    65         
    66         int snapshot = arch.indexOf("-SNAPSHOT");
    67         if (snapshot >= 0) {
    68             arch = arch.substring(0, snapshot);
    69         }
    70 
    71         assertTrue(arch.matches("[0-9\\.]+"), "net.java.html.json version seems valid: " + arch);
    72     }
    73     
    74     @Test public void testCheckLauncher() throws Exception {
    75         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
    76         URL r = l.getResource("archetype-resources/pom.xml");
    77         assertNotNull(r, "Archetype pom found");
    78         
    79         final XPathFactory fact = XPathFactory.newInstance();
    80         XPathExpression xp2 = fact.newXPath().compile(
    81             "//properties/bck2brwsr.launcher.version/text()"
    82         );
    83         
    84         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(r.openStream());
    85         String arch = (String) xp2.evaluate(dom, XPathConstants.STRING);
    86 
    87         assertEquals(arch, version, "launcher dependency is on more recent version");
    88     }
    89     
    90     @Test public void testCheckBck2Brwsr() throws Exception {
    91         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
    92         URL r = l.getResource("archetype-resources/pom.xml");
    93         assertNotNull(r, "Archetype pom found");
    94         
    95         final XPathFactory fact = XPathFactory.newInstance();
    96         XPathExpression xp2 = fact.newXPath().compile(
    97             "//properties/bck2brwsr.version/text()"
    98         );
    99         
   100         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(r.openStream());
   101         String arch = (String) xp2.evaluate(dom, XPathConstants.STRING);
   102         
   103         assertEquals(arch, version, "bck2brwsr dependency is on more recent version");
   104     }
   105     
   106     @Test public void testNbActions() throws Exception {
   107         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
   108         URL r = l.getResource("archetype-resources/nbactions.xml");
   109         assertNotNull(r, "Archetype nb file found");
   110         
   111         final XPathFactory fact = XPathFactory.newInstance();
   112         XPathExpression xp2 = fact.newXPath().compile(
   113             "//goal/text()"
   114         );
   115         
   116         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(r.openStream());
   117         NodeList goals = (NodeList) xp2.evaluate(dom, XPathConstants.NODESET);
   118         
   119         for (int i = 0; i < goals.getLength(); i++) {
   120             String s = goals.item(i).getTextContent();
   121             if (s.contains("apidesign")) {
   122                 assertFalse(s.matches(".*apidesign.*[0-9].*"), "No numbers: " + s);
   123             }
   124         }
   125     }
   126 
   127     static String findCurrentVersion() throws XPathExpressionException, IOException, ParserConfigurationException, SAXException, XPathFactoryConfigurationException {
   128         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
   129         URL u = l.getResource("META-INF/maven/org.apidesign.bck2brwsr/knockout4j-archetype/pom.xml");
   130         assertNotNull(u, "Own pom found: " + System.getProperty("java.class.path"));
   131 
   132         final XPathFactory fact = XPathFactory.newInstance();
   133         fact.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
   134 
   135         XPathExpression xp = fact.newXPath().compile("project/version/text()");
   136         
   137         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(u.openStream());
   138         return xp.evaluate(dom);
   139     }
   140 }