rt/mojo/src/test/java/org/apidesign/bck2brwsr/mojo/ArchetypeVersionTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Mar 2013 22:35:15 +0100
changeset 817 d87558f94d92
child 823 1e9d34a337f2
permissions -rw-r--r--
Making sure the archetype always uses current version of bck2brwsr
     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.mojo;
    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.w3c.dom.Document;
    30 import org.w3c.dom.NodeList;
    31 
    32 /**
    33  *
    34  * @author Jaroslav Tulach <jtulach@netbeans.org>
    35  */
    36 public class ArchetypeVersionTest {
    37     
    38     public ArchetypeVersionTest() {
    39     }
    40 
    41     @Test public void testCompareOwnAndArchtetypeVersion() throws Exception {
    42         final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
    43         URL u = l.getResource("META-INF/maven/org.apidesign.bck2brwsr/mojo/plugin-help.xml");
    44         assertNotNull(u, "Own pom found");
    45         
    46         final XPathFactory fact = XPathFactory.newInstance();
    47         fact.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
    48         
    49         XPathExpression xp = fact.newXPath().compile("plugin/version/text()");
    50         String version = xp.evaluate(new InputSource(u.openStream()));
    51         
    52         assertFalse(version.isEmpty(), "There should be some version string");
    53         
    54         URL r = l.getResource("archetype-resources/pom.xml");
    55         assertNotNull(r, "Archetype pom found");
    56         
    57         XPathExpression xp2 = fact.newXPath().compile(
    58             "//version[../groupId/text() = 'org.apidesign.bck2brwsr']/text()"
    59         );
    60         
    61         Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(r.openStream());
    62         NodeList arch = (NodeList) xp2.evaluate(dom, XPathConstants.NODESET);
    63 
    64         if (arch.getLength() < 3) {
    65             fail("There should be at least three dependencies to bck2brwsr APIs: " + arch.getLength());
    66         }
    67         
    68         for (int i = 0; i < arch.getLength(); i++) {
    69             assertEquals(arch.item(i).getTextContent(), version, i + "th dependency needs to be on latest version of bck2brwsr");
    70         }
    71     }
    72 }