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