Skip to content

Commit 7c750fd

Browse files
committedMay 17, 2024
8331746: Create a test to verify that the cmm id is not ignored
Reviewed-by: prr, dmarkov, aivanov
1 parent de57d4b commit 7c750fd

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/*
2+
* Copyright Amazon.com Inc. 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+
import java.awt.color.ColorSpace;
25+
import java.awt.color.ICC_Profile;
26+
import java.util.Arrays;
27+
28+
/**
29+
* @test
30+
* @bug 8321489
31+
* @summary tests that the cmm id is not ignored
32+
*/
33+
public final class CustomCMMID {
34+
35+
private static final byte[] JAVA_ID = {
36+
(byte) 'j', (byte) 'a', (byte) 'v', (byte) 'a',
37+
};
38+
39+
private static final int[] CS = {
40+
ColorSpace.CS_CIEXYZ, ColorSpace.CS_GRAY, ColorSpace.CS_LINEAR_RGB,
41+
ColorSpace.CS_PYCC, ColorSpace.CS_sRGB
42+
};
43+
44+
public static void main(String[] args) {
45+
for (int cs : CS) {
46+
ICC_Profile p = createProfile(cs);
47+
validate(p);
48+
}
49+
}
50+
51+
private static ICC_Profile createProfile(int type) {
52+
byte[] data = ICC_Profile.getInstance(type).getData();
53+
System.arraycopy(JAVA_ID, 0, data, ICC_Profile.icHdrCmmId,
54+
JAVA_ID.length);
55+
return ICC_Profile.getInstance(data);
56+
}
57+
58+
private static void validate(ICC_Profile p) {
59+
byte[] header = p.getData(ICC_Profile.icSigHead);
60+
byte[] id = new byte[JAVA_ID.length];
61+
System.arraycopy(header, ICC_Profile.icHdrCmmId, id, 0, JAVA_ID.length);
62+
63+
if (!java.util.Arrays.equals(id, JAVA_ID)) {
64+
System.err.println("Expected: " + Arrays.toString(JAVA_ID));
65+
System.err.println("Actual: " + Arrays.toString(id));
66+
throw new RuntimeException("Wrong cmm id");
67+
}
68+
}
69+
}

0 commit comments

Comments
 (0)
Please sign in to comment.