/hg/release/icedtea-web-1.5: Preventing rare class cast exceptio...
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Mon Sep 22 15:13:26 UTC 2014
changeset 249435147a0b in /hg/release/icedtea-web-1.5
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.5?cmd=changeset;node=249435147a0b
author: Jiri Vanek <jvanek at redhat.com>
date: Mon Sep 22 17:13:19 2014 +0200
Preventing rare class cast exception in erroneous detached applets
diffstat:
ChangeLog | 10 ++++++++++
netx/net/sourceforge/jnlp/runtime/AppletEnvironment.java | 9 ++++++---
netx/net/sourceforge/jnlp/splashscreen/SplashUtils.java | 2 +-
tests/netx/unit/net/sourceforge/jnlp/splashscreen/SplashUtilsTest.java | 10 ++++++++++
tests/netx/unit/net/sourceforge/jnlp/util/logging/JavaConsoleTest.java | 2 +-
5 files changed, 28 insertions(+), 5 deletions(-)
diffs (86 lines):
diff -r e66c55de3d22 -r 249435147a0b ChangeLog
--- a/ChangeLog Sun Sep 21 10:43:48 2014 -0400
+++ b/ChangeLog Mon Sep 22 17:13:19 2014 +0200
@@ -1,3 +1,13 @@
+2014-09-22 Jiri Vanek <jvanek at redhat.com>
+
+ Preventing rare class cast exception in erroneous detached applets
+ * netx/net/sourceforge/jnlp/runtime/AppletEnvironment.java: getSplashControler
+ renamed to getSplashController. (getSplashController) added check for
+ SplashController instance. Returning null if not so.
+ * netx/net/sourceforge/jnlp/splashscreen/SplashUtils.java: adapted to renaming
+ * tests/netx/unit/net/sourceforge/jnlp/splashscreen/SplashUtilsTest.java:
+ added (assertNulsAreOkInShow) test to check null values for showError methods
+
2014-09-21 Andrew Azores <aazores at redhat.com>
* netx/javaws.1: Fixed typos, made formatting more consistent, and added
diff -r e66c55de3d22 -r 249435147a0b netx/net/sourceforge/jnlp/runtime/AppletEnvironment.java
--- a/netx/net/sourceforge/jnlp/runtime/AppletEnvironment.java Sun Sep 21 10:43:48 2014 -0400
+++ b/netx/net/sourceforge/jnlp/runtime/AppletEnvironment.java Mon Sep 22 17:13:19 2014 +0200
@@ -138,9 +138,12 @@
* container must be SplashContoler
*
*/
- public SplashController getSplashControler() {
-
- return (SplashController)cont;
+ public SplashController getSplashController() {
+ if (cont instanceof SplashController) {
+ return (SplashController) cont;
+ } else {
+ return null;
+ }
}
/**
diff -r e66c55de3d22 -r 249435147a0b netx/net/sourceforge/jnlp/splashscreen/SplashUtils.java
--- a/netx/net/sourceforge/jnlp/splashscreen/SplashUtils.java Sun Sep 21 10:43:48 2014 -0400
+++ b/netx/net/sourceforge/jnlp/splashscreen/SplashUtils.java Mon Sep 22 17:13:19 2014 +0200
@@ -94,7 +94,7 @@
if (ae == null) {
return;
}
- SplashController p = ae.getSplashControler();
+ SplashController p = ae.getSplashController();
showError(ex, p);
}
diff -r e66c55de3d22 -r 249435147a0b tests/netx/unit/net/sourceforge/jnlp/splashscreen/SplashUtilsTest.java
--- a/tests/netx/unit/net/sourceforge/jnlp/splashscreen/SplashUtilsTest.java Sun Sep 21 10:43:48 2014 -0400
+++ b/tests/netx/unit/net/sourceforge/jnlp/splashscreen/SplashUtilsTest.java Mon Sep 22 17:13:19 2014 +0200
@@ -40,6 +40,8 @@
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
+import net.sourceforge.jnlp.runtime.AppletEnvironment;
+import net.sourceforge.jnlp.runtime.AppletInstance;
import net.sourceforge.jnlp.runtime.JNLPRuntime;
import net.sourceforge.jnlp.splashscreen.impls.*;
import org.junit.Assert;
@@ -251,5 +253,13 @@
field.setAccessible(true);
field.set(null, newValue);
}
+
+ @Test
+ public void assertNulsAreOkInShow() {
+ SplashUtils.showError(null, (AppletEnvironment)null);
+ SplashUtils.showError(null, (AppletInstance)null);
+ SplashUtils.showError(null, (SplashController)null);
+ }
+
}
diff -r e66c55de3d22 -r 249435147a0b tests/netx/unit/net/sourceforge/jnlp/util/logging/JavaConsoleTest.java
--- a/tests/netx/unit/net/sourceforge/jnlp/util/logging/JavaConsoleTest.java Sun Sep 21 10:43:48 2014 -0400
+++ b/tests/netx/unit/net/sourceforge/jnlp/util/logging/JavaConsoleTest.java Mon Sep 22 17:13:19 2014 +0200
@@ -26,7 +26,7 @@
Assert.assertFalse(p3.wasError);
Assert.assertTrue(p1.header.isC);
Assert.assertTrue(p3.header.isC);
- Assert.assertEquals(OutputController.Level.MESSAGE_DEBUG,p1.header.level);
+ Assert.assertEquals(OutputController.Levgl.MESSAGE_DEBUG,p1.header.level);
Assert.assertEquals(OutputController.Level.ERROR_ALL,p3.header.level);
Assert.assertTrue(p1.header.date.toString().contains("Tue Nov 19 09:43:50") && p1.header.date.toString().contains("2013"));
Assert.assertTrue(p3.header.date.toString().contains("Tue Nov 19 09:43:50") && p3.header.date.toString().contains("2013"));
More information about the distro-pkg-dev
mailing list