1 /*
   2  * Copyright (c) 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.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 8064934
  26  * @summary Incorrect Exception message from java.awt.Desktop.open()
  27  * @author Dmitry Markov
  28  * @library ../../../../lib/testlibrary
  29  * @modules java.desktop/sun.awt
  30  * @build jdk.testlibrary.OSInfo
  31  * @run main bug8064934
  32  */
  33 import jdk.testlibrary.OSInfo;
  34 import java.awt.*;
  35 import java.io.File;
  36 import java.io.IOException;
  37 import java.security.AccessController;
  38 
  39 public class bug8064934 {
  40     private static final String NO_ASSOCIATION_ERROR_MESSAGE = "Error message: No application is associated with" +
  41             " the specified file for this operation.";
  42 
  43     public static void main(String[] args) {
  44         // This test is intended only for Windows
  45         if (AccessController.doPrivileged(OSInfo.getOSTypeAction()) != OSInfo.OSType.WINDOWS) {
  46             System.out.println("The test is for Windows platform only");
  47             return;
  48         }
  49 
  50         // Test whether Desktop is supported of not
  51         if (!Desktop.isDesktopSupported()) {
  52             System.out.println("Desktop is not supported");
  53             return;
  54         }
  55 
  56         Desktop desktop = Desktop.getDesktop();
  57         // Test whether open action is supported or not
  58         if (!desktop.isSupported(Desktop.Action.OPEN)) {
  59             System.out.println("Desktop.Action.OPEN is not supported");
  60             return;
  61         }
  62 
  63         File file = null;
  64         try {
  65             file = File.createTempFile("test", ".foo");
  66             if (!file.exists()) {
  67                 throw new RuntimeException("Can not create temp file");
  68             }
  69             desktop.open(file);
  70         } catch (IOException ioe) {
  71             String errorMessage = ioe.getMessage().trim();
  72             if (errorMessage != null && !errorMessage.endsWith(NO_ASSOCIATION_ERROR_MESSAGE)) {
  73                 throw new RuntimeException("Test FAILED! Wrong Error message: \n" +
  74                         "Actual " + errorMessage.substring(errorMessage.indexOf("Error message:")) + "\n" +
  75                         "Expected " + NO_ASSOCIATION_ERROR_MESSAGE);
  76             }
  77         } finally {
  78             if (file != null) {
  79                 file.delete();
  80             }
  81         }
  82 
  83         System.out.println("Test PASSED!");
  84     }
  85 }