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  * @build jdk.testlibrary.OSInfo
  30  * @run main bug8064934
  31  */
  32 import jdk.testlibrary.OSInfo;
  33 import java.awt.*;
  34 import java.io.File;
  35 import java.io.IOException;
  36 import java.security.AccessController;
  37 
  38 public class bug8064934 {
  39     private static final String NO_ASSOCIATION_ERROR_MESSAGE = "Error message: No application is associated with" +
  40             " the specified file for this operation.";
  41 
  42     public static void main(String[] args) {
  43         // This test is intended only for Windows
  44         if (AccessController.doPrivileged(OSInfo.getOSTypeAction()) != OSInfo.OSType.WINDOWS) {
  45             System.out.println("The test is for Windows platform only");
  46             return;
  47         }
  48 
  49         // Test whether Desktop is supported of not
  50         if (!Desktop.isDesktopSupported()) {
  51             System.out.println("Desktop is not supported");
  52             return;
  53         }
  54 
  55         Desktop desktop = Desktop.getDesktop();
  56         // Test whether open action is supported or not
  57         if (!desktop.isSupported(Desktop.Action.OPEN)) {
  58             System.out.println("Desktop.Action.OPEN is not supported");
  59             return;
  60         }
  61 
  62         File file = null;
  63         try {
  64             file = File.createTempFile("test", ".foo");
  65             if (!file.exists()) {
  66                 throw new RuntimeException("Can not create temp file");
  67             }
  68             desktop.open(file);
  69         } catch (IOException ioe) {
  70             String errorMessage = ioe.getMessage().trim();
  71             if (errorMessage != null && !errorMessage.endsWith(NO_ASSOCIATION_ERROR_MESSAGE)) {
  72                 throw new RuntimeException("Test FAILED! Wrong Error message: \n" +
  73                         "Actual " + errorMessage.substring(errorMessage.indexOf("Error message:")) + "\n" +
  74                         "Expected " + NO_ASSOCIATION_ERROR_MESSAGE);
  75             }
  76         } finally {
  77             if (file != null) {
  78                 file.delete();
  79             }
  80         }
  81 
  82         System.out.println("Test PASSED!");
  83     }
  84 }