|
| 1 | +/* |
| 2 | + * Copyright (c) 2021, 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 | +import java.awt.color.ICC_Profile; |
| 25 | +import java.io.ByteArrayInputStream; |
| 26 | +import java.io.IOException; |
| 27 | + |
| 28 | +/** |
| 29 | + * @test |
| 30 | + * @bug 8261107 |
| 31 | + * @summary Short and broken streams should be reported as unsupported |
| 32 | + */ |
| 33 | +public final class GetInstanceBrokenStream { |
| 34 | + |
| 35 | + public static void main(String[] args) throws IOException { |
| 36 | + // Empty header |
| 37 | + testHeader(new byte[]{}); |
| 38 | + // Short header |
| 39 | + testHeader(new byte[]{-12, 3, 45}); |
| 40 | + // Broken header |
| 41 | + testHeader(new byte[]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, |
| 42 | + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, |
| 43 | + 31, 32, 33, 34, 35, 0x61, 0x63, 0x73, 0x70}); |
| 44 | + } |
| 45 | + |
| 46 | + private static void testHeader(byte[] data) throws IOException { |
| 47 | + ByteArrayInputStream bais = new ByteArrayInputStream(data); |
| 48 | + try { |
| 49 | + ICC_Profile.getInstance(bais); |
| 50 | + } catch (IllegalArgumentException e) { |
| 51 | + // expected |
| 52 | + } |
| 53 | + } |
| 54 | +} |
7 commit comments
openjdk-notifier[bot] commentedon Feb 4, 2021
Review
Issues
mrserb commentedon Feb 21, 2022
/backport jdk11u-dev
openjdk[bot] commentedon Feb 21, 2022
@mrserb the backport was successfully created on the branch mrserb-backport-06b33a0a in my personal fork of openjdk/jdk11u-dev. To create a pull request with this backport targeting openjdk/jdk11u-dev:master, just click the following link:
➡️ Create pull request
The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:
If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk11u-dev:
mrserb commentedon Feb 22, 2022
/backport jdk15u-dev
openjdk[bot] commentedon Feb 22, 2022
@mrserb the backport was successfully created on the branch mrserb-backport-06b33a0a in my personal fork of openjdk/jdk15u-dev. To create a pull request with this backport targeting openjdk/jdk15u-dev:master, just click the following link:
➡️ Create pull request
The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:
If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk15u-dev:
mrserb commentedon Mar 24, 2022
/backport jdk8u-dev
openjdk[bot] commentedon Mar 24, 2022
@mrserb Could not automatically backport
06b33a0a
to openjdk/jdk8u-dev due to conflicts in the following files:To manually resolve these conflicts run the following commands in your personal fork of openjdk/jdk8u-dev:
Once you have resolved the conflicts as explained above continue with creating a pull request towards the openjdk/jdk8u-dev with the title
Backport 06b33a0ad78d1577711af22020cf5fdf25112523
.