1 /*
   2  * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package test.javafx.scene.effect;
  27 
  28 import static test.com.sun.javafx.test.TestHelper.box;
  29 
  30 import java.util.ArrayList;
  31 import java.util.Collection;
  32 
  33 import javafx.scene.Node;
  34 import javafx.scene.effect.BoxBlur;
  35 import javafx.scene.effect.Glow;
  36 import javafx.scene.effect.Reflection;
  37 import javafx.scene.shape.Rectangle;
  38 
  39 import org.junit.runner.RunWith;
  40 import org.junit.runners.Parameterized;
  41 import org.junit.runners.Parameterized.Parameters;
  42 
  43 import test.com.sun.javafx.test.BBoxComparator;
  44 import test.com.sun.javafx.test.PropertiesTestBase;
  45 
  46 @RunWith(Parameterized.class)
  47 public final class Reflection_properties_Test extends PropertiesTestBase {
  48 
  49     @Parameters
  50     public static Collection data() {
  51         ArrayList array = new ArrayList();
  52 
  53         // simple property tests
  54         final Reflection testReflection = new Reflection();
  55 
  56         array.add(config(testReflection, "input", null, new BoxBlur()));
  57         array.add(config(testReflection, "topOffset", 0.0, 50.0));
  58         array.add(config(testReflection, "topOpacity", 0.5, 0.0));
  59         array.add(config(testReflection, "bottomOpacity", 1.0, 0.8));
  60         array.add(config(testReflection, "fraction", 0.75, 0.5));
  61 
  62         // bounding box calculation tests
  63 
  64         Node testNode = createTestNode();
  65         array.add(config(testNode.getEffect(),
  66                 "topOffset", 10.0, 20.0,
  67                 testNode,
  68                 "boundsInLocal",
  69                 box(0.0, 0.0, 100.0, 185.0),
  70                 box(0.0, 0.0, 100.0, 195.0),
  71                 new BBoxComparator(0.01)));
  72 
  73         testNode = createTestNode();
  74         array.add(config(testNode.getEffect(),
  75                 "fraction", 0.0, 1.0,
  76                 testNode,
  77                 "boundsInLocal",
  78                 box(0.0, 0.0, 100.0, 100.0),
  79                 box(0.0, 0.0, 100.0, 200.0),
  80                 new BBoxComparator(0.01)));
  81 
  82         testNode = createTestNode();
  83         array.add(config(testNode.getEffect(),
  84                 "input", null, new BoxBlur(),
  85                 testNode,
  86                 "boundsInLocal",
  87                 box(0.0, 0.0, 100.0, 175.0),
  88                 box(-2.0, -2.0, 104.0, 182.0),
  89                 new BBoxComparator(0.01)));
  90 
  91         testNode = createTestNodeWithChainedEffect();
  92         array.add(config(((Glow)testNode.getEffect()).getInput(),
  93                 "topOffset", 10.0, 20.0,
  94                 testNode,
  95                 "boundsInLocal",
  96                 box(0.0, 0.0, 100.0, 185.0),
  97                 box(0.0, 0.0, 100.0, 195.0),
  98                 new BBoxComparator(0.01)));
  99 
 100         testNode = createTestNodeWithChainedEffect();
 101         array.add(config(((Glow)testNode.getEffect()).getInput(),
 102                 "fraction", 0.0, 1.0,
 103                 testNode,
 104                 "boundsInLocal",
 105                 box(0.0, 0.0, 100.0, 100.0),
 106                 box(0.0, 0.0, 100.0, 200.0),
 107                 new BBoxComparator(0.01)));
 108 
 109         testNode = createTestNodeWithChainedEffect();
 110         array.add(config(((Glow)testNode.getEffect()).getInput(),
 111                 "input", null, new BoxBlur(),
 112                 testNode,
 113                 "boundsInLocal",
 114                 box(0.0, 0.0, 100.0, 175.0),
 115                 box(-2.0, -2.0, 104.0, 182.0),
 116                 new BBoxComparator(0.01)));
 117 
 118         return array;
 119     }
 120 
 121     public Reflection_properties_Test(final Configuration configuration) {
 122         super(configuration);
 123     }
 124 
 125     private static Rectangle createTestNode() {
 126         Rectangle r = new Rectangle(100, 100);
 127         r.setEffect(new Reflection());
 128         return r;
 129     }
 130 
 131     private static Rectangle createTestNodeWithChainedEffect() {
 132         Rectangle r = new Rectangle(100, 100);
 133         Glow g = new Glow();
 134         g.setInput(new Reflection());
 135         r.setEffect(g);
 136         return r;
 137     }
 138 }