/hg/icedtea-web: added engine for lunching reproducers

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Sun Jun 19 09:52:17 PDT 2011


changeset e54277aefdaf in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=e54277aefdaf
author: Jiri Vanek <jvanek at redhat.com>
date: Sun Jun 19 18:48:22 2011 +0200

	added engine for lunching reproducers


diffstat:

 AUTHORS                                                              |    1 +
 ChangeLog                                                            |   28 +
 Makefile.am                                                          |   83 +-
 tests/jnlp_tests/README                                              |    1 +
 tests/jnlp_tests/simple/deadlocktest/resources/deadlocktest.jnlp     |   53 +
 tests/jnlp_tests/simple/deadlocktest/srcs/DeadlockTest.java          |   51 +
 tests/jnlp_tests/simple/deadlocktest/testcases/DeadLockTestTest.java |   64 +
 tests/jnlp_tests/simple/simpletest1/resources/simpletest1.jnlp       |   53 +
 tests/jnlp_tests/simple/simpletest1/srcs/SimpleTest1.java            |   43 +
 tests/jnlp_tests/simple/simpletest1/testcases/SimpleTest1Test.java   |   66 +
 tests/jnlp_tests/simple/simpletest2/resources/simpletest2.jnlp       |   53 +
 tests/jnlp_tests/simple/simpletest2/srcs/SimpleTest2.java            |   44 +
 tests/jnlp_tests/simple/simpletest2/testcases/SimpleTest2Test.java   |   63 +
 tests/netx/jnlp_testsengine/net/sourceforge/jnlp/ResourcesTest.java  |   84 +
 tests/netx/jnlp_testsengine/net/sourceforge/jnlp/ServerAccess.java   |  884 ++++++++++
 15 files changed, 1569 insertions(+), 2 deletions(-)

diffs (truncated from 1669 to 500 lines):

diff -r 7ae04e8d830a -r e54277aefdaf AUTHORS
--- a/AUTHORS	Thu Jun 16 16:23:26 2011 +0200
+++ b/AUTHORS	Sun Jun 19 18:48:22 2011 +0200
@@ -14,6 +14,7 @@
 Saad Mohammad <smohammad at redhat.com>
 Andrew Su <asu at redhat.com>
 Joshua Sumali <jsumali at redhat.com>
+Jiri Vanek <jvanek at redhat.com>
 Mark Wielaard <mark at klomp.org>
 Man Lung Wong <mwong at redhat.com>
 
diff -r 7ae04e8d830a -r e54277aefdaf ChangeLog
--- a/ChangeLog	Thu Jun 16 16:23:26 2011 +0200
+++ b/ChangeLog	Sun Jun 19 18:48:22 2011 +0200
@@ -1,3 +1,31 @@
+2011-06-17 Jiri Vanek <jvanek at redhat.com>
+
+	* tests/jnlp_tests: directory for reproducers
+	* tests/jnlp_tests/advanced: reproducers which must care about
+	 deploying and compiling thmselves
+	* tests/jnlp_tests/simple: reproducers compiled, jared and deployed
+	automatically 
+	* tests/jnlp_tests/simple/name/srcs|testcases|resources/: sourcefiles,
+	resources and testaces for simple reproducers
+	* tests/jnlp_tests/simple/deadlocktest: test for tracing not-killable
+	javaws
+	* tests/jnlp_tests/simple/simpletest1: tutorial test
+	* tests/jnlp_tests/simple/simpletest2: tutorial test with exception
+	* tests/netx/jnlp_testsengine/net/sourceforge/jnlp/ResourcesTest.java:
+	tests for server basic functionality
+	* tests/netx/jnlp_testsengine/net/sourceforge/jnlp/ServerAccess.java:
+	implementation of server to produce jnlps and resources. Implementation
+	of helpers to run javaws process.
+	Makefile.am: new variables pointing to structure above; 
+	(junit-jnlp-dist-dirs.txt): prepare destination directory structure
+	(stamps/netx-dist-tests-prepare-reproducers.stamp):compile tescascases of simple reproducers
+	(netx-dist-tests-source-files.txt): lookup for server and helping classes
+	(stamps/netx-dist-tests-compile.stamp): compile server and helping classes
+	(stamps/netx-dist-tests-compile-testcases.stamp): compile, jar and deploy all simple testcases and their resources
+	(run-netx-dist-tests): after make install run junit testsuite upon reproducers on virtual server
+	(clean-netx-tests): added dependence on  clean-netx-dist-tests
+	(clean-netx-dist-tests): deleting  of reproducers
+
 2011-06-16 Jiri Vanek <jvanek at redhat.com>
 
 	* tests/report-styles/index.js: fast navigation functions
