/hg/icedtea-web: Reproducers stabilization by removing check for...

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Thu Jan 16 07:22:08 PST 2014


changeset acbfbaefe7aa in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=acbfbaefe7aa
author: Jiri Vanek <jvanek at redhat.com>
date: Thu Jan 16 16:21:55 2014 +0100

	Reproducers stabilization by removing check for not presented general Exception or error.


diffstat:

 ChangeLog                                                                                                                       |  23 ++++++++
 netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java                                                                   |   4 +-
 tests/reproducers/signed/AppletTestSigned/testcases/AppletTestSignedTests.java                                                  |   8 +--
 tests/reproducers/signed/ClasspathManifestTest/testcases/ClasspathManifestTest.java                                             |   1 -
 tests/reproducers/signed/ClipboardContentSigned/testcases/ClipboardContentSignedTests.java                                      |   5 -
 tests/reproducers/signed/InternalClassloaderWithDownloadedResource/testcases/InternalClassloaderWithDownloadedResourceTest.java |   2 -
 tests/reproducers/signed/Spaces can be everywhere signed/testcases/SpacesCanBeEverywhereTestsSigned.java                        |   6 --
 tests/reproducers/signed2/MultipleSignaturesTest/testcases/MultipleSignaturesTestTests.java                                     |   5 -
 tests/reproducers/simple/AppletTest/testcases/AppletTestTests.java                                                              |   5 -
 tests/reproducers/simple/JSToJSet/testcases/JSToJSetTest.java                                                                   |   5 -
 tests/reproducers/simple/LocalisedInformationElement/testcases/LocalisedInformationElementTest.java                             |   3 -
 tests/reproducers/simple/ParametrizedJarUrl/testcases/ParametrizedJarUrlTests.java                                              |  26 ----------
 tests/reproducers/simple/Spaces can be everywhere/testcases/SpacesCanBeEverywhereTests.java                                     |  25 ++-------
 tests/reproducers/simple/deadlocktest/testcases/DeadLockTestTest.java                                                           |   2 -
 tests/reproducers/simple/encodingTestsĚŠČŘŽÝÁÍÉĚÉŘŤÝÚŮÍÓÁŠĎŽŹŇ/testcases/EncodingTestTest.java          |  10 ---
 tests/reproducers/simple/simpletest1/testcases/SimpleTest1Test.java                                                             |   3 +-
 16 files changed, 34 insertions(+), 99 deletions(-)

diffs (truncated from 553 to 500 lines):

diff -r 8983d8c01896 -r acbfbaefe7aa ChangeLog
--- a/ChangeLog	Wed Jan 15 15:11:22 2014 +0100
+++ b/ChangeLog	Thu Jan 16 16:21:55 2014 +0100
@@ -1,3 +1,26 @@
+2014-01-16  Jiri Vanek  <jvanek at redhat.com>
+
+	Reproducers stabilization by removing check for not presented general Exception
+	or error.
+	* netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java: removed
+	legacy debug call
+	* netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java: as in subject,
+	and same in others
+	* tests/reproducers/signed/AppletTestSigned/testcases/AppletTestSignedTests.java:
+	* tests/reproducers/signed/ClasspathManifestTest/testcases/ClasspathManifestTest.java:
+	* tests/reproducers/signed/ClipboardContentSigned/testcases/ClipboardContentSignedTests.java:
+	* tests/reproducers/signed/InternalClassloaderWithDownloadedResource/testcases/InternalClassloaderWithDownloadedResourceTest.java:
+	* tests/reproducers/signed/Spaces can be everywhere signed/testcases/SpacesCanBeEverywhereTestsSigned.java:
+	* tests/reproducers/signed2/MultipleSignaturesTest/testcases/MultipleSignaturesTestTests.java:
+	* tests/reproducers/simple/AppletTest/testcases/AppletTestTests.java:
+	* tests/reproducers/simple/JSToJSet/testcases/JSToJSetTest.java:
+	* tests/reproducers/simple/LocalisedInformationElement/testcases/LocalisedInformationElementTest.java:
+	* tests/reproducers/simple/ParametrizedJarUrl/testcases/ParametrizedJarUrlTests.java:
+	* tests/reproducers/simple/Spaces can be everywhere/testcases/SpacesCanBeEverywhereTests.java:
+	* tests/reproducers/simple/deadlocktest/testcases/DeadLockTestTest.java:
+	* tests/reproducers/simple/encodingTestsĚŠČŘŽÝÁÍÉĚÉŘŤÝÚŮÍÓÁŠĎŽŹŇ/testcases/EncodingTestTest.java:
+	* tests/reproducers/simple/simpletest1/testcases/SimpleTest1Test.java:
+
 2014-01-15  Jiri Vanek  <jvanek at redhat.com>
 
 	Fixed memory leak detector to correctly handle pre_init_messages queue.
