rt/archetype/src/test/java/org/apidesign/bck2brwsr/archetype/ArchetypeVersionTest.java
changeset 870 448bed1f6d5a
parent 823 1e9d34a337f2
child 1008 ad7b9ae807a1
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/archetype/src/test/java/org/apidesign/bck2brwsr/archetype/ArchetypeVersionTest.java	Fri Mar 22 00:02:21 2013 +0100
     1.3 @@ -0,0 +1,104 @@
     1.4 +/**
     1.5 + * Back 2 Browser Bytecode Translator
     1.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     1.7 + *
     1.8 + * This program is free software: you can redistribute it and/or modify
     1.9 + * it under the terms of the GNU General Public License as published by
    1.10 + * the Free Software Foundation, version 2 of the License.
    1.11 + *
    1.12 + * This program is distributed in the hope that it will be useful,
    1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.15 + * GNU General Public License for more details.
    1.16 + *
    1.17 + * You should have received a copy of the GNU General Public License
    1.18 + * along with this program. Look for COPYING file in the top folder.
    1.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    1.20 + */
    1.21 +package org.apidesign.bck2brwsr.archetype;
    1.22 +
    1.23 +import java.net.URL;
    1.24 +import javax.xml.XMLConstants;
    1.25 +import javax.xml.parsers.DocumentBuilderFactory;
    1.26 +import javax.xml.xpath.XPathConstants;
    1.27 +import javax.xml.xpath.XPathExpression;
    1.28 +import javax.xml.xpath.XPathFactory;
    1.29 +import org.testng.annotations.Test;
    1.30 +import org.xml.sax.InputSource;
    1.31 +import static org.testng.Assert.*;
    1.32 +import org.testng.annotations.BeforeClass;
    1.33 +import org.w3c.dom.Document;
    1.34 +import org.w3c.dom.NodeList;
    1.35 +
    1.36 +/**
    1.37 + *
    1.38 + * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.39 + */
    1.40 +public class ArchetypeVersionTest {
    1.41 +    private String version;
    1.42 +    
    1.43 +    public ArchetypeVersionTest() {
    1.44 +    }
    1.45 +    
    1.46 +    @BeforeClass public void readCurrentVersion() throws Exception {
    1.47 +        final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
    1.48 +        URL u = l.getResource("META-INF/maven/org.apidesign.bck2brwsr/bck2brwsr-archetype-html-sample/pom.xml");
    1.49 +        assertNotNull(u, "Own pom found: " + System.getProperty("java.class.path"));
    1.50 +
    1.51 +        final XPathFactory fact = XPathFactory.newInstance();
    1.52 +        fact.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
    1.53 +
    1.54 +        XPathExpression xp = fact.newXPath().compile("project/version/text()");
    1.55 +        
    1.56 +        Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(u.openStream());
    1.57 +        version = xp.evaluate(dom);
    1.58 +
    1.59 +        assertFalse(version.isEmpty(), "There should be some version string");
    1.60 +    }
    1.61 +    
    1.62 +
    1.63 +    @Test public void testComparePomDepsVersions() throws Exception {
    1.64 +        final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
    1.65 +        URL r = l.getResource("archetype-resources/pom.xml");
    1.66 +        assertNotNull(r, "Archetype pom found");
    1.67 +        
    1.68 +        final XPathFactory fact = XPathFactory.newInstance();
    1.69 +        XPathExpression xp2 = fact.newXPath().compile(
    1.70 +            "//version[../groupId/text() = 'org.apidesign.bck2brwsr']/text()"
    1.71 +        );
    1.72 +        
    1.73 +        Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(r.openStream());
    1.74 +        NodeList arch = (NodeList) xp2.evaluate(dom, XPathConstants.NODESET);
    1.75 +
    1.76 +        if (arch.getLength() < 3) {
    1.77 +            fail("There should be at least three dependencies to bck2brwsr APIs: " + arch.getLength());
    1.78 +        }
    1.79 +        
    1.80 +        for (int i = 0; i < arch.getLength(); i++) {
    1.81 +            assertEquals(arch.item(i).getTextContent(), version, i + "th dependency needs to be on latest version of bck2brwsr");
    1.82 +        }
    1.83 +    }
    1.84 +    
    1.85 +    @Test public void testNbActions() throws Exception {
    1.86 +        final ClassLoader l = ArchetypeVersionTest.class.getClassLoader();
    1.87 +        URL r = l.getResource("archetype-resources/nbactions.xml");
    1.88 +        assertNotNull(r, "Archetype nb file found");
    1.89 +        
    1.90 +        final XPathFactory fact = XPathFactory.newInstance();
    1.91 +        XPathExpression xp2 = fact.newXPath().compile(
    1.92 +            "//goal/text()"
    1.93 +        );
    1.94 +        
    1.95 +        Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(r.openStream());
    1.96 +        NodeList goals = (NodeList) xp2.evaluate(dom, XPathConstants.NODESET);
    1.97 +        
    1.98 +        for (int i = 0; i < goals.getLength(); i++) {
    1.99 +            String s = goals.item(i).getTextContent();
   1.100 +            if (s.contains("bck2brwsr")) {
   1.101 +                String[] arr = s.split(":");
   1.102 +                assertEquals(arr.length, 4, "Three :");
   1.103 +                assertEquals(arr[2], version, "Proper version is used");
   1.104 +            }
   1.105 +        }
   1.106 +    }
   1.107 +}