aboutsummaryrefslogtreecommitdiffstats
path: root/tests/netx/unit/net
diff options
context:
space:
mode:
authorOmair Majid <[email protected]>2011-03-31 11:04:37 -0400
committerOmair Majid <[email protected]>2011-03-31 11:04:37 -0400
commite0674c7824b806ef614acb408aca3c3b3efa7c2a (patch)
tree65c9463a06167c863ccb0d1cd6966b90951129e8 /tests/netx/unit/net
parent2731d2f8b006f2f07c38c90b7260b60eb752c89f (diff)
Add unit tests for the parser
This changeset adds support for JUnit4 tests to icedtea-web. It also adds some parser tests that check that the parser works. make check will now run these tests if JUnit is available. 2011-03-31 Omair Majid <[email protected]> Add unit tests for the parser * Makefile.am: Add TESTS_DIR,TESTS_SRCDIR, NETX_UNIT_TEST_DIR, and NETX_UNIT_TEST_SRCDIR, JUNIT_RUNNER_DIR, JUNIT_RUNNER_SRCDIR, and JUNIT_RUNNER_JAR. Conditionally define RHINO_TESTS and UNIT_TESTS. (clean-local): Use RHINO_TESTS and UNIT_TESTS. (clean-tests): Depend on clean-netx-tests. Delete directory. (junit-runner-source-files.txt, $(JUNIT_RUNNER_JAR)), (next-unit-tests-sources-files.txt stamps/netx-unit-tests-compile.stamp), (run-netx-unit-tests, clean-netx-tests, clean-junit-runner) (clean-netx-unit-tests): New targets. * configure.ac: Add new optional dependency on junit. * tests/junit-runner/CommandLine.java, * tests/junit-runner/LessVerboseTextListener.java, * tests/junit-runner/README, * tests/netx/unit/net/sourceforge/jnlp/ParserBasicTests.java, * tests/netx/unit/net/sourceforge/jnlp/ParserCornerCaseTests.java, * tests/netx/unit/net/sourceforge/jnlp/ParserMalformedXmlTests.java, * tests/netx/unit/net/sourceforge/jnlp/basic.jnlp: New files.
Diffstat (limited to 'tests/netx/unit/net')
-rw-r--r--tests/netx/unit/net/sourceforge/jnlp/ParserBasic.java282
-rw-r--r--tests/netx/unit/net/sourceforge/jnlp/ParserCornerCases.java91
-rw-r--r--tests/netx/unit/net/sourceforge/jnlp/ParserMalformedXml.java94
-rw-r--r--tests/netx/unit/net/sourceforge/jnlp/basic.jnlp47
4 files changed, 514 insertions, 0 deletions
diff --git a/tests/netx/unit/net/sourceforge/jnlp/ParserBasic.java b/tests/netx/unit/net/sourceforge/jnlp/ParserBasic.java
new file mode 100644
index 0000000..5fe6764
--- /dev/null
+++ b/tests/netx/unit/net/sourceforge/jnlp/ParserBasic.java
@@ -0,0 +1,282 @@
+/* ParserBasic.java
+ Copyright (C) 2011 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package net.sourceforge.jnlp;
+
+import java.io.ByteArrayInputStream;
+import java.io.InputStream;
+import java.util.List;
+
+import org.junit.After;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+/** Test that the parser works with basic jnlp files */
+public class ParserBasic {
+
+ private static Node root;
+ private static Parser parser;
+
+ @BeforeClass
+ public static void setUp() throws ParseException {
+ ClassLoader cl = ParserBasic.class.getClassLoader();
+ if (cl == null) {
+ cl = ClassLoader.getSystemClassLoader();
+ }
+ InputStream jnlpStream = cl.getResourceAsStream("net/sourceforge/jnlp/basic.jnlp");
+ root = Parser.getRootNode(jnlpStream);
+ parser = new Parser(null, null, root, false, false);
+ }
+
+ @Test
+ public void testJNLP() {
+ Assert.assertEquals("1.0", parser.getSpecVersion().toString());
+ Assert.assertEquals("http://localhost/", parser.getCodeBase().toString());
+ Assert.assertEquals("http://localhost/jnlp.jnlp", parser.getFileLocation().toString());
+ }
+
+ @Test
+ public void testInformation() throws ParseException {
+ List<InformationDesc> infos = parser.getInfo(root);
+ Assert.assertNotNull(infos);
+ Assert.assertEquals(1, infos.size());
+ InformationDesc info = infos.get(0);
+ Assert.assertNotNull(info);
+ }
+
+ @Test
+ public void testInformationTitle() throws ParseException {
+ InformationDesc info = parser.getInfo(root).get(0);
+ Assert.assertEquals("Large JNLP", info.getTitle());
+ }
+
+ @Test
+ public void testInformationVendor() throws ParseException {
+ InformationDesc info = parser.getInfo(root).get(0);
+ Assert.assertEquals("The IcedTea Project", info.getVendor());
+ }
+
+ @Test
+ public void testInformationHomePage() throws ParseException {
+ InformationDesc info = parser.getInfo(root).get(0);
+ Assert.assertEquals("http://homepage/", info.getHomepage().toString());
+ }
+
+ @Test
+ public void testInformationDescription() throws ParseException {
+ InformationDesc info = parser.getInfo(root).get(0);
+ Assert.assertEquals("one-line", info.getDescription("one-line"));
+ Assert.assertEquals("short", info.getDescription("short"));
+ Assert.assertEquals("tooltip", info.getDescription("tooltip"));
+ }
+
+ @Test
+ public void testInformationOfflineAllowed() throws ParseException {
+ InformationDesc info = parser.getInfo(root).get(0);
+ Assert.assertEquals(true, info.isOfflineAllowed());
+
+ }
+
+ @Test
+ public void testInformationIcon() throws ParseException {
+ InformationDesc info = parser.getInfo(root).get(0);
+
+ IconDesc[] icons = info.getIcons(IconDesc.DEFAULT);
+ Assert.assertNotNull(icons);
+ Assert.assertEquals(1, icons.length);
+ IconDesc icon = icons[0];
+ Assert.assertNotNull(icon);
+ Assert.assertEquals("http://localhost/icon.png", icon.getLocation().toString());
+ icons = info.getIcons(IconDesc.SPLASH);
+ Assert.assertNotNull(icons);
+ Assert.assertEquals(1, icons.length);
+ icon = icons[0];
+ Assert.assertNotNull(icon);
+ Assert.assertEquals("http://localhost/splash.png", icon.getLocation().toString());
+
+ }
+
+ @Test
+ public void testInformationShortcut() throws ParseException {
+ InformationDesc info = parser.getInfo(root).get(0);
+
+ ShortcutDesc shortcut = info.getShortcut();
+ Assert.assertNotNull(shortcut);
+ Assert.assertTrue(shortcut.isOnline());
+ Assert.assertTrue(shortcut.onDesktop());
+ MenuDesc menu = shortcut.getMenu();
+ Assert.assertNotNull(menu);
+ Assert.assertEquals("submenu", menu.getSubMenu());
+ }
+
+ @Test
+ public void testInformationAssociation() throws ParseException {
+ InformationDesc info = parser.getInfo(root).get(0);
+ AssociationDesc[] associations = info.getAssociations();
+ Assert.assertNotNull(associations);
+ Assert.assertEquals(1, associations.length);
+ AssociationDesc association = associations[0];
+ Assert.assertNotNull(association);
+ String[] extensions = association.getExtensions();
+ Assert.assertNotNull(extensions);
+ Assert.assertEquals(1, extensions.length);
+ String extension = extensions[0];
+ Assert.assertNotNull(extension);
+ Assert.assertEquals("*.foo", extension);
+ String mimeType = association.getMimeType();
+ Assert.assertNotNull(mimeType);
+ Assert.assertEquals("foo/bar", mimeType);
+ }
+
+ @Test
+ public void testInformationRelatedContent() throws ParseException {
+ InformationDesc info = parser.getInfo(root).get(0);
+
+ RelatedContentDesc[] relatedContents = info.getRelatedContents();
+ Assert.assertNotNull(relatedContents);
+ Assert.assertEquals(1, relatedContents.length);
+ RelatedContentDesc relatedContent = relatedContents[0];
+ Assert.assertNotNull(relatedContent);
+ Assert.assertEquals("related-content title", relatedContent.getTitle());
+ Assert.assertNotNull(relatedContent.getLocation());
+ Assert.assertEquals("http://related-content/", relatedContent.getLocation().toString());
+ Assert.assertEquals("decription of related-content", relatedContent.getDescription());
+ IconDesc relatedIcon = relatedContent.getIcon();
+ Assert.assertNotNull(relatedIcon.getLocation());
+ Assert.assertEquals("http://localhost/related-content-icon.png", relatedIcon.getLocation().toString());
+
+ }
+
+ @Test
+ public void testSecurity() throws ParseException {
+ SecurityDesc security = parser.getSecurity(root);
+ Assert.assertNotNull(security);
+ Assert.assertEquals(SecurityDesc.ALL_PERMISSIONS, security.getSecurityType());
+ }
+
+ @Test
+ public void testResources() throws ParseException {
+ List<ResourcesDesc> allResources = parser.getResources(root, false);
+ Assert.assertNotNull(allResources);
+ Assert.assertEquals(1, allResources.size());
+ ResourcesDesc resources = allResources.get(0);
+ Assert.assertNotNull(resources);
+ }
+
+ @Test
+ public void testResourcesJava() throws ParseException {
+ ResourcesDesc resources = parser.getResources(root, false).get(0);
+ JREDesc[] jres = resources.getJREs();
+ Assert.assertNotNull(jres);
+ Assert.assertEquals(1, jres.length);
+ JREDesc jre = jres[0];
+ Assert.assertNotNull(jre);
+ Assert.assertEquals("1.3+", jre.getVersion().toString());
+ Assert.assertEquals("http://java-url/", jre.getLocation().toString());
+ Assert.assertEquals("64m", jre.getInitialHeapSize());
+ Assert.assertEquals("128m", jre.getMaximumHeapSize());
+ }
+
+ @Test
+ public void testResourcesJar() throws ParseException {
+ ResourcesDesc resources = parser.getResources(root, false).get(0);
+
+ boolean foundNative = false;
+ boolean foundEager = false;
+ boolean foundLazy = false;
+
+ JARDesc[] jars = resources.getJARs();
+ Assert.assertEquals(3, jars.length);
+ for (int i = 0; i < jars.length; i++) {
+ if (jars[i].isNative()) {
+ foundNative = true;
+ Assert.assertEquals("http://localhost/native.jar", jars[i].getLocation().toString());
+ } else if (jars[i].isEager()) {
+ foundEager = true;
+ Assert.assertEquals("http://localhost/eager.jar", jars[i].getLocation().toString());
+ } else if (jars[i].isLazy()) {
+ foundLazy = true;
+ Assert.assertEquals("http://localhost/lazy.jar", jars[i].getLocation().toString());
+ } else {
+ Assert.assertFalse(true);
+ }
+ }
+
+ Assert.assertTrue(foundNative);
+ Assert.assertTrue(foundLazy);
+ Assert.assertTrue(foundEager);
+ }
+
+ @Test
+ public void testResourcesExtensions() throws ParseException {
+ ResourcesDesc resources = parser.getResources(root, false).get(0);
+
+ ExtensionDesc[] extensions = resources.getExtensions();
+ Assert.assertNotNull(extensions);
+ Assert.assertEquals(1, extensions.length);
+ ExtensionDesc extension = extensions[0];
+ Assert.assertNotNull(extension);
+ Assert.assertEquals("http://extension/", extension.getLocation().toString());
+ Assert.assertEquals("extension", extension.getName());
+ Assert.assertEquals("0.1.1", extension.getVersion().toString());
+ }
+
+ @Test
+ public void testResourcesProperty() throws ParseException {
+ ResourcesDesc resources = parser.getResources(root, false).get(0);
+
+ PropertyDesc[] properties = resources.getProperties();
+ Assert.assertNotNull(properties);
+ Assert.assertEquals(1, properties.length);
+
+ PropertyDesc property = properties[0];
+ Assert.assertNotNull(property);
+ Assert.assertEquals("key", property.getKey());
+ Assert.assertEquals("value", property.getValue());
+ }
+
+ @Test
+ public void testApplication() throws ParseException {
+ ApplicationDesc app = (ApplicationDesc) parser.getLauncher(root);
+ Assert.assertNotNull(app);
+ Assert.assertEquals("MainClass", app.getMainClass());
+ Assert.assertArrayEquals(new String[] { "arg1", "arg2" }, app.getArguments());
+ }
+
+}
diff --git a/tests/netx/unit/net/sourceforge/jnlp/ParserCornerCases.java b/tests/netx/unit/net/sourceforge/jnlp/ParserCornerCases.java
new file mode 100644
index 0000000..886faed
--- /dev/null
+++ b/tests/netx/unit/net/sourceforge/jnlp/ParserCornerCases.java
@@ -0,0 +1,91 @@
+/* ParserCornerCases.java
+ Copyright (C) 2011 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package net.sourceforge.jnlp;
+
+import java.io.ByteArrayInputStream;
+
+import org.junit.After;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+/** Test various corner cases of the parser */
+public class ParserCornerCases {
+ @Test
+ public void testUnsupportedSpecNumber() throws ParseException {
+ String malformedJnlp = "<?xml?><jnlp spec='11.11'></jnlp>";
+ Node root = Parser.getRootNode(new ByteArrayInputStream(malformedJnlp.getBytes()));
+ Parser parser = new Parser(null, null, root, false, false);
+ Assert.assertEquals("11.11", parser.getSpecVersion().toString());
+ }
+
+ @Test
+ public void testApplicationAndComponent() throws ParseException {
+ String malformedJnlp = "<?xml?><jnlp><application-desc/><component-desc/></jnlp>";
+ Node root = Parser.getRootNode(new ByteArrayInputStream(malformedJnlp.getBytes()));
+ Parser parser = new Parser(null, null, root, false, false);
+ Assert.assertNotNull(parser.getLauncher(root));
+ }
+
+ @Test
+ public void testCommentInElements() throws ParseException {
+ String malformedJnlp = "<?xml?><jnlp spec='1.0' <!-- comment -->> </jnlp>";
+ Node root = Parser.getRootNode(new ByteArrayInputStream(malformedJnlp.getBytes()));
+ Parser p = new Parser(null, null, root, false, false);
+ Assert.assertEquals("1.0", p.getSpecVersion().toString());
+ }
+
+ @Test
+ public void testCommentInAttributes() throws ParseException {
+ String malformedJnlp = "<?xml?><jnlp spec='<!-- something -->'></jnlp>";
+ Node root = Parser.getRootNode(new ByteArrayInputStream(malformedJnlp.getBytes()));
+ Parser p = new Parser(null, null, root, false, false);
+ Assert.assertEquals("<!-- something -->", p.getSpecVersion().toString());
+ }
+
+ @Test
+ public void testNestedComments() throws ParseException {
+ String malformedJnlp = "<?xml?>" +
+ "<jnlp><information><description>" +
+ "<!-- outer <!-- inner --> -->" +
+ "</description></information></jnlp>";
+ Node root = Parser.getRootNode(new ByteArrayInputStream(malformedJnlp.getBytes()));
+ Parser p = new Parser(null, null, root, false, false);
+ Assert.assertEquals(" -->", p.getInfo(root).get(0).getDescription());
+ }
+}
diff --git a/tests/netx/unit/net/sourceforge/jnlp/ParserMalformedXml.java b/tests/netx/unit/net/sourceforge/jnlp/ParserMalformedXml.java
new file mode 100644
index 0000000..fe377d2
--- /dev/null
+++ b/tests/netx/unit/net/sourceforge/jnlp/ParserMalformedXml.java
@@ -0,0 +1,94 @@
+/* ParserMalformedXml.java
+ Copyright (C) 2011 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package net.sourceforge.jnlp;
+
+import java.io.BufferedReader;
+import java.io.ByteArrayInputStream;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.IOException;
+
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+/** Test how well the parser deals with malformed xml */
+public class ParserMalformedXml {
+
+ private static String originalJnlp = null;
+
+ @BeforeClass
+ public static void setUp() throws IOException {
+ ClassLoader cl = ParserMalformedXml.class.getClassLoader();
+ if (cl == null) {
+ cl = ClassLoader.getSystemClassLoader();
+ }
+ InputStream is = cl.getResourceAsStream("net/sourceforge/jnlp/basic.jnlp");
+ BufferedReader reader = new BufferedReader(new InputStreamReader(is));
+ StringBuilder jnlpBuilder = new StringBuilder();
+ String line;
+ while ( (line = reader.readLine()) != null) {
+ jnlpBuilder.append(line).append("\n");
+ }
+ originalJnlp = jnlpBuilder.toString();
+ }
+
+ @Test
+ public void testMissingXmlDecleration() throws ParseException {
+ String malformedJnlp = originalJnlp.replaceFirst("<\\?xml.*\\?>", "");
+ Parser.getRootNode(new ByteArrayInputStream(malformedJnlp.getBytes()));
+ }
+
+ @Test
+ public void testMalformedArguments() throws ParseException {
+ String malformedJnlp = originalJnlp.replace("arg2</argument", "arg2<argument");
+ Parser.getRootNode(new ByteArrayInputStream(malformedJnlp.getBytes()));
+ }
+
+ @Test
+ public void testTagNotClosed() throws ParseException {
+ String malformedJnlp = originalJnlp.replace("</jnlp>", "<jnlp>");
+ Parser.getRootNode(new ByteArrayInputStream(malformedJnlp.getBytes()));
+ }
+
+ @Test
+ public void testUnquotedAttributes() throws ParseException {
+ String malformedJnlp = originalJnlp.replace("'jnlp.jnlp'", "jnlp.jnlp");
+ Parser.getRootNode(new ByteArrayInputStream(malformedJnlp.getBytes()));
+ }
+
+}
diff --git a/tests/netx/unit/net/sourceforge/jnlp/basic.jnlp b/tests/netx/unit/net/sourceforge/jnlp/basic.jnlp
new file mode 100644
index 0000000..8fabda8
--- /dev/null
+++ b/tests/netx/unit/net/sourceforge/jnlp/basic.jnlp
@@ -0,0 +1,47 @@
+<?xml version='1.0' encoding='utf-8'?>
+<!-- this is a sample jnlp file -->
+<jnlp spec='1.0'
+ codebase='http://localhost/'
+ href='jnlp.jnlp'>
+ <information>
+ <!-- this is the information section -->
+ <title>Large JNLP</title>
+ <vendor>The IcedTea Project</vendor>
+ <homepage href='http://homepage/' />
+ <description kind='one-line'>one-line</description>
+ <description kind='short'>short</description>
+ <description kind='tooltip'>tooltip</description>
+ <icon href='icon.png' />
+ <icon href='splash.png' kind='splash' />
+ <offline-allowed />
+ <shortcut online='true'>
+ <desktop/>
+ <menu submenu='submenu'/>
+ </shortcut>
+ <association extensions='*.foo' mime-type='foo/bar'/>
+ <related-content href='http://related-content/'>
+ <title>related-content <!-- or something -->title</title>
+ <description>decription of related-content</description>
+ <icon href='related-content-icon.png' />
+ </related-content>
+ </information>
+ <security>
+ <all-permissions/>
+ </security>
+ <resources>
+ <!-- the resources section describes things needed -->
+ <java version='1.3+' href='http://java-url/'
+ initial-heap-size='64m'
+ max-heap-size='128m' />
+ <jar href='eager.jar' download='eager'/>
+ <jar href='lazy.jar' download='lazy'/>
+ <nativelib href='native.jar'/>
+ <extension name='extension' version='0.1.1' href='http://extension/'/>
+ <property name='key' value='value'/>
+ </resources>
+ <application-desc main-class='MainClass'>
+ <argument>arg1</argument>
+ <argument>arg2</argument>
+ </application-desc>
+</jnlp>
+