1 /*
   2  * Copyright (c) 2011, 2015, 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.com.sun.javafx.util;
  27 
  28 import test.com.sun.javafx.pgstub.StubToolkit;
  29 import test.com.sun.javafx.pgstub.StubToolkit.ScreenConfiguration;
  30 import com.sun.javafx.tk.Toolkit;
  31 import com.sun.javafx.util.Utils;
  32 import java.util.Arrays;
  33 import java.util.Collection;
  34 import javafx.stage.Screen;
  35 import org.junit.After;
  36 import org.junit.Assert;
  37 import org.junit.Before;
  38 import org.junit.Test;
  39 import org.junit.runner.RunWith;
  40 import org.junit.runners.Parameterized;
  41 import org.junit.runners.Parameterized.Parameters;
  42 
  43 @RunWith(Parameterized.class)
  44 public final class Utils_getScreenForPoint_Test {
  45     private final double x;
  46     private final double y;
  47     private final int expectedScreenIndex;
  48 
  49     @Parameters
  50     public static Collection data() {
  51         return Arrays.asList(
  52                 new Object[] {
  53                     config(100, 100, 0),
  54                     config(2000, 200, 1),
  55                     config(1920, 0, 0),
  56                     config(1920, 200, 1),
  57                     config(1920, 1100, 0),
  58                     config(2020, 50, 0),
  59                     config(2020, 70, 1),
  60                     config(1970, -50, 0),
  61                     config(2170, -50, 1),
  62                     config(2020, 1150, 1),
  63                     config(2020, 1170, 0),
  64                     config(1970, 1250, 0),
  65                     config(2170, 1250, 1)
  66                 });
  67     }
  68 
  69     public Utils_getScreenForPoint_Test(
  70             final double x, final double y, final int expectedScreenIndex) {
  71         this.x = x;
  72         this.y = y;
  73         this.expectedScreenIndex = expectedScreenIndex;
  74     }
  75 
  76     @Before
  77     public void setUp() {
  78         ((StubToolkit) Toolkit.getToolkit()).setScreens(
  79                 new ScreenConfiguration(0, 0, 1920, 1200, 0, 0, 1920, 1172, 96),
  80                 new ScreenConfiguration(1920, 160, 1440, 900,
  81                                         1920, 160, 1440, 900, 96));
  82     }
  83 
  84     @After
  85     public void tearDown() {
  86         ((StubToolkit) Toolkit.getToolkit()).resetScreens();
  87     }
  88 
  89     @Test
  90     public void test() {
  91         final Screen selectedScreen = Utils.getScreenForPoint(x, y);
  92         Assert.assertEquals(expectedScreenIndex,
  93                             Screen.getScreens().indexOf(selectedScreen));
  94     }
  95 
  96     private static Object[] config(final double x, final double y,
  97                                    final int expectedScreenIndex) {
  98         return new Object[] { x, y, expectedScreenIndex };
  99     }
 100 }