changeset 229:caa2fc835dda draft

Added new test testCast (that checks Class.cast() method) into test test suite InvocableClassTest.
author Pavel Tisnovsky <ptisnovs@redhat.com>
date Tue, 10 Sep 2013 13:47:12 +0200
parents ae49fa6139e3
children 9a2fbbac6020
files ChangeLog src/org/RhinoTests/InvocableClassTest.java
diffstat 2 files changed, 196 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Sep 09 14:31:44 2013 +0200
+++ b/ChangeLog	Tue Sep 10 13:47:12 2013 +0200
@@ -1,3 +1,9 @@
+2013-09-10  Pavel Tisnovsky  <ptisnovs@redhat.com>
+
+	* src/org/RhinoTests/InvocableClassTest.java:
+	Added new test testCast (that checks Class.cast() method) into test
+	test suite InvocableClassTest.
+
 2013-09-09  Pavel Tisnovsky  <ptisnovs@redhat.com>
 
 	* src/org/RhinoTests/SimpleBindingsClassTest.java:
--- a/src/org/RhinoTests/InvocableClassTest.java	Mon Sep 09 14:31:44 2013 +0200
+++ b/src/org/RhinoTests/InvocableClassTest.java	Tue Sep 10 13:47:12 2013 +0200
@@ -1230,6 +1230,196 @@
     }
 
     /**
+     * Test for method javax.script.Invocable.getClass().cast()
+     */
+    protected void testCast() {
+        try {
+            this.invocableClass.cast(new Object());
+            throw new AssertionError("Class.cast(new Object()) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new Object().getClass());
+            throw new AssertionError("Class.cast(new Object().getClass()) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new String());
+            throw new AssertionError("Class.cast(new String()) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(Boolean.valueOf(true));
+            throw new AssertionError("Class.cast(Boolean.valueOf(true)) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(Boolean.valueOf(false));
+            throw new AssertionError("Class.cast(Boolean.valueOf(false)) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(Byte.valueOf((byte)42));
+            throw new AssertionError("Class.cast(Byte.valueOf((byte)42)) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(Short.valueOf((short)42));
+            throw new AssertionError("Class.cast(Short.valueOf((short)42)) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(Integer.valueOf(42));
+            throw new AssertionError("Class.cast(Integer.valueOf(42)) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(Long.valueOf(42L));
+            throw new AssertionError("Class.cast(Long.valueOf(42L)) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(Float.valueOf(42f));
+            throw new AssertionError("Class.cast(Float.valueOf(42f)) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(Double.valueOf(42.));
+            throw new AssertionError("Class.cast(Double.valueOf(42.)) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new Throwable());
+            throw new AssertionError("Class.cast(new Throwable()) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new RuntimeException());
+            throw new AssertionError("Class.cast(new RuntimeException()) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new Error());
+            throw new AssertionError("Class.cast(new Error()) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new java.lang.String());
+            throw new AssertionError("Class.cast(new java.lang.String()) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new java.lang.StringBuffer());
+            throw new AssertionError("Class.cast(new java.lang.StringBuffer()) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new java.lang.StringBuilder());
+            throw new AssertionError("Class.cast(new java.lang.StringBuilder()) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(java.awt.Color.black);
+            throw new AssertionError("Class.cast(java.awt.Color.black) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new java.awt.Frame());
+            throw new AssertionError("Class.cast(new java.awt.Frame()) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new java.awt.Frame(new String()));
+            throw new AssertionError("Class.cast(new java.awt.Frame(new String())) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new javax.swing.JLabel());
+            throw new AssertionError("Class.cast(new javax.swing.JLabel()) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new javax.swing.JLabel(new String()));
+            throw new AssertionError("Class.cast(new javax.swing.JLabel(new String())) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+        try {
+            this.invocableClass.cast(new javax.swing.JPanel());
+            throw new AssertionError("Class.cast(new javax.swing.JPanel()) does not throw any exception");
+        }
+        catch (Exception e) {
+            // expected exception
+        }
+
+    }
+
+    /**
      * Test for instanceof operator applied to a class javax.script.Invocable
      */
     @SuppressWarnings("cast")