|
| 1 | +/* |
| 2 | + * Copyright (c) 2025, 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 jdk.test.lib.Asserts; |
| 25 | +import jdk.test.lib.process.ProcessTools; |
| 26 | +import sun.security.util.HexDumpEncoder; |
| 27 | + |
| 28 | +import java.nio.charset.Charset; |
| 29 | +import java.nio.charset.StandardCharsets; |
| 30 | +import java.util.Arrays; |
| 31 | + |
| 32 | +/* |
| 33 | + * @test |
| 34 | + * @bug 8349664 |
| 35 | + * @summary HEX dump should always use ASCII or ISO_8859_1 |
| 36 | + * @modules java.base/sun.security.util |
| 37 | + * @library /test/lib |
| 38 | + */ |
| 39 | +public class HexDumpEncoderTests { |
| 40 | + |
| 41 | + |
| 42 | + private static String[] getTestCommand(final String encoding) { |
| 43 | + return new String[]{ |
| 44 | + "--add-modules", "java.base", |
| 45 | + "--add-exports", "java.base/sun.security.util=ALL-UNNAMED", |
| 46 | + "-Dfile.encoding=" + encoding, |
| 47 | + HexDumpEncoderTests.HexDumpEncoderTest.class.getName() |
| 48 | + }; |
| 49 | + } |
| 50 | + |
| 51 | + public static void main(String[] args) throws Exception { |
| 52 | + |
| 53 | + final var testCommandIso = getTestCommand("ISO-8859-1"); |
| 54 | + |
| 55 | + final var resultIso = ProcessTools.executeTestJava(testCommandIso); |
| 56 | + resultIso.shouldHaveExitValue(0); |
| 57 | + |
| 58 | + // This will take all available StandardCharsets and test them all comparing to the ISO_8859_1 |
| 59 | + // Dome im parallel, as this is significantly faster |
| 60 | + Arrays.stream(StandardCharsets.class.getDeclaredFields()) |
| 61 | + .parallel() |
| 62 | + .forEach(field -> { |
| 63 | + if (java.lang.reflect.Modifier.isStatic(field.getModifiers())) { |
| 64 | + try { |
| 65 | + final var charset = (Charset) field.get(StandardCharsets.ISO_8859_1); // getting the charset to test |
| 66 | + |
| 67 | + final var testCommand = getTestCommand(charset.name()); |
| 68 | + |
| 69 | + final var result = ProcessTools.executeTestJava(testCommand); |
| 70 | + result.shouldHaveExitValue(0); |
| 71 | + |
| 72 | + // The outputs of the ISO encoding must be identical to the one tested |
| 73 | + Asserts.assertEquals(resultIso.getStdout(), |
| 74 | + result.getStdout(), |
| 75 | + "Encoding " + charset.name()); |
| 76 | + } catch (Exception e) { |
| 77 | + throw new RuntimeException(e); |
| 78 | + } |
| 79 | + } |
| 80 | + }); |
| 81 | + } |
| 82 | + |
| 83 | + public static class HexDumpEncoderTest { |
| 84 | + |
| 85 | + /** |
| 86 | + * This will test the encode and encode buffer functions at once, |
| 87 | + * as they are both representing the string in LATIN_1 |
| 88 | + * <p> |
| 89 | + * The output is put as a system.out |
| 90 | + */ |
| 91 | + public static void main(String[] args) throws Exception { |
| 92 | + |
| 93 | + final var encoder = new HexDumpEncoder(); |
| 94 | + |
| 95 | + System.out.printf("\nCert Encoded With Encode Buffer: %s\n", encoder.encodeBuffer(new byte[100])); |
| 96 | + System.out.printf("\nCert Encoded With Encode: %s\n", encoder.encode(new byte[100])); |
| 97 | + } |
| 98 | + } |
| 99 | +} |
0 commit comments