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.ColorAdjust;
  35 import javafx.scene.effect.ColorInput;
  36 import javafx.scene.paint.Color;
  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 ColorInput_properties_Test extends PropertiesTestBase {
  48 
  49     @Parameters
  50     public static Collection data() {
  51         ArrayList array = new ArrayList();
  52 
  53         // simple property tests
  54         final ColorInput testColorInput = new ColorInput();
  55 
  56         array.add(config(testColorInput, "paint", Color.RED, Color.BLUE));
  57         array.add(config(testColorInput, "x", 0.0, 100.0));
  58         array.add(config(testColorInput, "y", 0.0, 100.0));
  59         array.add(config(testColorInput, "width", 50.0, 150.0));
  60         array.add(config(testColorInput, "height", 50.0, 150.0));
  61 
  62         // bounding box calculation tests
  63 
  64         Node testNode = createTestNode();
  65         array.add(config(testNode.getEffect(),
  66                 "width", 0.0, 50.0,
  67                 testNode,
  68                 "boundsInLocal",
  69                 box(0.0, 0.0, 0.0, 50.0),
  70                 box(0.0, 0.0, 50.0, 50.0),
  71                 new BBoxComparator(0.01)));
  72 
  73         testNode = createTestNode();
  74         array.add(config(testNode.getEffect(),
  75                 "height", 0.0, 50.0,
  76                 testNode,
  77                 "boundsInLocal",
  78                 box(0.0, 0.0, 50.0, 0.0),
  79                 box(0.0, 0.0, 50.0, 50.0),
  80                 new BBoxComparator(0.01)));
  81 
  82         testNode = createTestNode();
  83         array.add(config(testNode.getEffect(),
  84                 "x", 0.0, 50.0,
  85                 testNode,
  86                 "boundsInLocal",
  87                 box(0.0, 0.0, 50.0, 50.0),
  88                 box(50.0, 0.0, 50.0, 50.0),
  89                 new BBoxComparator(0.01)));
  90 
  91         testNode = createTestNode();
  92         array.add(config(testNode.getEffect(),
  93                 "y", 0.0, 50.0,
  94                 testNode,
  95                 "boundsInLocal",
  96                 box(0.0, 0.0, 50.0, 50.0),
  97                 box(0.0, 50.0, 50.0, 50.0),
  98                 new BBoxComparator(0.01)));
  99 
 100         testNode = createTestNodeWithChainedEffect();
 101         array.add(config(((ColorAdjust)testNode.getEffect()).getInput(),
 102                 "width", 0.0, 50.0,
 103                 testNode,
 104                 "boundsInLocal",
 105                 box(0.0, 0.0, 0.0, 50.0),
 106                 box(0.0, 0.0, 50.0, 50.0),
 107                 new BBoxComparator(0.01)));
 108 
 109         testNode = createTestNodeWithChainedEffect();
 110         array.add(config(((ColorAdjust)testNode.getEffect()).getInput(),
 111                 "height", 0.0, 50.0,
 112                 testNode,
 113                 "boundsInLocal",
 114                 box(0.0, 0.0, 50.0, 0.0),
 115                 box(0.0, 0.0, 50.0, 50.0),
 116                 new BBoxComparator(0.01)));
 117 
 118         testNode = createTestNodeWithChainedEffect();
 119         array.add(config(((ColorAdjust)testNode.getEffect()).getInput(),
 120                 "x", 0.0, 50.0,
 121                 testNode,
 122                 "boundsInLocal",
 123                 box(0.0, 0.0, 50.0, 50.0),
 124                 box(50.0, 0.0, 50.0, 50.0),
 125                 new BBoxComparator(0.01)));
 126 
 127         testNode = createTestNodeWithChainedEffect();
 128         array.add(config(((ColorAdjust)testNode.getEffect()).getInput(),
 129                 "y", 0.0, 50.0,
 130                 testNode,
 131                 "boundsInLocal",
 132                 box(0.0, 0.0, 50.0, 50.0),
 133                 box(0.0, 50.0, 50.0, 50.0),
 134                 new BBoxComparator(0.01)));
 135 
 136         return array;
 137     }
 138 
 139     public ColorInput_properties_Test(final Configuration configuration) {
 140         super(configuration);
 141     }
 142 
 143     private static Rectangle createTestNode() {
 144         Rectangle r = new Rectangle(100, 100);
 145         ColorInput flood = new ColorInput();
 146         flood.setHeight(50);
 147         flood.setWidth(50);
 148         r.setEffect(flood);
 149         return r;
 150     }
 151 
 152     private static Rectangle createTestNodeWithChainedEffect() {
 153         Rectangle r = new Rectangle(100, 100);
 154         ColorInput flood = new ColorInput();
 155         flood.setHeight(50);
 156         flood.setWidth(50);
 157 
 158         ColorAdjust c = new ColorAdjust();
 159         c.setInput(flood);
 160         r.setEffect(c);
 161         return r;
 162     }
 163 }