/* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code 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 * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package javafx.scene.effect; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.Collection; import java.util.List; import com.sun.javafx.FXUnit; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleObjectProperty; import javafx.scene.Group; import javafx.scene.Node; import javafx.scene.Scene; import javafx.scene.shape.Rectangle; import javafx.stage.Stage; import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; import com.sun.javafx.pgstub.StubToolkit; import com.sun.javafx.tk.Toolkit; @RunWith(Parameterized.class) public class EffectInputTest { @Rule public FXUnit fx = new FXUnit(); private String effect1Name = null; private String effect2Name = null; private Node n = null; final static String[] effects = new String[] { "Bloom", "BoxBlur", "ColorAdjust", "DisplacementMap", "DropShadow", "GaussianBlur", "Glow", "InnerShadow", "MotionBlur", "PerspectiveTransform", "Reflection", "SepiaTone", "Shadow" }; @Parameters public static Collection parameters() { List list = new ArrayList(); for (int i = 0; i < effects.length; i++) { for (int j = i; j < effects.length; j++) { list.add(new String[] { effects[i], effects[j] }); } } return list; } public EffectInputTest(final String effect1, final String effect2) { fx.invokeAndWait(() -> { this.effect1Name = effect1; this.effect2Name = effect2; Group root = new Group(); Scene scene = new Scene(root); Stage stage = new Stage(); stage.setScene(scene); stage.show(); n = new Rectangle(); root.getChildren().add(n); }); } private void pulse() { ((StubToolkit) Toolkit.getToolkit()).fireTestPulse(); } private Method getPGInputMethod(String effectName) throws Exception { if (effectName.equals("Shadow")) { effectName = "GeneralShadow"; } final Class pgEffectClass = Class.forName("com.sun.scenario.effect." + effectName); if (effectName.equals("InnerShadow") || effectName.equals("DropShadow") || effectName.equals("DisplacementMap")) { return pgEffectClass.getMethod("getContentInput"); } else { return pgEffectClass.getMethod("getInput"); } } @Test public void testInput() throws Exception { final Class effect1Class = Class.forName("javafx.scene.effect." + effect1Name); final Class effect2Class = Class.forName("javafx.scene.effect." + effect2Name); Effect effect1 = (Effect) effect1Class.newInstance(); Effect effect2 = (Effect) effect2Class.newInstance(); final Method getInput1 = effect1Class.getMethod("getInput"); final Method setInput1 = effect1Class.getMethod("setInput", Effect.class); final Method getInput2 = effect2Class.getMethod("getInput"); final Method setInput2 = effect2Class.getMethod("setInput", Effect.class); final Method pgGetInput1 = getPGInputMethod(effect1Name); final Method pgGetInput2 = getPGInputMethod(effect2Name); n.setEffect(effect1); // try setting second effect as input for first setInput1.invoke(effect1, effect2); assertEquals(effect2, getInput1.invoke(effect1)); pulse(); assertEquals(effect2.impl_getImpl(), pgGetInput1.invoke(effect1.impl_getImpl())); // try resetting input of first effect to null setInput1.invoke(effect1, (java.lang.Object) null); assertEquals((java.lang.Object) null, getInput2.invoke(effect2)); pulse(); assertEquals((java.lang.Object) null, pgGetInput2.invoke(effect2.impl_getImpl())); // try setting first effect as input for second // but first try // e1.setInput(e2) // pulse() // e1.setInput(null) // e2.setInput(e1); // to see whether re-registring of listeners is working properly (no NPEs etc) setInput1.invoke(effect1, effect2); pulse(); n.setEffect(effect2); setInput1.invoke(effect1, (java.lang.Object) null); setInput2.invoke(effect2, effect1); assertEquals(effect1, getInput2.invoke(effect2)); pulse(); assertEquals(effect1.impl_getImpl(), pgGetInput2.invoke(effect2.impl_getImpl())); } @Test public void testCycle() throws Exception { final Class effect1Class = Class.forName("javafx.scene.effect." + effect1Name); final Class effect2Class = Class.forName("javafx.scene.effect." + effect2Name); Effect effect1 = (Effect) effect1Class.newInstance(); Effect effect2 = (Effect) effect2Class.newInstance(); final Method getInput1 = effect1Class.getMethod("getInput"); final Method setInput1 = effect1Class.getMethod("setInput", Effect.class); final Method getInput2 = effect2Class.getMethod("getInput"); final Method setInput2 = effect2Class.getMethod("setInput", Effect.class); // try setting first input as input for itself try { setInput1.invoke(effect1, effect1); fail("IllegalArgument should have been thrown."); } catch (InvocationTargetException e) { assertTrue(e.getTargetException() instanceof IllegalArgumentException); assertEquals(null, getInput1.invoke(effect1)); } // try setting up cycle from 1. and 2. effect try { setInput1.invoke(effect1, effect2); setInput2.invoke(effect2, effect1); fail("IllegalArgument should have been thrown."); } catch (InvocationTargetException e) { assertTrue(e.getTargetException() instanceof IllegalArgumentException); assertEquals(null, getInput2.invoke(effect2)); } } @Test public void testCycleForBoundInput() throws Exception { final Class effect1Class = Class.forName("javafx.scene.effect." + effect1Name); final Class effect2Class = Class.forName("javafx.scene.effect." + effect2Name); Effect effect1 = (Effect) effect1Class.newInstance(); Effect effect2 = (Effect) effect2Class.newInstance(); final Method getInput1 = effect1Class.getMethod("getInput"); final Method setInput2 = effect2Class.getMethod("setInput", Effect.class); ObjectProperty v = new SimpleObjectProperty(); Method m = effect1Class.getMethod("inputProperty", new Class[] {}); ((ObjectProperty)m.invoke(effect1)).bind(v); // try setting first input as input for itself try { v.set(effect1); fail("IllegalArgument should have been thrown."); } catch (IllegalArgumentException e) { assertEquals(null, getInput1.invoke(effect1)); v.set(null); ((ObjectProperty)m.invoke(effect1)).bind(v); } // try setting up cycle from 1. and 2. effect try { setInput2.invoke(effect2, effect1); v.set(effect2); fail("IllegalArgument should have been thrown."); } catch (IllegalArgumentException e) { assertEquals(null, getInput1.invoke(effect1)); } } }