/hg/rhino-tests: Added four tests into the InvocableClassTest:
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Mar 7 01:17:01 PST 2013
changeset 8560ae27455f in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=8560ae27455f
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Mar 07 10:20:03 2013 +0100
Added four tests into the InvocableClassTest:
testGetDeclaringClass(), testGetEnclosingClass()
testGetEnclosingConstructor() and testGetEnclosingMethod().
diffstat:
ChangeLog | 7 +
src/org/RhinoTests/BindingsTest.java | 184 -----------------------------
src/org/RhinoTests/InvocableClassTest.java | 32 +++++
3 files changed, 39 insertions(+), 184 deletions(-)
diffs (244 lines):
diff -r 1069faa2ed62 -r 8560ae27455f ChangeLog
--- a/ChangeLog Wed Mar 06 10:49:08 2013 +0100
+++ b/ChangeLog Thu Mar 07 10:20:03 2013 +0100
@@ -1,3 +1,10 @@
+2013-03-07 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/RhinoTests/InvocableClassTest.java:
+ Added four tests into the InvocableClassTest:
+ testGetDeclaringClass(), testGetEnclosingClass()
+ testGetEnclosingConstructor() and testGetEnclosingMethod().
+
2013-03-06 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/RhinoTests/SimpleBindingsClassTest.java:
diff -r 1069faa2ed62 -r 8560ae27455f src/org/RhinoTests/BindingsTest.java
--- a/src/org/RhinoTests/BindingsTest.java Wed Mar 06 10:49:08 2013 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,184 +0,0 @@
-/*
- Rhino test framework
-
- Copyright (C) 2011, 2012 Red Hat
-
-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.
-*/
-
-package org.RhinoTests;
-
-import java.util.HashMap;
-import java.util.Map;
-import java.util.TreeMap;
-
-import javax.script.SimpleBindings;
-import javax.script.Bindings;
-
-/**
- * @author Pavel Tisnovsky
- *
- */
-public class BindingsTest extends BaseRhinoTest {
-
- @Override
- protected void setUp(String[] args) {
- // this block could be empty
- return;
- }
-
- @Override
- protected void tearDown() {
- // this block could be empty
- return;
- }
-
- protected void testConstructor1() {
- Bindings bindings = new SimpleBindings();
- assertNotNull(bindings, "new SimpleBindings() failed");
- assertTrue(bindings.isEmpty(), "bindings should be empty");
- assertTrue(bindings.size() == 0, "bindings should be empty");
- }
-
- protected void testConstructor2() {
- Bindings bindings = new SimpleBindings(new HashMap<String, Object>());
- assertNotNull(bindings, "new SimpleBindings() failed");
- assertTrue(bindings.isEmpty(), "bindings should be empty");
- assertTrue(bindings.size() == 0, "bindings should be empty");
- }
-
- protected void testConstructor3() {
- Bindings bindings = new SimpleBindings(new TreeMap<String, Object>());
- assertNotNull(bindings, "new SimpleBindings() failed");
- assertTrue(bindings.isEmpty(), "bindings should be empty");
- assertTrue(bindings.size() == 0, "bindings should be empty");
- }
-
- protected void testConstructor4() {
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("key", "value");
- Bindings bindings = new SimpleBindings(map);
- assertNotNull(bindings, "new SimpleBindings() failed");
- assertTrue(!bindings.isEmpty(), "bindings should not be empty");
- assertTrue(bindings.size() == 1, "bindings should not be empty");
- assertNotNull(bindings.get("key"), "this object should be stored in bindings");
- assertEquals(bindings.get("key"), "value", "wrong value returned");
- }
-
- protected void testConstructor5() {
- Map<String, Object> map = new TreeMap<String, Object>();
- map.put("key", "value");
- Bindings bindings = new SimpleBindings(map);
- assertNotNull(bindings, "new SimpleBindings() failed");
- assertTrue(!bindings.isEmpty(), "bindings should not be empty");
- assertTrue(bindings.size() == 1, "bindings should not be empty");
- assertNotNull(bindings.get("key"), "this object should be stored in bindings");
- assertEquals(bindings.get("key"), "value", "wrong value returned");
- }
-
- protected void testConstructor6() {
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("key", null);
- Bindings bindings = new SimpleBindings(map);
- assertNotNull(bindings, "new SimpleBindings() failed");
- assertTrue(!bindings.isEmpty(), "bindings should not be empty");
- assertTrue(bindings.size() == 1, "bindings should not be empty");
- assertNull(bindings.get("key"), "this object should be stored in bindings");
- }
-
- protected void testConstructor7() {
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("key", null);
- Bindings bindings = new SimpleBindings(map);
- assertNotNull(bindings, "new SimpleBindings() failed");
- assertTrue(!bindings.isEmpty(), "bindings should not be empty");
- assertTrue(bindings.size() == 1, "bindings should not be empty");
- assertNull(bindings.get("key"), "this object should be stored in bindings");
- }
-
- protected void testContainsKey1() {
- Bindings bindings = new SimpleBindings();
- assertFalse(bindings.containsKey("key"), "Bingings.containsKey() failed");
- }
-
- protected void testContainsKey2() {
- Bindings bindings = new SimpleBindings();
- bindings.put("key", "value");
- assertTrue(bindings.containsKey("key"), "Bingings.containsKey() failed");
- }
-
- protected void testContainsKeyNegative1() throws Exception {
- Bindings bindings = new SimpleBindings();
- try {
- bindings.containsKey(null);
- }
- catch (NullPointerException e) {
- return;
- }
- throw new Exception("NPE did not thrown as expected");
- }
-
- protected void testContainsKeyNegative2() throws Exception {
- Bindings bindings = new SimpleBindings();
- try {
- bindings.containsKey("");
- }
- catch (IllegalArgumentException e) {
- return;
- }
- throw new Exception("IllegalArgumentException did not thrown as expected");
- }
-
- protected void testContainsKeyNegative3() throws Exception {
- Bindings bindings = new SimpleBindings();
- try {
- bindings.containsKey(new Integer(42));
- }
- catch (ClassCastException e) {
- return;
- }
- throw new Exception("ClassCastException did not thrown as expected");
- }
-
- /**
- * Entry point to this test case.
- *
- * @param args parameters passed from command line
- */
- public static void main(String[] args) {
- new BindingsTest().doTests(args);
- }
-
-}
diff -r 1069faa2ed62 -r 8560ae27455f src/org/RhinoTests/InvocableClassTest.java
--- a/src/org/RhinoTests/InvocableClassTest.java Wed Mar 06 10:49:08 2013 +0100
+++ b/src/org/RhinoTests/InvocableClassTest.java Thu Mar 07 10:20:03 2013 +0100
@@ -738,6 +738,38 @@
}
/**
+ * Test for method javax.script.Invocable.getClass().getDeclaringClass()
+ */
+ protected void testGetDeclaringClass() {
+ Class<?> cls = this.invocableClass.getDeclaringClass();
+ assertNull(cls, "getDeclaringClass() does not return null");
+ }
+
+ /**
+ * Test for method javax.script.Invocable.getClass().getEnclosingClass()
+ */
+ protected void testGetEnclosingClass() {
+ Class<?> cls = this.invocableClass.getEnclosingClass();
+ assertNull(cls, "getEnclosingClass() does not return null");
+ }
+
+ /**
+ * Test for method javax.script.Invocable.getClass().getEnclosingConstructor()
+ */
+ protected void testGetEnclosingConstructor() {
+ Constructor<?> cons = this.invocableClass.getEnclosingConstructor();
+ assertNull(cons, "getEnclosingConstructor() does not return null");
+ }
+
+ /**
+ * Test for method javax.script.Invocable.getClass().getEnclosingMethod()
+ */
+ protected void testGetEnclosingMethod() {
+ Method m = this.invocableClass.getEnclosingMethod();
+ assertNull(m, "getEnclosingMethod() does not return null");
+ }
+
+ /**
* Test for instanceof operator applied to a class javax.script.Invocable
*/
@SuppressWarnings("cast")
More information about the distro-pkg-dev
mailing list