|
| 1 | +/* |
| 2 | + * Copyright (c) 2020, 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 8248231 |
| 27 | + * @summary Test to verify lambda serialization uses the correct UTF-8 encoding |
| 28 | + * @library /test/lib |
| 29 | + * @build jdk.test.lib.JDKToolFinder |
| 30 | + * jdk.test.lib.process.ProcessTools |
| 31 | + * @run testng LambdaFileEncodingSerialization |
| 32 | + */ |
| 33 | +import java.io.File; |
| 34 | +import java.io.BufferedReader; |
| 35 | +import java.io.InputStreamReader; |
| 36 | +import java.io.IOException; |
| 37 | +import java.util.List; |
| 38 | +import java.util.Map; |
| 39 | +import java.util.Arrays; |
| 40 | +import java.util.ArrayList; |
| 41 | + |
| 42 | +import org.testng.annotations.Test; |
| 43 | +import static org.testng.Assert.assertTrue; |
| 44 | + |
| 45 | +import jdk.test.lib.JDKToolFinder; |
| 46 | +import jdk.test.lib.process.ProcessTools; |
| 47 | + |
| 48 | +public class LambdaFileEncodingSerialization { |
| 49 | + |
| 50 | + private static final String TEST_NAME = "TestLambdaFileEncodingSerialization"; |
| 51 | + |
| 52 | + @Test |
| 53 | + public static void testDeserializeLambdaEncoding() throws Throwable { |
| 54 | + |
| 55 | + String javac = JDKToolFinder.getTestJDKTool("javac"); |
| 56 | + String java = JDKToolFinder.getTestJDKTool("java"); |
| 57 | + |
| 58 | + String srcDir = System.getProperty("test.src"); |
| 59 | + |
| 60 | + // Compile <TEST_NAME>.java using ISO-8859-1 encoding |
| 61 | + String opts = "-J-Dfile.encoding=ISO-8859-1 -cp . -d ."; |
| 62 | + String file = srcDir + File.separator + TEST_NAME + ".java"; |
| 63 | + int exitCode = runCmd(javac, opts, file); |
| 64 | + assertTrue(exitCode == 0, "Command " + javac + " " + opts + " " + file + " , failed exitCode = "+exitCode); |
| 65 | + |
| 66 | + // Execute TEST_NAME containing the re-serialized lambda |
| 67 | + opts = "-cp ."; |
| 68 | + file = TEST_NAME; |
| 69 | + exitCode = runCmd(java, opts, file); |
| 70 | + assertTrue(exitCode == 0, "Command " + java + " " + opts + " " + file + " , failed exitCode = "+exitCode); |
| 71 | + } |
| 72 | + |
| 73 | + // Run a command |
| 74 | + private static int runCmd(String prog, String options, String file) throws Throwable { |
| 75 | + |
| 76 | + List<String> argList = new ArrayList<String>(); |
| 77 | + argList.add(prog); |
| 78 | + argList.addAll(Arrays.asList(options.split(" "))); |
| 79 | + argList.add(file); |
| 80 | + |
| 81 | + ProcessBuilder pb = new ProcessBuilder(argList); |
| 82 | + Map<String, String> env = pb.environment(); |
| 83 | + env.put("LC_ALL", "en_US.UTF-8"); // Ensure locale supports the test requirements, lambda with a UTF char |
| 84 | + |
| 85 | + int exitCode = ProcessTools.executeCommand(pb).outputTo(System.out) |
| 86 | + .errorTo(System.err) |
| 87 | + .getExitValue(); |
| 88 | + return exitCode; |
| 89 | + } |
| 90 | + |
| 91 | +} |
| 92 | + |
0 commit comments