< prev index next >

test/jdk/java/awt/FileDialog/8017487/bug8017487.java

Print this page
rev 51542 : 8210039: move OSInfo to top level testlibrary
Reviewed-by: duke


   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 =


   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 /test/lib
  30    @build jdk.test.lib.OSVersion jdk.test.lib.Platform
  31    @run main bug8017487
  32   */
  33 
  34 
  35 import jdk.test.lib.Platform;
  36 import jdk.test.lib.OSVersion;
  37 
  38 import sun.awt.shell.ShellFolder;
  39 import sun.awt.shell.ShellFolderColumnInfo;
  40 import javax.swing.filechooser.FileSystemView;
  41 import java.io.File;
  42 
  43 public class bug8017487
  44 {
  45     public static void main(String[] p_args) throws Exception {
  46         if (Platform.isWindows() &&
  47                 OSVersion.current().compareTo(OSVersion.WINDOWS_VISTA) > 0 ) {
  48             test();
  49             System.out.println("ok");
  50         }
  51     }
  52 
  53     private static void test() throws Exception {
  54         FileSystemView fsv = FileSystemView.getFileSystemView();
  55         File def = new File(fsv.getDefaultDirectory().getAbsolutePath());
  56         ShellFolderColumnInfo[] defColumns =
  57                 ShellFolder.getShellFolder(def).getFolderColumns();
  58 
  59         File[] files = fsv.getHomeDirectory().listFiles();
  60         for (File file : files) {
  61             if( "Libraries".equals(ShellFolder.getShellFolder( file ).getDisplayName())) {
  62                 File[] libs = file.listFiles();
  63                 for (File lib : libs) {
  64                     ShellFolder libFolder =
  65                             ShellFolder.getShellFolder(lib);
  66                     if( "Library".equals(libFolder.getFolderType() ) ) {
  67                         ShellFolderColumnInfo[] folderColumns =
< prev index next >