This test emits to a `java.io.ByteArrayOutputStream` the contents of a `java.utils.prefs.Preferences` node. The `UTF-8` character encoding is used [1]. The `ByteArrayOutputStream` is then converted to a `String` using `toString()` which uses the platform's default character set [2]. The resulting `String` is then checked for the node names that it should and should not contain.
This change proposes to use `ByteArrayOutputStream.toString(String)` to obtain the string [3] to maintain consistency of the encoding. It also adds throwing a `RuntimeException` if the node string is not as expected. It is unclear why this test was not already throwing such an exception. [1] https://docs.oracle.com/en/java/javase/16/docs/api/java.prefs/java/util/prefs/Preferences.html#exportNode(java.io.OutputStream) [2] https://docs.oracle.com/en/java/javase/16/docs/api/java.base/java/io/ByteArrayOutputStream.html#toString() [3] https://docs.oracle.com/en/java/javase/16/docs/api/java.base/java/io/ByteArrayOutputStream.html#toString(java.lang.String) ------------- Commit messages: - 8264512: jdk/test/jdk/java/util/prefs/ExportNode.java relies on default platform encoding Changes: https://git.openjdk.java.net/jdk/pull/3332/files Webrev: https://webrevs.openjdk.java.net/?repo=jdk&pr=3332&range=00 Issue: https://bugs.openjdk.java.net/browse/JDK-8264512 Stats: 39 lines in 1 file changed: 21 ins; 0 del; 18 mod Patch: https://git.openjdk.java.net/jdk/pull/3332.diff Fetch: git fetch https://git.openjdk.java.net/jdk pull/3332/head:pull/3332 PR: https://git.openjdk.java.net/jdk/pull/3332