|
| 1 | +/* |
| 2 | + * Copyright (c) 2022, 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 | +/* |
| 25 | + * @test |
| 26 | + * @bug 8278086 |
| 27 | + * @summary Tests that writing invalid bits per pixel image in BMP |
| 28 | + throws IOException |
| 29 | + */ |
| 30 | + |
| 31 | +import java.awt.image.BufferedImage; |
| 32 | +import java.awt.image.IndexColorModel; |
| 33 | +import java.io.File; |
| 34 | +import java.io.IOException; |
| 35 | +import javax.imageio.ImageIO; |
| 36 | + |
| 37 | +public class BMPBitsPerPixelTest { |
| 38 | + |
| 39 | + public static void main(String[] args) { |
| 40 | + test(1, false); |
| 41 | + test(2, true); |
| 42 | + test(3, true); |
| 43 | + test(4, false); |
| 44 | + test(5, true); |
| 45 | + test(6, true); |
| 46 | + test(7, true); |
| 47 | + test(8, false); |
| 48 | + } |
| 49 | + |
| 50 | + public static void test(int bpp, boolean shouldThrowException) { |
| 51 | + int palettes = (int)Math.pow(2, bpp); |
| 52 | + byte[] r = new byte[palettes]; |
| 53 | + byte[] g = new byte[palettes]; |
| 54 | + byte[] b = new byte[palettes]; |
| 55 | + boolean exceptionThrown = false; |
| 56 | + try { |
| 57 | + IndexColorModel cm = new IndexColorModel(bpp, palettes, r, g, b); |
| 58 | + int imageType = BufferedImage.TYPE_BYTE_BINARY; |
| 59 | + if (bpp > 4) { |
| 60 | + imageType = BufferedImage.TYPE_BYTE_INDEXED; |
| 61 | + } |
| 62 | + BufferedImage img = new |
| 63 | + BufferedImage(10, 10, imageType, (IndexColorModel)cm); |
| 64 | + File file = File.createTempFile("test", ".bmp", new File(".")); |
| 65 | + file.deleteOnExit(); |
| 66 | + ImageIO.write(img, "BMP", file); |
| 67 | + } catch (IOException e) { |
| 68 | + exceptionThrown = true; |
| 69 | + } catch (Exception e) { |
| 70 | + e.printStackTrace(); |
| 71 | + throw new RuntimeException("Unexpected exception: " + e); |
| 72 | + } |
| 73 | + |
| 74 | + if (shouldThrowException && !exceptionThrown) { |
| 75 | + throw new RuntimeException("IOException was not caught."); |
| 76 | + } else if (!shouldThrowException && exceptionThrown) { |
| 77 | + throw new RuntimeException("IOException should not be thrown."); |
| 78 | + } else { |
| 79 | + System.out.println("Test PASSED."); |
| 80 | + } |
| 81 | + } |
| 82 | +} |
0 commit comments