1
1
/*
2
- * Copyright (c) 2008, 2022 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2008, 2023 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
23
23
24
24
/* @test
25
25
* @bug 4313887 8129632 8129633 8162624 8146215 8162745 8273655 8274171
26
+ * @library /test/lib
27
+ * @modules java.base/jdk.internal.util
26
28
* @summary Unit test for probeContentType method
27
29
* @library ../..
28
- * @build Basic SimpleFileTypeDetector
30
+ * @build jdk.test.lib.OSVersion jdk.test.lib.Platform Basic SimpleFileTypeDetector
29
31
* @run main/othervm Basic
30
32
*/
31
33
32
34
import java .io .*;
33
35
import java .nio .file .*;
36
+ import java .util .ArrayList ;
34
37
import java .util .List ;
35
38
import java .util .stream .Stream ;
36
39
40
+ import jdk .test .lib .Platform ;
41
+ import jdk .test .lib .OSVersion ;
42
+
37
43
/**
38
44
* Uses Files.probeContentType to probe html file, custom file type, and minimal
39
45
* set of file extension to content type mappings.
40
46
*/
41
47
public class Basic {
42
- private static final boolean IS_UNIX =
43
- ! System .getProperty ("os.name" ).startsWith ("Windows" );
44
-
45
48
static Path createHtmlFile () throws IOException {
46
49
Path file = Files .createTempFile ("foo" , ".html" );
47
50
try (OutputStream out = Files .newOutputStream (file )) {
@@ -77,7 +80,7 @@ private static int checkContentTypes(String expected, String actual) {
77
80
assert actual != null ;
78
81
79
82
if (!expected .equals (actual )) {
80
- if (IS_UNIX ) {
83
+ if (! Platform . isWindows () ) {
81
84
Path userMimeTypes =
82
85
Paths .get (System .getProperty ("user.home" ), ".mime.types" );
83
86
checkMimeTypesFile (userMimeTypes );
@@ -96,12 +99,12 @@ private static int checkContentTypes(String expected, String actual) {
96
99
return 0 ;
97
100
}
98
101
99
- static int checkContentTypes (ExType [] exTypes )
102
+ static int checkContentTypes (List < ExType > exTypes )
100
103
throws IOException {
101
104
int failures = 0 ;
102
- for (int i = 0 ; i < exTypes . length ; i ++ ) {
103
- String extension = exTypes [ i ] .extension ();
104
- List <String > expectedTypes = exTypes [ i ] .expectedTypes ();
105
+ for (ExType exType : exTypes ) {
106
+ String extension = exType .extension ();
107
+ List <String > expectedTypes = exType .expectedTypes ();
105
108
Path file = Files .createTempFile ("foo" , "." + extension );
106
109
try {
107
110
String type = Files .probeContentType (file );
@@ -153,39 +156,55 @@ public static void main(String[] args) throws IOException {
153
156
}
154
157
155
158
// Verify that certain extensions are mapped to the correct type.
156
- var exTypes = new ExType [] {
157
- new ExType ("adoc" , List .of ("text/plain" )),
158
- new ExType ("bz2" , List .of ("application/bz2" , "application/x-bzip2" , "application/x-bzip" )),
159
- new ExType ("css" , List .of ("text/css" )),
160
- new ExType ("csv" , List .of ("text/csv" )),
161
- new ExType ("doc" , List .of ("application/msword" )),
162
- new ExType ("docx" , List .of ("application/vnd.openxmlformats-officedocument.wordprocessingml.document" )),
163
- new ExType ("gz" , List .of ("application/gzip" , "application/x-gzip" )),
164
- new ExType ("jar" , List .of ("application/java-archive" , "application/x-java-archive" , "application/jar" )),
165
- new ExType ("jpg" , List .of ("image/jpeg" )),
166
- new ExType ("js" , List .of ("text/javascript" , "application/javascript" )),
167
- new ExType ("json" , List .of ("application/json" )),
168
- new ExType ("markdown" , List .of ("text/markdown" )),
169
- new ExType ("md" , List .of ("text/markdown" , "application/x-genesis-rom" )),
170
- new ExType ("mp3" , List .of ("audio/mpeg" )),
171
- new ExType ("mp4" , List .of ("video/mp4" )),
172
- new ExType ("odp" , List .of ("application/vnd.oasis.opendocument.presentation" )),
173
- new ExType ("ods" , List .of ("application/vnd.oasis.opendocument.spreadsheet" )),
174
- new ExType ("odt" , List .of ("application/vnd.oasis.opendocument.text" )),
175
- new ExType ("pdf" , List .of ("application/pdf" )),
176
- new ExType ("php" , List .of ("text/plain" , "text/php" , "application/x-php" )),
177
- new ExType ("png" , List .of ("image/png" )),
178
- new ExType ("ppt" , List .of ("application/vnd.ms-powerpoint" )),
179
- new ExType ("pptx" ,List .of ("application/vnd.openxmlformats-officedocument.presentationml.presentation" )),
180
- new ExType ("py" , List .of ("text/plain" , "text/x-python" , "text/x-python-script" )),
181
- new ExType ("rar" , List .of ("application/rar" , "application/vnd.rar" , "application/x-rar" , "application/x-rar-compressed" )),
182
- new ExType ("rtf" , List .of ("application/rtf" , "text/rtf" )),
183
- new ExType ("webm" , List .of ("video/webm" )),
184
- new ExType ("webp" , List .of ("image/webp" )),
185
- new ExType ("xls" , List .of ("application/vnd.ms-excel" )),
186
- new ExType ("xlsx" , List .of ("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" )),
187
- new ExType ("7z" , List .of ("application/x-7z-compressed" )),
188
- };
159
+ List <ExType > exTypes = new ArrayList <ExType >();
160
+
161
+ // extensions with consistent content type
162
+ exTypes .add (new ExType ("adoc" , List .of ("text/plain" )));
163
+ exTypes .add (new ExType ("css" , List .of ("text/css" )));
164
+ exTypes .add (new ExType ("doc" , List .of ("application/msword" )));
165
+ exTypes .add (new ExType ("docx" , List .of ("application/vnd.openxmlformats-officedocument.wordprocessingml.document" )));
166
+ exTypes .add (new ExType ("gz" , List .of ("application/gzip" , "application/x-gzip" )));
167
+ exTypes .add (new ExType ("jar" , List .of ("application/java-archive" , "application/x-java-archive" , "application/jar" )));
168
+ exTypes .add (new ExType ("jpg" , List .of ("image/jpeg" )));
169
+ exTypes .add (new ExType ("js" , List .of ("text/plain" , "text/javascript" , "application/javascript" )));
170
+ exTypes .add (new ExType ("json" , List .of ("application/json" )));
171
+ exTypes .add (new ExType ("markdown" , List .of ("text/markdown" )));
172
+ exTypes .add (new ExType ("md" , List .of ("text/markdown" , "application/x-genesis-rom" )));
173
+ exTypes .add (new ExType ("mp3" , List .of ("audio/mpeg" )));
174
+ exTypes .add (new ExType ("mp4" , List .of ("video/mp4" )));
175
+ exTypes .add (new ExType ("odp" , List .of ("application/vnd.oasis.opendocument.presentation" )));
176
+ exTypes .add (new ExType ("ods" , List .of ("application/vnd.oasis.opendocument.spreadsheet" )));
177
+ exTypes .add (new ExType ("odt" , List .of ("application/vnd.oasis.opendocument.text" )));
178
+ exTypes .add (new ExType ("pdf" , List .of ("application/pdf" )));
179
+ exTypes .add (new ExType ("php" , List .of ("text/plain" , "text/php" , "application/x-php" )));
180
+ exTypes .add (new ExType ("png" , List .of ("image/png" )));
181
+ exTypes .add (new ExType ("ppt" , List .of ("application/vnd.ms-powerpoint" )));
182
+ exTypes .add (new ExType ("pptx" , List .of ("application/vnd.openxmlformats-officedocument.presentationml.presentation" )));
183
+ exTypes .add (new ExType ("py" , List .of ("text/plain" , "text/x-python" , "text/x-python-script" )));
184
+ exTypes .add (new ExType ("webm" , List .of ("video/webm" )));
185
+ exTypes .add (new ExType ("webp" , List .of ("image/webp" )));
186
+ exTypes .add (new ExType ("xls" , List .of ("application/vnd.ms-excel" )));
187
+ exTypes .add (new ExType ("xlsx" , List .of ("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" )));
188
+ // exTypes.add(new ExType("wasm", List.of("application/wasm"))); Note. "wasm" is added via JDK-8297609 (Java 20) which not exist in current java version yet
189
+
190
+ // extensions with content type that differs on Windows 11+
191
+ if (Platform .isWindows () &&
192
+ (System .getProperty ("os.name" ).endsWith ("11" ) ||
193
+ new OSVersion (10 , 0 ).compareTo (OSVersion .current ()) > 0 )) {
194
+ System .out .println ("Windows 11+ detected: using different types" );
195
+ exTypes .add (new ExType ("bz2" , List .of ("application/bz2" , "application/x-bzip2" , "application/x-bzip" , "application/x-compressed" )));
196
+ exTypes .add (new ExType ("csv" , List .of ("text/csv" , "application/vnd.ms-excel" )));
197
+ exTypes .add (new ExType ("rar" , List .of ("application/rar" , "application/vnd.rar" , "application/x-rar" , "application/x-rar-compressed" , "application/x-compressed" )));
198
+ exTypes .add (new ExType ("rtf" , List .of ("application/rtf" , "text/rtf" , "application/msword" )));
199
+ exTypes .add (new ExType ("7z" , List .of ("application/x-7z-compressed" , "application/x-compressed" )));
200
+ } else {
201
+ exTypes .add (new ExType ("bz2" , List .of ("application/bz2" , "application/x-bzip2" , "application/x-bzip" )));
202
+ exTypes .add (new ExType ("csv" , List .of ("text/csv" )));
203
+ exTypes .add (new ExType ("rar" , List .of ("application/rar" , "application/vnd.rar" , "application/x-rar" , "application/x-rar-compressed" )));
204
+ exTypes .add (new ExType ("rtf" , List .of ("application/rtf" , "text/rtf" )));
205
+ exTypes .add (new ExType ("7z" , List .of ("application/x-7z-compressed" )));
206
+ }
207
+
189
208
failures += checkContentTypes (exTypes );
190
209
191
210
if (failures > 0 ) {
1 commit comments
openjdk-notifier[bot] commentedon Mar 14, 2024
Review
Issues