< prev index next >

tests/system/src/test/java/test/com/sun/javafx/application/HostServicesTest.java

Print this page
rev 10669 : 8187149: Remove HostServices::getWebContext
Reviewed-by:
   1 /*
   2  * Copyright (c) 2016, 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.application;
  27 
  28 import com.sun.javafx.PlatformUtil;
  29 import java.util.concurrent.CountDownLatch;
  30 import java.util.concurrent.TimeUnit;
  31 import javafx.application.Application;
  32 import javafx.application.HostServices;
  33 import javafx.application.Platform;
  34 import javafx.stage.Stage;
  35 import junit.framework.AssertionFailedError;
  36 import org.junit.AfterClass;
  37 import org.junit.BeforeClass;
  38 import org.junit.Test;
  39 
  40 import static org.junit.Assert.*;
  41 import static test.util.Util.TIMEOUT;
  42 
  43 /**
  44  * Unit tests for Platform runLater.
  45  */
  46 public class HostServicesTest {
  47 
  48     // Used to launch the application before running any test


  96     @Test
  97     public void testDocumentBase() {
  98         final HostServices hs = myApp.getHostServices();
  99         assertNotNull(hs);
 100         String dbStr = hs.getDocumentBase();
 101         assertNotNull(dbStr);
 102         String userDir = System.getProperty("user.dir");
 103         userDir = userDir.replace("\\", "/");
 104         System.err.println("userDir = " + userDir);
 105         if (!userDir.startsWith("/")) {
 106             userDir = "/" + userDir;
 107         }
 108         String testDocBase = "file:" + userDir + "/";
 109         assertTrue(dbStr.equals(testDocBase));
 110     }
 111 
 112     @Test
 113     public void testWebContext() {
 114         final HostServices hs = myApp.getHostServices();
 115         assertNotNull(hs);
 116         assertNull(hs.getWebContext());







 117     }
 118 }
   1 /*
   2  * Copyright (c) 2016, 2017, 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.application;
  27 
  28 import java.lang.reflect.Method;
  29 import java.util.concurrent.CountDownLatch;
  30 import java.util.concurrent.TimeUnit;
  31 import javafx.application.Application;
  32 import javafx.application.HostServices;
  33 import javafx.application.Platform;
  34 import javafx.stage.Stage;
  35 import junit.framework.AssertionFailedError;
  36 import org.junit.AfterClass;
  37 import org.junit.BeforeClass;
  38 import org.junit.Test;
  39 
  40 import static org.junit.Assert.*;
  41 import static test.util.Util.TIMEOUT;
  42 
  43 /**
  44  * Unit tests for Platform runLater.
  45  */
  46 public class HostServicesTest {
  47 
  48     // Used to launch the application before running any test


  96     @Test
  97     public void testDocumentBase() {
  98         final HostServices hs = myApp.getHostServices();
  99         assertNotNull(hs);
 100         String dbStr = hs.getDocumentBase();
 101         assertNotNull(dbStr);
 102         String userDir = System.getProperty("user.dir");
 103         userDir = userDir.replace("\\", "/");
 104         System.err.println("userDir = " + userDir);
 105         if (!userDir.startsWith("/")) {
 106             userDir = "/" + userDir;
 107         }
 108         String testDocBase = "file:" + userDir + "/";
 109         assertTrue(dbStr.equals(testDocBase));
 110     }
 111 
 112     @Test
 113     public void testWebContext() {
 114         final HostServices hs = myApp.getHostServices();
 115         assertNotNull(hs);
 116 
 117         boolean nsme = false;
 118         try {
 119             Method m_getWebContext = HostServices.class.getMethod("getWebContext");
 120         } catch (NoSuchMethodException ex) {
 121             nsme = true;
 122         }
 123         assertTrue("Did not get the expected NoSuchMethodException", nsme);
 124     }
 125 }
< prev index next >