diff -r 8983d8c01896 -r acbfbaefe7aa netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java
--- a/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java	Thu Jan 16 16:21:55 2014 +0100
@@ -562,9 +562,7 @@
         try {
             return parsePropertiesFile(file);
         } catch (IOException e) {
-            if (JNLPRuntime.isDebug()){
-                OutputController.getLogger().log(e);
-            }
+            OutputController.getLogger().log(e);
             return null;
         }
     }
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/signed/AppletTestSigned/testcases/AppletTestSignedTests.java
--- a/tests/reproducers/signed/AppletTestSigned/testcases/AppletTestSignedTests.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/signed/AppletTestSigned/testcases/AppletTestSignedTests.java	Thu Jan 16 16:21:55 2014 +0100
@@ -53,20 +53,17 @@
 public class AppletTestSignedTests extends BrowserTest {
 
     private final List<String> l = Collections.unmodifiableList(Arrays.asList(new String[]{"-Xtrustall"}));
-    private static final String ss = "xception";
     private static final String s0 = "AppletTestSigned was started";
     private static final String s1 = "value1";
     private static final String s2 = "value2";
     private static final String s3 = "AppletTestSigned was initialised";
     private static final String s7 = "AppletTestSigned killing himself after 2000 ms of life";
-    private static final ContainsRule exceptionRule = new ContainsRule(ss);
     private static final ContainsRule startedRule = new ContainsRule(s0);
     private static final ContainsRule variable1Rule = new ContainsRule(s1);
     private static final ContainsRule variable2Rule = new ContainsRule(s2);
     private static final ContainsRule initialisedRule = new ContainsRule(s3);
     private static final ContainsRule killedRule = new ContainsRule(s7);
     private static final RulesFolowingClosingListener okListener=new RulesFolowingClosingListener(startedRule, variable1Rule, variable2Rule, initialisedRule, killedRule);
-    private static final RulesFolowingClosingListener errorListener=new RulesFolowingClosingListener(exceptionRule);
 
    // @Test
     public void AppletTestSignedTest() throws Exception {
@@ -81,7 +78,6 @@
         Assert.assertTrue("AppletTestSigned stdout " + startedRule.toPassingString() + " but didn't", startedRule.evaluate(pr.stdout));
         Assert.assertTrue("AppletTestSigned stdout " + variable1Rule.toPassingString() + " but didn't", variable1Rule.evaluate(pr.stdout));
         Assert.assertTrue("AppletTestSigned stdout " + variable2Rule.toPassingString() + " but didn't", variable2Rule.evaluate(pr.stdout));
-        Assert.assertFalse("AppletTestSigned stderr " + exceptionRule.toFailingString() + " but did", exceptionRule.evaluate(pr.stderr));
         Assert.assertTrue("AppletTestSigned stdout " + killedRule.toPassingString() + " but didn't", killedRule.evaluate(pr.stdout));
         if (!javawsApplet) {
             /*this is working correctly in most browser, but not in all. temporarily disabling
@@ -98,7 +94,7 @@
     public void AppletTestSignedFirefoxTestXslowX() throws Exception {
         ServerAccess.PROCESS_TIMEOUT = 30 * 1000;
         try {
-            ProcessResult pr = server.executeBrowser("/AppletTestSigned2.html", okListener, errorListener);
+            ProcessResult pr = server.executeBrowser("/AppletTestSigned2.html", okListener, null);
             evaluateSignedApplet(pr, false);
             //Assert.assertTrue(pr.wasTerminated);
             //Assert.assertEquals((Integer) 0, pr.returnValue); due to destroy is null
@@ -110,7 +106,7 @@
     @Test
     @TestInBrowsers(testIn = {Browsers.all})
     public void AppletTestSignedFirefoxTest() throws Exception {
-        ProcessResult pr = server.executeBrowser("/AppletTestSigned.html", ServerAccess.AutoClose.CLOSE_ON_BOTH);
+        ProcessResult pr = server.executeBrowser("/AppletTestSigned.html", ServerAccess.AutoClose.CLOSE_ON_CORRECT_END);
         evaluateSignedApplet(pr, false);
         //Assert.assertTrue(pr.wasTerminated);
         //Assert.assertEquals((Integer) 0, pr.returnValue); due to destroy is null
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/signed/ClasspathManifestTest/testcases/ClasspathManifestTest.java
--- a/tests/reproducers/signed/ClasspathManifestTest/testcases/ClasspathManifestTest.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/signed/ClasspathManifestTest/testcases/ClasspathManifestTest.java	Thu Jan 16 16:21:55 2014 +0100
@@ -127,6 +127,5 @@
         Assert.assertTrue("ClasspathManifest.BrowserAppletRemoteTest stdout should contain " + s1 + " but didn't", pr.stdout.contains(s1));
         // Should be the only one to search manifest for classpath.
         Assert.assertTrue("ClasspathManifest.BrowserAppletRemoteTest stdout should contain " + s2 + " but didn't", pr.stdout.contains(s2));
-        Assert.assertFalse("ClasspathManifest.BrowserAppletRemoteTest stderr should not contain " + ss + " but did", pr.stderr.contains(ss));
     }
 }
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/signed/ClipboardContentSigned/testcases/ClipboardContentSignedTests.java
--- a/tests/reproducers/signed/ClipboardContentSigned/testcases/ClipboardContentSignedTests.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/signed/ClipboardContentSigned/testcases/ClipboardContentSignedTests.java	Thu Jan 16 16:21:55 2014 +0100
@@ -53,7 +53,6 @@
 @Bug(id = "PR708")
 public class ClipboardContentSignedTests {
 
-    private static final String XCEPTION = "xception";
     private static final String contentC = "COPY#$REPRODUCER";
     private static final String contentP = "PASTE#$REPRODUCER";
     private static final String emptyContent = "empty content";
@@ -77,7 +76,6 @@
         wfsp.run();
         String ss = pasteFromClipboard();
         Assert.assertEquals("Clipboard must contain new value, did not", contentC, ss);
-        //Assert.assertFalse("ClipboardContentSignedCopy stderr should not contain " + XCEPTION + " but did ", wfsp.getErr().contains(XCEPTION));
     }
 
     @Test
@@ -90,7 +88,6 @@
         wfsp.run();
         String ss = pasteFromClipboard();
         Assert.assertEquals("Clipboard must contain new value, did not", contentC, ss);
-        //Assert.assertFalse("ClipboardContentSignedCopy stderr should not contain " + XCEPTION + " but did ", wfsp.getErr().contains(XCEPTION));
 
     }
 
@@ -105,7 +102,6 @@
         Assert.assertEquals("Clipboard must contain new value, did not", contentP, pasteFromClipboard());
         ProcessResult pr = server.executeJavawsHeadless(javawsTrustArg, "/ClipboardContentSignedPaste1.jnlp");
         Assert.assertTrue("ClipboardContentSignedTestPaste stdout should contain " + contentP + " but didn't", pr.stdout.contains(contentP));
-        //Assert.assertFalse("ClipboardContentSignedTestPaste stderr should not contain " + XCEPTION + " but did ", pr.stderr.contains(XCEPTION));
     }
 
     @Test
@@ -121,6 +117,5 @@
         Assert.assertEquals("Clipboard must contain new value, did not", contentP, pasteFromClipboard());
         ProcessResult pr = server.executeJavaws(javawsTrustArg, "/ClipboardContentSignedPaste2.jnlp");
         Assert.assertTrue("ClipboardContentSignedTestPaste stdout should contain " + contentP + " but didn't", pr.stdout.contains(contentP));
-        //Assert.assertFalse("ClipboardContentSignedTestPaste stderr should not contain " + XCEPTION + " but did ", pr.stderr.contains(XCEPTION));
     }
 }
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/signed/InternalClassloaderWithDownloadedResource/testcases/InternalClassloaderWithDownloadedResourceTest.java
--- a/tests/reproducers/signed/InternalClassloaderWithDownloadedResource/testcases/InternalClassloaderWithDownloadedResourceTest.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/signed/InternalClassloaderWithDownloadedResource/testcases/InternalClassloaderWithDownloadedResourceTest.java	Thu Jan 16 16:21:55 2014 +0100
@@ -87,8 +87,6 @@
     private void evaluate(ProcessResult pr) {
         String ss = "Good simple javaws exapmle";
         Assert.assertTrue("Stdout should  contains " + ss + " but didn't", pr.stdout.contains(ss));
-        String s = "xception";
-        Assert.assertFalse("Stderr should  not contains " + s + " but did", pr.stderr.contains(s));
     }
 
     @Test
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/signed/Spaces can be everywhere signed/testcases/SpacesCanBeEverywhereTestsSigned.java
--- a/tests/reproducers/signed/Spaces can be everywhere signed/testcases/SpacesCanBeEverywhereTestsSigned.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/signed/Spaces can be everywhere signed/testcases/SpacesCanBeEverywhereTestsSigned.java	Thu Jan 16 16:21:55 2014 +0100
@@ -85,8 +85,6 @@
         ProcessResult pr =  ServerAccess.executeProcess(commands);
         String s="Signed spaces can be everywhere.jsr was launched correctly";
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
-        String cc = "xception";
-        Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
         Assert.assertFalse("should not be terminated, but was", pr.wasTerminated);
         Assert.assertEquals((Integer) 0, pr.returnValue);
     }
@@ -98,8 +96,6 @@
         ProcessResult pr = server.executeJavaws("/NotOnly%20spaces%20can%20kill%20%C4%9B%C5%A1%C4%8D%C5%99%C5%BE%20too%20signed.jnlp");
         String s="Signed spaces can be everywhere.jsr was launched correctly";
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
-        String cc = "xception";
-        Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
         Assert.assertFalse("should NOT be terminated, but was not", pr.wasTerminated);
     }
 
@@ -111,8 +107,6 @@
         ProcessResult pr = server.executeBrowser("/spaces+applet+Tests+signed.html");
         String s="Signed spaces can be everywhere.jsr was launched correctly";
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
-        String cc = "xception";
-        Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
         Assert.assertTrue("should be terminated, but was not", pr.wasTerminated);
     }
 
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/signed2/MultipleSignaturesTest/testcases/MultipleSignaturesTestTests.java
--- a/tests/reproducers/signed2/MultipleSignaturesTest/testcases/MultipleSignaturesTestTests.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/signed2/MultipleSignaturesTest/testcases/MultipleSignaturesTestTests.java	Thu Jan 16 16:21:55 2014 +0100
@@ -59,8 +59,6 @@
         ProcessResult pr = server.executeJavaws("/MultipleSignaturesTest2.jnlp");
         String s = GSJE;
         Assert.assertTrue("stdout should contains `" + s + "`, but did not", pr.stdout.contains(s));
-        String cc = "xception";
-        Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
     }
 
     @Test
@@ -93,9 +91,6 @@
         // permissions, but still usage of foreign code is allowed.
         String s = GSJE;
         Assert.assertTrue("stdout should contains `" + s + "`, but did not", pr.stdout.contains(s));
-        String cc = "xception";
-        Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
-        Assert.assertEquals((Integer) 0, pr.returnValue);
     }
 
     @Test
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/simple/AppletTest/testcases/AppletTestTests.java
--- a/tests/reproducers/simple/AppletTest/testcases/AppletTestTests.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/simple/AppletTest/testcases/AppletTestTests.java	Thu Jan 16 16:21:55 2014 +0100
@@ -49,7 +49,6 @@
 public class AppletTestTests extends BrowserTest {
 
     private final String s7 = "Aplet killing himself after 2000 ms of life";
-    private final String ss = "xception";
     private final String s2 = "value2";
     private final String s1 = "value1";
     private final String s0 = "applet was started";
@@ -59,9 +58,6 @@
 
         @Override
         protected boolean isAlowedToFinish(String s) {
-            if (s.contains(ss)) {
-                return true;
-            }
             return (s.contains(s0) && s.contains(s1) && s.contains(s2) && s.contains(s3) && s.contains(s7));
         }
     }
@@ -109,7 +105,6 @@
         Assert.assertTrue("AppletTest stdout should contains " + s0 + " bud didn't", pr.stdout.contains(s0));
         Assert.assertTrue("AppletTest stdout should contains " + s1 + " bud didn't", pr.stdout.contains(s1));
         Assert.assertTrue("AppletTest stdout should contains " + s2 + " bud didn't", pr.stdout.contains(s2));
-        Assert.assertFalse("AppletTest stderr should not contains " + ss + " but did", pr.stderr.contains(ss));
         Assert.assertTrue("AppletTest stdout should contains " + s7 + " bud didn't", pr.stdout.contains(s7));
         if (!javawsApplet) {
             /*this is working correctly in most browser, but not in all. temporarily disabling
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/simple/JSToJSet/testcases/JSToJSetTest.java
--- a/tests/reproducers/simple/JSToJSet/testcases/JSToJSetTest.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/simple/JSToJSet/testcases/JSToJSetTest.java	Thu Jan 16 16:21:55 2014 +0100
@@ -54,8 +54,6 @@
     //the JS<->J tests tend to make Opera unusable
     public final boolean doNotRunInOpera = true;
 
-    private final String exceptionStr = "xception";
-    private final String errorStr = "rror";
     private final String initStr = "JSToJSet applet initialized.";
     private final String afterStr = "afterTests";
 
@@ -67,9 +65,6 @@
 
             @Override
             protected boolean isAlowedToFinish(String s) {
-                if (s.contains(exceptionStr) || s.contains(errorStr)) {
-                    return true;
-                }
                 return (s.contains(initStr) && s.contains(afterStr));
             }
         }
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/simple/LocalisedInformationElement/testcases/LocalisedInformationElementTest.java
--- a/tests/reproducers/simple/LocalisedInformationElement/testcases/LocalisedInformationElementTest.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/simple/LocalisedInformationElement/testcases/LocalisedInformationElementTest.java	Thu Jan 16 16:21:55 2014 +0100
@@ -93,9 +93,6 @@
         ProcessResult pr = executeJavaws(verbose, variables, id);
         String s = "LocalisedInformationElement launched";
         Assert.assertTrue(id + " stdout should contains " + s + " bud didn't", pr.stdout.contains(s));
-        //to strict?
-        //String ss = "xception";
-        //Assert.assertFalse(id + " stderr should not contains " + ss + " but did", pr.stderr.contains(ss));
         String locMatch = "(?s).*default locale: \\w{2}.*";
         Assert.assertTrue(id + " stdout should match " + locMatch + " bud didn't", pr.stdout.matches(locMatch));
         return pr;
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/simple/ParametrizedJarUrl/testcases/ParametrizedJarUrlTests.java
--- a/tests/reproducers/simple/ParametrizedJarUrl/testcases/ParametrizedJarUrlTests.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/simple/ParametrizedJarUrl/testcases/ParametrizedJarUrlTests.java	Thu Jan 16 16:21:55 2014 +0100
@@ -149,13 +149,6 @@
         Assert.assertTrue("AppletTestSigned stdout should contain " + s1 + " but didn't", pr.stdout.contains(s1));
         String s2 = "value2";
         Assert.assertTrue("AppletTestSigned stdout should contain " + s2 + " but didn't", pr.stdout.contains(s2));
-//        too strict!
-//        String s4 = "AppletTestSigned was stopped";
-//        Assert.assertFalse("AppletTestSigned stdout shouldn't contains " + s4 + " but did", pr.stdout.contains(s4));
-//        String s5 = "AppletTestSigned will be destroyed";
-//        Assert.assertFalse("AppletTestSigned stdout shouldn't contains " + s5 + " but did", pr.stdout.contains(s5));
-//        String ss = "xception";
-//        Assert.assertFalse("AppletTestSigned stderr should not contains " + ss + " but did", pr.stderr.contains(ss));
         String s7 = "AppletTestSigned killing himself after 2000 ms of life";
         Assert.assertTrue("AppletTestSigned stdout should contain " + s7 + " but didn't", pr.stdout.contains(s7));
     }
@@ -166,8 +159,6 @@
         ProcessResult pr = server.executeJavawsHeadless(l, "/ParametrizedJarUrlSigned1.jnlp");
         String s = "Good simple javaws exapmle";
         Assert.assertTrue("ParametrizedJarUrlSigned1 stdout should contain " + s + " but didn't", pr.stdout.contains(s));
-        String ss = "xception";
-        Assert.assertFalse("ParametrizedJarUrlSigned1 stderr should not contains " + ss + " but did", pr.stderr.contains(ss));
     }
 
     @Test
@@ -175,8 +166,6 @@
         ProcessResult pr = server.executeJavawsHeadless(l, "/ParametrizedJarUrlSigned2.jnlp");
         String s = "Good simple javaws exapmle";
         Assert.assertTrue("ParametrizedJarUrlSigned2 stdout should contain " + s + " but didn't", pr.stdout.contains(s));
-        String ss = "xception";
-        Assert.assertFalse("ParametrizedJarUrlSigned2 stderr should not contains " + ss + " but did", pr.stderr.contains(ss));
     }
 
     @Test
@@ -184,8 +173,6 @@
         ProcessResult pr = server.executeJavawsHeadless(l, "/ParametrizedJarUrlSigned2.jnlp?test=123456");
         String s = "Good simple javaws exapmle";
         Assert.assertTrue("ParametrizedJarUrlSigned2 stdout should contain " + s + " but didn't", pr.stdout.contains(s));
-        String ss = "xception";
-        Assert.assertFalse("ParametrizedJarUrlSigned2 stderr should not contains " + ss + " but did", pr.stderr.contains(ss));
     }
 
     @Test
@@ -193,8 +180,6 @@
         ProcessResult pr = server.executeJavawsHeadless(null, "/ParametrizedJarUrl1.jnlp");
         String s = "Good simple javaws exapmle";
         Assert.assertTrue("ParametrizedJarUrl1 stdout should contain " + s + " but didn't", pr.stdout.contains(s));
-        String ss = "xception";
-        Assert.assertFalse("ParametrizedJarUrl1 stderr should not contains " + ss + " but did", pr.stderr.contains(ss));
     }
 
     @Test
@@ -202,8 +187,6 @@
         ProcessResult pr = server.executeJavawsHeadless(null, "/ParametrizedJarUrl2.jnlp");
         String s = "Good simple javaws exapmle";
         Assert.assertTrue("ParametrizedJarUrl2 stdout should contain " + s + " but didn't", pr.stdout.contains(s));
-        String ss = "xception";
-        Assert.assertFalse("ParametrizedJarUrl2 stderr should not contains " + ss + " but did", pr.stderr.contains(ss));
     }
 
     @Test
@@ -211,8 +194,6 @@
         ProcessResult pr = server.executeJavawsHeadless(null, "/ParametrizedJarUrl2.jnlp?test=123456");
         String s = "Good simple javaws exapmle";
         Assert.assertTrue("ParametrizedJarUrl2 stdout should contain " + s + " but didn't", pr.stdout.contains(s));
-        String ss = "xception";
-        Assert.assertFalse("ParametrizedJarUrl2 stderr should not contains " + ss + " but did", pr.stderr.contains(ss));
 ;
     }
 
@@ -225,13 +206,6 @@
         Assert.assertTrue("AppletTest stdout should contain " + s1 + " but didn't", pr.stdout.contains(s1));
         String s2 = "value2";
         Assert.assertTrue("AppletTest stdout should contain " + s2 + " but didn't", pr.stdout.contains(s2));
-//        This is to strict, each browser is killing as it wish
-//        String s4 = "applet was stopped";
-//        Assert.assert("AppletTest stdout shouldn't contains " + s4 + " but did", pr.stdout.contains(s4));
-//        String s5 = "applet will be destroyed";
-//        Assert.assert("AppletTest stdout shouldn't contains " + s5 + " but did", pr.stdout.contains(s5));
-        String ss = "xception";
-        Assert.assertFalse("AppletTest stderr should not contains " + ss + " but did", pr.stderr.contains(ss));
         String s7 = "Aplet killing himself after 2000 ms of life";
         Assert.assertTrue("AppletTest stdout should contain " + s7 + " but didn't", pr.stdout.contains(s7));
     }
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/simple/Spaces can be everywhere/testcases/SpacesCanBeEverywhereTests.java
--- a/tests/reproducers/simple/Spaces can be everywhere/testcases/SpacesCanBeEverywhereTests.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/simple/Spaces can be everywhere/testcases/SpacesCanBeEverywhereTests.java	Thu Jan 16 16:21:55 2014 +0100
@@ -36,7 +36,9 @@
  */
 
 import java.util.ArrayList;
+import java.util.Arrays;
 import java.util.List;
+import net.sourceforge.jnlp.ContentReaderListener;
 import net.sourceforge.jnlp.ProcessResult;
 import net.sourceforge.jnlp.ServerAccess;
 import net.sourceforge.jnlp.annotations.Bug;
@@ -44,13 +46,14 @@
 import net.sourceforge.jnlp.browsertesting.BrowserTest;
 import net.sourceforge.jnlp.browsertesting.Browsers;
 import net.sourceforge.jnlp.annotations.TestInBrowsers;
+import net.sourceforge.jnlp.closinglisteners.StringBasedClosingListener;
 import org.junit.Assert;
 import org.junit.Test;
 
 @Bug(id={"http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2011-October/016127.html","PR804","PR811"})
 public class SpacesCanBeEverywhereTests extends BrowserTest {
 
-
+public static final String s = "Spaces can be everywhere.jsr was launched correctly";
     @Bug(id="PR811")
     @Test
     @NeedsDisplay
@@ -83,10 +86,7 @@
          * only on ocal files, and probably only from test run - it can be ignored
          */
         ProcessResult pr =  ServerAccess.executeProcess(commands);
-        String s="Spaces can be everywhere.jsr was launched correctly";
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
-        String cc = "xception";
-        Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
         Assert.assertFalse("should not be terminated, but was", pr.wasTerminated);
         Assert.assertEquals((Integer) 0, pr.returnValue);
     }
@@ -96,11 +96,8 @@
     @NeedsDisplay
     public void SpacesCanBeEverywhereRemoteAppletTestsJnlp2() throws Exception {
         ProcessResult pr = server.executeJavaws("/NotOnly%20spaces%20can%20kill%20%C4%9B%C5%A1%C4%8D%C5%99%C5%BE%20too.jnlp");
-        String s="Spaces can be everywhere.jsr was launched correctly";
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
-        String cc = "xception";
-        Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
-        Assert.assertFalse("should NOT be terminated, but was not", pr.wasTerminated);
+        Assert.assertFalse("should NOT be terminated, but was", pr.wasTerminated);
     }
 
     @Bug(id="PR811")
@@ -108,11 +105,8 @@
     @NeedsDisplay
     @TestInBrowsers(testIn = {Browsers.all})
     public void SpacesCanBeEverywhereRemoteAppletTestsHtml2() throws Exception {
-        ProcessResult pr = server.executeBrowser("/spaces+applet+Tests.html");
-        String s="Spaces can be everywhere.jsr was launched correctly";
+        ProcessResult pr = server.executeBrowser("/spaces+applet+Tests.html", Arrays.asList(new ContentReaderListener[] {new StringBasedClosingListener(s)}), null);
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
-        String cc = "xception";
-        Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
         Assert.assertTrue("should be terminated, but was not", pr.wasTerminated);
     }
 
@@ -133,7 +127,6 @@
     @Test
     public void SpacesCanBeEverywhereRemoteTests2() throws Exception {
         ProcessResult pr = server.executeJavawsHeadless(null, "/Spaces%20can%20be%20everywhere2.jnlp");
-        String s="Spaces can be everywhere.jsr was launched correctly";
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
         String cc = "ClassNotFoundException";
         Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
@@ -145,7 +138,6 @@
     @Test
     public void SpacesCanBeEverywhereRemoteTests2_withQuery1() throws Exception {
         ProcessResult pr = server.executeJavawsHeadless(null, "/Spaces%20can%20be%20everywhere2.jnlp?test=10");
-        String s="Spaces can be everywhere.jsr was launched correctly";
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
         String cc = "ClassNotFoundException";
         Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
@@ -158,7 +150,6 @@
     @Test
     public void SpacesCanBeEverywhereRemoteTests2_withQuery2() throws Exception {
         ProcessResult pr = server.executeJavawsHeadless(null, "/Spaces%20can%20be%20everywhere2.jnlp?test%3D10");
-        String s="Spaces can be everywhere.jsr was launched correctly";
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
         String cc = "ClassNotFoundException";
         Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
@@ -170,7 +161,6 @@
     @Test
     public void SpacesCanBeEverywhereRemoteTests3() throws Exception {
         ProcessResult pr = server.executeJavawsHeadless(null, "/SpacesCanBeEverywhere1.jnlp");
-        String s="Spaces can be everywhere.jsr was launched correctly";
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
         String cc = "ClassNotFoundException";
         Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
@@ -203,7 +193,6 @@
         commands.add(ServerAccess.HEADLES_OPTION);
         commands.add("Spaces can be everywhere2.jnlp");
         ProcessResult pr = ServerAccess.executeProcess(commands,server.getDir());
-        String s="Spaces can be everywhere.jsr was launched correctly";
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
         String cc = "ClassNotFoundException";
         Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
@@ -219,7 +208,6 @@
         commands.add(ServerAccess.HEADLES_OPTION);
         commands.add(server.getDir()+"/Spaces can be everywhere2.jnlp");
         ProcessResult pr = ServerAccess.executeProcess(commands);
-        String s="Spaces can be everywhere.jsr was launched correctly";
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
         String cc = "ClassNotFoundException";
         Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
@@ -235,7 +223,6 @@
         commands.add(ServerAccess.HEADLES_OPTION);
         commands.add("SpacesCanBeEverywhere1.jnlp");
         ProcessResult pr = ServerAccess.executeProcess(commands,server.getDir());
-        String s="Spaces can be everywhere.jsr was launched correctly";
         Assert.assertTrue("stdout should contains `"+s+"`, but did not",pr.stdout.contains(s));
         String cc = "ClassNotFoundException";
         Assert.assertFalse("stderr should NOT contains `" + cc + "`, but did", pr.stderr.contains(cc));
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/simple/deadlocktest/testcases/DeadLockTestTest.java
--- a/tests/reproducers/simple/deadlocktest/testcases/DeadLockTestTest.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/simple/deadlocktest/testcases/DeadLockTestTest.java	Thu Jan 16 16:21:55 2014 +0100
@@ -205,8 +205,6 @@
     private void assertDeadlockTestLaunched(ProcessResult pr) {
         String s = "Deadlock test started";
         Assert.assertTrue("Deadlock test should print out " + s + ", but did not", pr.stdout.contains(s));
-        String ss = "xception";
-        Assert.assertFalse("Deadlock test should not stderr " + ss + " but did", pr.stderr.contains(ss));
         //each 3500 seconds deadlock test stdout something
         //timeout is 20s
         //so it should write out FIVE sentences, but is mostly just three or four. Last is nearly always consumed by termination
diff -r 8983d8c01896 -r acbfbaefe7aa tests/reproducers/simple/encodingTestsĚŠČŘŽÝÁÍÉĚÉŘŤÝÚŮÍÓÁŠĎŽŹŇ/testcases/EncodingTestTest.java
--- a/tests/reproducers/simple/encodingTestsĚŠČŘŽÝÁÍÉĚÉŘŤÝÚŮÍÓÁŠĎŽŹŇ/testcases/EncodingTestTest.java	Wed Jan 15 15:11:22 2014 +0100
+++ b/tests/reproducers/simple/encodingTestsĚŠČŘŽÝÁÍÉĚÉŘŤÝÚŮÍÓÁŠĎŽŹŇ/testcases/EncodingTestTest.java	Thu Jan 16 16:21:55 2014 +0100
@@ -195,8 +195,6 @@
         ProcessResult pr = server.executeJavawsHeadless(verboseArg, "/encodingTest1-" + encoding + ".jnlp");
         String s = "Good simple javaws exapmle";
         Assert.assertTrue("encodingTest1 (in " + encoding + ") stdout should contain " + s + " bud didn't", pr.stdout.contains(s));


More information about the distro-pkg-dev mailing list