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