test/jdk/javax/imageio/ImageCompressionTypesTest.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 41784 jdk/test/javax/imageio/ImageCompressionTypesTest.java@c1e614077765
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41784
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
     1
/*
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
     2
 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
     4
 *
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
     7
 * published by the Free Software Foundation.
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
     8
 *
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    13
 * accompanied this code).
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    14
 *
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    18
 *
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    21
 * questions.
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    22
 */
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    23
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    24
 /*
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    25
  * @test
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    26
  * @bug     6294607
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    27
  * @summary Test verifies whether ImageWriteParam.getCompressionTypes()
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    28
  *          returns any duplicate compression type for ImageIO plugins.
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    29
  * @run     main ImageCompressionTypesTest
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    30
  */
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    31
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    32
import java.util.Iterator;
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    33
import javax.imageio.ImageIO;
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    34
import javax.imageio.ImageWriteParam;
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    35
import javax.imageio.ImageWriter;
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    36
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    37
public class ImageCompressionTypesTest {
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    38
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    39
    static ImageWriter writer = null;
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    40
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    41
    public ImageCompressionTypesTest(String format) {
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    42
        Iterator it = ImageIO.getImageWritersByFormatName(format);
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    43
        while (it.hasNext()) {
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    44
            writer = (ImageWriter) it.next();
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    45
            break;
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    46
        }
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    47
        ImageWriteParam param = writer.getDefaultWriteParam();
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    48
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    49
        param.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    50
        System.out.println("Checking compression types for : " + format);
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    51
        String compTypes[] = param.getCompressionTypes();
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    52
        if (compTypes.length > 1) {
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    53
            for (int i = 0; i < compTypes.length; i++) {
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    54
                for (int j = i + 1; j < compTypes.length; j++) {
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    55
                    if (compTypes[i].equalsIgnoreCase(compTypes[j])) {
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    56
                        throw new RuntimeException("Duplicate compression"
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    57
                                + " type exists for image format " + format);
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    58
                    }
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    59
                }
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    60
            }
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    61
        }
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    62
    }
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    63
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    64
    public static void main(String args[]) {
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    65
        final String[] formats = {"bmp", "png", "gif", "jpg", "tiff"};
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    66
        for (String format : formats) {
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    67
            new ImageCompressionTypesTest(format);
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    68
        }
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    69
    }
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    70
}
c1e614077765 6294607: GIFWriter returns the same compression type twice
jdv
parents:
diff changeset
    71