ko/archetype-test/src/test/java/org/apidesign/bck2brwsr/ko/archetype/test/ArchetypeVersionTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 26 Jun 2013 19:29:54 +0200
branchclassloader
changeset 1228 462dd9238173
parent 1227 ko/archetype-test/src/test/java/org/apidesign/html/archetype/test/ArchetypeVersionTest.java@5a907f38608d
child 1236 b284b21de7a7
permissions -rw-r--r--
Cleaning the version mess a bit
     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         assertEquals(arch, version, "net.java.html.json dependency needs to be on latest version");
    67     }
    68     
    69     @Test public void testCheckLauncher() throws Exception {
    70         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
    71         URL r = l.getResource("archetype-resources/pom.xml");
    72         assertNotNull(r, "Archetype pom found");
    73         
    74         final XPathFactory fact = XPathFactory.newInstance();
    75         XPathExpression xp2 = fact.newXPath().compile(
    76             "//properties/bck2brwsr.launcher.version/text()"
    77         );
    78         
    79         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(r.openStream());
    80         String arch = (String) xp2.evaluate(dom, XPathConstants.STRING);
    81 
    82         
    83         assertTrue(arch.matches("[0-9\\.]+"), "launcher version seems valid: " + arch);
    84     }
    85     
    86     @Test public void testCheckBck2Brwsr() throws Exception {
    87         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
    88         URL r = l.getResource("archetype-resources/pom.xml");
    89         assertNotNull(r, "Archetype pom found");
    90         
    91         final XPathFactory fact = XPathFactory.newInstance();
    92         XPathExpression xp2 = fact.newXPath().compile(
    93             "//properties/bck2brwsr.version/text()"
    94         );
    95         
    96         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(r.openStream());
    97         String arch = (String) xp2.evaluate(dom, XPathConstants.STRING);
    98         
    99         assertTrue(arch.matches("[0-9\\.]+"), "bck2brwsr version seems valid: " + arch);
   100     }
   101     
   102     @Test public void testNbActions() throws Exception {
   103         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
   104         URL r = l.getResource("archetype-resources/nbactions.xml");
   105         assertNotNull(r, "Archetype nb file found");
   106         
   107         final XPathFactory fact = XPathFactory.newInstance();
   108         XPathExpression xp2 = fact.newXPath().compile(
   109             "//goal/text()"
   110         );
   111         
   112         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(r.openStream());
   113         NodeList goals = (NodeList) xp2.evaluate(dom, XPathConstants.NODESET);
   114         
   115         for (int i = 0; i < goals.getLength(); i++) {
   116             String s = goals.item(i).getTextContent();
   117             if (s.contains("apidesign")) {
   118                 assertFalse(s.matches(".*apidesign.*[0-9].*"), "No numbers: " + s);
   119             }
   120         }
   121     }
   122 
   123     static String findCurrentVersion() throws XPathExpressionException, IOException, ParserConfigurationException, SAXException, XPathFactoryConfigurationException {
   124         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
   125         URL u = l.getResource("META-INF/maven/org.apidesign.html/knockout4j-archetype/pom.xml");
   126         assertNotNull(u, "Own pom found: " + System.getProperty("java.class.path"));
   127 
   128         final XPathFactory fact = XPathFactory.newInstance();
   129         fact.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
   130 
   131         XPathExpression xp = fact.newXPath().compile("project/version/text()");
   132         
   133         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(u.openStream());
   134         return xp.evaluate(dom);
   135     }
   136 }