Skip to content

Commit 27cf2f4

Browse files
Amos ShiTheRealMDoerr
Amos Shi
authored andcommittedMar 14, 2024
8320943: Files/probeContentType/Basic.java fails on latest Windows 11 - content type mismatch
Reviewed-by: mdoerr Backport-of: 87516e29dc5015c4cab2c07c5539ad30f2768667
1 parent 6488725 commit 27cf2f4

File tree

1 file changed

+62
-43
lines changed
  • test/jdk/java/nio/file/Files/probeContentType

1 file changed

+62
-43
lines changed
 

‎test/jdk/java/nio/file/Files/probeContentType/Basic.java

+62-43
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,25 +23,28 @@
2323

2424
/* @test
2525
* @bug 4313887 8129632 8129633 8162624 8146215 8162745 8273655 8274171
26+
* @library /test/lib
27+
* @modules java.base/jdk.internal.util
2628
* @summary Unit test for probeContentType method
2729
* @library ../..
28-
* @build Basic SimpleFileTypeDetector
30+
* @build jdk.test.lib.OSVersion jdk.test.lib.Platform Basic SimpleFileTypeDetector
2931
* @run main/othervm Basic
3032
*/
3133

3234
import java.io.*;
3335
import java.nio.file.*;
36+
import java.util.ArrayList;
3437
import java.util.List;
3538
import java.util.stream.Stream;
3639

40+
import jdk.test.lib.Platform;
41+
import jdk.test.lib.OSVersion;
42+
3743
/**
3844
* Uses Files.probeContentType to probe html file, custom file type, and minimal
3945
* set of file extension to content type mappings.
4046
*/
4147
public class Basic {
42-
private static final boolean IS_UNIX =
43-
! System.getProperty("os.name").startsWith("Windows");
44-
4548
static Path createHtmlFile() throws IOException {
4649
Path file = Files.createTempFile("foo", ".html");
4750
try (OutputStream out = Files.newOutputStream(file)) {
@@ -77,7 +80,7 @@ private static int checkContentTypes(String expected, String actual) {
7780
assert actual != null;
7881

7982
if (!expected.equals(actual)) {
80-
if (IS_UNIX) {
83+
if (!Platform.isWindows()) {
8184
Path userMimeTypes =
8285
Paths.get(System.getProperty("user.home"), ".mime.types");
8386
checkMimeTypesFile(userMimeTypes);
@@ -96,12 +99,12 @@ private static int checkContentTypes(String expected, String actual) {
9699
return 0;
97100
}
98101

99-
static int checkContentTypes(ExType[] exTypes)
102+
static int checkContentTypes(List<ExType> exTypes)
100103
throws IOException {
101104
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();
105108
Path file = Files.createTempFile("foo", "." + extension);
106109
try {
107110
String type = Files.probeContentType(file);
@@ -153,39 +156,55 @@ public static void main(String[] args) throws IOException {
153156
}
154157

155158
// 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+
189208
failures += checkContentTypes(exTypes);
190209

191210
if (failures > 0) {

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Mar 14, 2024

@openjdk-notifier[bot]
Please sign in to comment.