rt/archetype/src/test/java/org/apidesign/bck2brwsr/archetype/ArchetypeVersionTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 22 Mar 2013 00:02:21 +0100
changeset 870 448bed1f6d5a
parent 823 rt/mojo/src/test/java/org/apidesign/bck2brwsr/mojo/ArchetypeVersionTest.java@1e9d34a337f2
child 1008 ad7b9ae807a1
permissions -rw-r--r--
Separating the archetype into its own module - to give it better name among archetypes
     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.archetype;
    19 
    20 import java.net.URL;
    21 import javax.xml.XMLConstants;
    22 import javax.xml.parsers.DocumentBuilderFactory;
    23 import javax.xml.xpath.XPathConstants;
    24 import javax.xml.xpath.XPathExpression;
    25 import javax.xml.xpath.XPathFactory;
    26 import org.testng.annotations.Test;
    27 import org.xml.sax.InputSource;
    28 import static org.testng.Assert.*;
    29 import org.testng.annotations.BeforeClass;
    30 import org.w3c.dom.Document;
    31 import org.w3c.dom.NodeList;
    32 
    33 /**
    34  *
    35  * @author Jaroslav Tulach <jtulach@netbeans.org>
    36  */
    37 public class ArchetypeVersionTest {
    38     private String version;
    39     
    40     public ArchetypeVersionTest() {
    41     }
    42     
    43     @BeforeClass public void readCurrentVersion() throws Exception {
    44         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
    45         URL u = l.getResource("META-INF/maven/org.apidesign.bck2brwsr/bck2brwsr-archetype-html-sample/pom.xml");
    46         assertNotNull(u, "Own pom found: " + System.getProperty("java.class.path"));
    47 
    48         final XPathFactory fact = XPathFactory.newInstance();
    49         fact.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
    50 
    51         XPathExpression xp = fact.newXPath().compile("project/version/text()");
    52         
    53         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(u.openStream());
    54         version = xp.evaluate(dom);
    55 
    56         assertFalse(version.isEmpty(), "There should be some version string");
    57     }
    58     
    59 
    60     @Test public void testComparePomDepsVersions() throws Exception {
    61         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
    62         URL r = l.getResource("archetype-resources/pom.xml");
    63         assertNotNull(r, "Archetype pom found");
    64         
    65         final XPathFactory fact = XPathFactory.newInstance();
    66         XPathExpression xp2 = fact.newXPath().compile(
    67             "//version[../groupId/text() = 'org.apidesign.bck2brwsr']/text()"
    68         );
    69         
    70         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(r.openStream());
    71         NodeList arch = (NodeList) xp2.evaluate(dom, XPathConstants.NODESET);
    72 
    73         if (arch.getLength() < 3) {
    74             fail("There should be at least three dependencies to bck2brwsr APIs: " + arch.getLength());
    75         }
    76         
    77         for (int i = 0; i < arch.getLength(); i++) {
    78             assertEquals(arch.item(i).getTextContent(), version, i + "th dependency needs to be on latest version of bck2brwsr");
    79         }
    80     }
    81     
    82     @Test public void testNbActions() throws Exception {
    83         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
    84         URL r = l.getResource("archetype-resources/nbactions.xml");
    85         assertNotNull(r, "Archetype nb file found");
    86         
    87         final XPathFactory fact = XPathFactory.newInstance();
    88         XPathExpression xp2 = fact.newXPath().compile(
    89             "//goal/text()"
    90         );
    91         
    92         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(r.openStream());
    93         NodeList goals = (NodeList) xp2.evaluate(dom, XPathConstants.NODESET);
    94         
    95         for (int i = 0; i < goals.getLength(); i++) {
    96             String s = goals.item(i).getTextContent();
    97             if (s.contains("bck2brwsr")) {
    98                 String[] arr = s.split(":");
    99                 assertEquals(arr.length, 4, "Three :");
   100                 assertEquals(arr[2], version, "Proper version is used");
   101             }
   102         }
   103     }
   104 }