diff -r 7ae04e8d830a -r e54277aefdaf Makefile.am
--- a/Makefile.am	Thu Jun 16 16:23:26 2011 +0200
+++ b/Makefile.am	Sun Jun 19 18:48:22 2011 +0200
@@ -17,6 +17,12 @@
 JUNIT_RUNNER_DIR=$(TESTS_DIR)/junit-runner
 JUNIT_RUNNER_SRCDIR=$(TESTS_SRCDIR)/junit-runner
 
+JNLP_TESTS_ENGINE_SRCDIR=$(TESTS_SRCDIR)/netx/jnlp_testsengine
+JNLP_TESTS_SRCDIR=$(TESTS_SRCDIR)/jnlp_tests
+JNLP_TESTS_ENGINE_DIR=$(TESTS_DIR)/netx/jnlp_testsengine
+JNLP_TESTS_SERVER_DEPLOYDIR=$(TESTS_DIR)/jnlp_test_server
+JNLP_TESTS_DIR=$(TESTS_DIR)/jnlp_tests
+
 JUNIT_RUNNER_JAR=$(abs_top_builddir)/junit-runner.jar
 
 # Build directories
@@ -449,6 +455,69 @@
 	  @junit-runner-source-files.txt && \
 	$(BOOT_DIR)/bin/jar cf $@  -C $(JUNIT_RUNNER_DIR) .
 
