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 8017487
  26    @summary filechooser in Windows-Libraries folder: columns are mixed up
  27    @author Semyon Sadetsky
  28    @library /lib/testlibrary
  29    @build jdk.testlibrary.OSInfo
  30    @run main bug8017487
  31   */
  32 
  33 
  34 import jdk.testlibrary.OSInfo;
  35 
  36 import sun.awt.shell.ShellFolder;
  37 import sun.awt.shell.ShellFolderColumnInfo;
  38 import javax.swing.filechooser.FileSystemView;
  39 import java.io.File;
  40 
  41 public class bug8017487
  42 {
  43     public static void main(String[] p_args) throws Exception {
  44         if (OSInfo.getOSType() == OSInfo.OSType.WINDOWS &&
  45                 OSInfo.getWindowsVersion().compareTo(OSInfo.WINDOWS_VISTA) > 0 ) {
  46             test();
  47             System.out.println("ok");
  48         }
  49     }
  50 
  51     private static void test() throws Exception {
  52         FileSystemView fsv = FileSystemView.getFileSystemView();
  53         File def = new File(fsv.getDefaultDirectory().getAbsolutePath());
  54         ShellFolderColumnInfo[] defColumns =
  55                 ShellFolder.getShellFolder(def).getFolderColumns();
  56 
  57         File[] files = fsv.getHomeDirectory().listFiles();
  58         for (File file : files) {
  59             if( "Libraries".equals(ShellFolder.getShellFolder( file ).getDisplayName())) {
  60                 File[] libs = file.listFiles();
  61                 for (File lib : libs) {
  62                     ShellFolder libFolder =
  63                             ShellFolder.getShellFolder(lib);
  64                     if( "Library".equals(libFolder.getFolderType() ) ) {
  65                         ShellFolderColumnInfo[] folderColumns =
  66                                 libFolder.getFolderColumns();
  67 
  68                         for (int i = 0; i < defColumns.length; i++) {
  69                             if (!defColumns[i].getTitle()
  70                                     .equals(folderColumns[i].getTitle()))
  71                                 throw new RuntimeException("Columnn " +
  72                                         folderColumns[i].getTitle() +
  73                                         " doesn't match " +
  74                                         defColumns[i].getTitle());
  75                         }
  76                     }
  77                 }
  78             }
  79         }
  80     }
  81 
  82 }