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