+junit-jnlp-dist-dirs.txt:
+	mkdir -p $(JNLP_TESTS_SERVER_DEPLOYDIR)
+	mkdir -p $(JNLP_TESTS_DIR)
+	mkdir -p $(JNLP_TESTS_ENGINE_DIR)
+	cd $(JNLP_TESTS_SRCDIR)/simple/ ; \
+	find .  -maxdepth 1 -mindepth 1 | sed "s/.\/*//" > $(abs_top_builddir)/$@
+
+stamps/netx-dist-tests-prepare-reproducers.stamp: junit-jnlp-dist-dirs.txt
+	simpleReproducers=(`cat $(abs_top_builddir)/junit-jnlp-dist-dirs.txt `); \
+	for dir in "$${simpleReproducers[@]}" ; do \
+	  mkdir -p $(JNLP_TESTS_DIR)/$$dir ; \
+	  $(BOOT_DIR)/bin/javac -d  $(JNLP_TESTS_DIR)/$$dir/ $(JNLP_TESTS_SRCDIR)/simple/$$dir/srcs/* ; \
+	  d=`pwd` ; \
+	  cd $(JNLP_TESTS_DIR)/$$dir/ ; \
+	    $(BOOT_DIR)/bin/jar cf $(JNLP_TESTS_SERVER_DEPLOYDIR)/$$dir.jar * ; \
+	  cd $$d ; \
+	  cp -R $(JNLP_TESTS_SRCDIR)/simple/$$dir/resources/*  $(JNLP_TESTS_SERVER_DEPLOYDIR)/ ; \
+	done ; \
+	mkdir -p stamps && \
+	touch $@
+
+netx-dist-tests-source-files.txt:
+	find $(JNLP_TESTS_ENGINE_SRCDIR) -name '*.java' | sort > $@
+
+stamps/netx-dist-tests-compile.stamp: stamps/netx.stamp \
+ junit-jnlp-dist-dirs.txt netx-dist-tests-source-files.txt
+	$(BOOT_DIR)/bin/javac $(IT_JAVACFLAGS) \
+	 -d $(JNLP_TESTS_ENGINE_DIR) \
+	 -classpath $(JUNIT_JAR):$(NETX_DIR)/lib/classes.jar \
+	 @netx-dist-tests-source-files.txt && \
+	mkdir -p stamps && \
+	touch $@
+
+stamps/netx-dist-tests-compile-testcases.stamp: stamps/netx.stamp junit-jnlp-dist-dirs.txt\
+ netx-dist-tests-source-files.txt stamps/netx-dist-tests-compile.stamp
+	simpleReproducers=(`cat $(abs_top_builddir)/junit-jnlp-dist-dirs.txt `); \
+	for dir in "$${simpleReproducers[@]}" ; do \
+	  $(BOOT_DIR)/bin/javac $(IT_JAVACFLAGS) \
+	  -d $(JNLP_TESTS_ENGINE_DIR) \
+	  -classpath $(JUNIT_JAR):$(NETX_DIR)/lib/classes.jar:$(JNLP_TESTS_ENGINE_DIR) \
+	  $(JNLP_TESTS_SRCDIR)/simple/$$dir/testcases/* ; \
+	done ; \
+	mkdir -p stamps && \
+	touch $@
+
+run-netx-dist-tests: all-local stamps/netx.stamp junit-jnlp-dist-dirs.txt stamps/netx-dist-tests-prepare-reproducers.stamp \
+ stamps/netx-dist-tests-compile.stamp stamps/netx-dist-tests-compile-testcases.stamp $(JUNIT_RUNNER_JAR)
+	cd $(JNLP_TESTS_ENGINE_DIR) ; \
+	class_names= ; \
+	for test in `find -type f` ; do \
+	  class_name=`echo $$test | sed -e 's|\.class$$||' -e 's|^\./||'` ; \
+	  class_name=`echo $$class_name | sed -e 's|/|.|g' ` ; \
+	  class_names="$$class_names $$class_name" ; \
+	done ; \
+	echo $$class_names ; \
+	CLASSPATH=$(NETX_DIR)/lib/classes.jar:$(JUNIT_JAR):$(JUNIT_RUNNER_JAR):. \
+	  $(BOOT_DIR)/bin/java -Dtest.server.dir=$(JNLP_TESTS_SERVER_DEPLOYDIR) -Djavaws.build.bin=$(DESTDIR)$(bindir)/javaws \
+	 -Xbootclasspath:$(RUNTIME) CommandLine $$class_names \
+	  > stdout.log 2> stderr.log ; \
+	 cat stdout.log ; \
+	 cat stderr.log >&2
+	-xsltproc $(TESTS_SRCDIR)/$(REPORT_STYLES_DIRNAME)/jreport.xsl $(JNLP_TESTS_ENGINE_DIR)/tests-output.xml > $(TESTS_DIR)/index_reproducers.html
+
 netx-unit-tests-source-files.txt:
 	find $(NETX_UNIT_TEST_SRCDIR) -name '*.java' | sort > $@
 
@@ -483,9 +552,9 @@
 	  > stdout.log 2> stderr.log ; \
 	cat stdout.log ; \
 	cat stderr.log >&2
-	-xsltproc $(TESTS_SRCDIR)/$(REPORT_STYLES_DIRNAME)/jreport.xsl $(TESTS_DIR)/netx/unit/tests-output.xml > $(TESTS_DIR)/index_unit.html
+	-xsltproc $(TESTS_SRCDIR)/$(REPORT_STYLES_DIRNAME)/jreport.xsl $(NETX_UNIT_TEST_DIR)/tests-output.xml > $(TESTS_DIR)/index_unit.html
 
-clean-netx-tests: clean-netx-unit-tests clean-junit-runner
+clean-netx-tests: clean-netx-unit-tests clean-junit-runner clean-netx-dist-tests
 	if [ -e $(TESTS_DIR)/netx ]; then \
 	  rmdir $(TESTS_DIR)/netx ; \
 	fi
@@ -504,6 +573,16 @@
 	rm -rf  $(TESTS_DIR)/$(REPORT_STYLES_DIRNAME)/
 	rm -f  $(TESTS_DIR)/index*.html
 
+clean-netx-dist-tests:
+	rm -f netx-dist-tests-source-files.txt
+	rm -rf $(JNLP_TESTS_DIR)
+	rm -rf $(JNLP_TESTS_SERVER_DEPLOYDIR)
+	rm -rf $(JNLP_TESTS_ENGINE_DIR)
+	rm -f stamps/netx-dist-tests-compile.stamp
+	rm -f stamps/netx-dist-tests-prepare-reproducers.stamp
+	rm -f stamps/netx-dist-tests-compile-testcases.stamp
+	rm -f junit-jnlp-dist-dirs.txt
+
 # plugin tests
 
 if ENABLE_PLUGIN
diff -r 7ae04e8d830a -r e54277aefdaf tests/jnlp_tests/README
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/README	Sun Jun 19 18:48:22 2011 +0200
@@ -0,0 +1,1 @@
+Each file in directory simple must follows naming convention and is compiled/jared automatically into server's working directory and content of resources likewise. The name of jnlp is independent, and there can be even more jnlps for each future jar.  Files in advanced directory have to care about themselves, but even those can have some parts inside simple directory, so some parts of them are processed automatically.  There are three reproducers – simpletest1, simpletest2 and deadlocktest, which tests test’s suite itself and serve as examples of behaviour.
diff -r 7ae04e8d830a -r e54277aefdaf tests/jnlp_tests/simple/deadlocktest/resources/deadlocktest.jnlp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/deadlocktest/resources/deadlocktest.jnlp	Sun Jun 19 18:48:22 2011 +0200
@@ -0,0 +1,53 @@
+<!--
+
+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; either version 2, or (at your option)
+any later version.
+
+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.
+
+ -->
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp spec="1.0" href="deadlocktest.jnlp" codebase=".">
+  <information>
+    <title>simpletest1</title>
+    <vendor>NetX</vendor>
+    <homepage href="http://jnlp.sourceforge.net/netx/"/>
+    <description>simpletest1</description>
+    <offline/>
+  </information>
+  <resources>
+    <j2se version="1.4+"/>
+    <jar href="deadlocktest.jar"/>
+  </resources>
+  <application-desc main-class="DeadlockTest">
+  </application-desc>
+</jnlp>
diff -r 7ae04e8d830a -r e54277aefdaf tests/jnlp_tests/simple/deadlocktest/srcs/DeadlockTest.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/deadlocktest/srcs/DeadlockTest.java	Sun Jun 19 18:48:22 2011 +0200
@@ -0,0 +1,51 @@
+/* DeadlockTest.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.
+ */
+
+public class DeadlockTest{
+
+    public static void main(String[] args) throws Exception{
+        long startTime=System.nanoTime()/1000000l;
+while(true){
+long now=System.nanoTime()/1000000l;
+Thread.sleep(10);
+if (now-startTime>30000){
+    System.out.println("This process is hanging more then 30s. Should be killed");
+    System.exit(5);
+}
+}
+    }
+}
diff -r 7ae04e8d830a -r e54277aefdaf tests/jnlp_tests/simple/deadlocktest/testcases/DeadLockTestTest.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/deadlocktest/testcases/DeadLockTestTest.java	Sun Jun 19 18:48:22 2011 +0200
@@ -0,0 +1,64 @@
+/* DeadLockTestTest.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.
+ */
+
+import net.sourceforge.jnlp.ServerAccess;
+import org.junit.Assert;
+
+import org.junit.Test;
+
+public class DeadLockTestTest {
+
+    private static ServerAccess server = new ServerAccess();
+
+  
+
+   @Test
+    public void testDeadLockTestTerminated() throws Exception {
+        System.out.println("connecting deadlocktest request");
+        ServerAccess.ProcessResult pr=server.executeJavawsHeadless(null,"/deadlocktest.jnlp");
+        System.out.println(pr.stdout);
+        System.err.println(pr.stderr);
+        Assert.assertFalse(pr.stdout.contains("This process is hanging more then 30s. Should be killed"));
+//        Assert.assertTrue(pr.stderr.contains("xception"));, exception is thrown by engine,not by application
+        Assert.assertTrue(pr.wasTerminated);
+        Assert.assertEquals(null, pr.returnValue);//killed process have no value
+    }
+
+ 
+
+
+    }
diff -r 7ae04e8d830a -r e54277aefdaf tests/jnlp_tests/simple/simpletest1/resources/simpletest1.jnlp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/simpletest1/resources/simpletest1.jnlp	Sun Jun 19 18:48:22 2011 +0200
@@ -0,0 +1,53 @@
+<!--
+
+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; either version 2, or (at your option)
+any later version.
+
+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.
+
+ -->
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp spec="1.0" href="simpletest1.jnlp" codebase=".">
+  <information>
+    <title>simpletest1</title>
+    <vendor>NetX</vendor>
+    <homepage href="http://jnlp.sourceforge.net/netx/"/>
+    <description>simpletest1</description>
+    <offline/>
+  </information>
+  <resources>
+    <j2se version="1.4+"/>
+    <jar href="simpletest1.jar"/>
+  </resources>
+  <application-desc main-class="SimpleTest1">
+  </application-desc>
+</jnlp>
diff -r 7ae04e8d830a -r e54277aefdaf tests/jnlp_tests/simple/simpletest1/srcs/SimpleTest1.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/simpletest1/srcs/SimpleTest1.java	Sun Jun 19 18:48:22 2011 +0200
@@ -0,0 +1,43 @@
+/* SimpleTest1.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.
+ */
+
+public class SimpleTest1{
+
+    public static void main(String[] args){
+        System.out.println("Good simple javaws exapmle");
+    }
+}
diff -r 7ae04e8d830a -r e54277aefdaf tests/jnlp_tests/simple/simpletest1/testcases/SimpleTest1Test.java
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/jnlp_tests/simple/simpletest1/testcases/SimpleTest1Test.java	Sun Jun 19 18:48:22 2011 +0200
@@ -0,0 +1,66 @@
+/* SimpleTest1Test.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.
+ */
+
+
+import net.sourceforge.jnlp.ServerAccess;
+import org.junit.Assert;
+
+import org.junit.Test;
+
+public class SimpleTest1Test {
+
+    private static ServerAccess server = new ServerAccess();



More information about the distro-pkg-dev mailing list