1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
/*
* Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 4884238 8310047
* @summary Test standard charset name constants and class qualities.
* @author Mike Duigou
* @run junit Standard
*/
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Stream;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
public class Standard {
// These are the charsets StandardCharsets.java is expected to contain.
private static final String[] expectedCharsets = {
"US-ASCII", "ISO-8859-1", "UTF-8",
"UTF-16BE", "UTF-16LE", "UTF-16"
};
private static final Field[] standardCharsetFields =
StandardCharsets.class.getFields();
/**
* Validates that the Charset constants from the data provider
* are of type Charset.
*/
@ParameterizedTest
@MethodSource("charsetProvider")
public void typeTest(Charset charset) {
// Doubly checked, as it is validated when passed as a param
assertTrue(charset instanceof Charset);
}
/**
* Validates that calling .name() on a Charset constant is equal
* to the matching String value from the data provider.
*/
@ParameterizedTest
@MethodSource("charsetProvider")
public void nameMethodTest(Charset charset, String charString) {
assertEquals(charset.name(), charString);
}
/**
* Validates that calling Charset.forName() on a String is equal
* to the matching Charset constant from the data provider.
*/
@ParameterizedTest
@MethodSource("charsetProvider")
public void forNameMethodTest(Charset charset, String charString) {
assertEquals(Charset.forName(charString), charset);
}
/**
* Validates the qualities of a StandardCharsets field are as expected:
* The field is final, static, public, and one can access
* the underlying value of the field.
*/
@ParameterizedTest
@MethodSource("charsetFields")
public void charsetModifiersTest(Field charsetField) throws IllegalAccessException {
// Check modifiers
assertEquals(StandardCharsets.class, charsetField.getDeclaringClass());
assertTrue(Modifier.isFinal(charsetField.getModifiers()));
assertTrue(Modifier.isStatic(charsetField.getModifiers()));
assertTrue(Modifier.isPublic(charsetField.getModifiers()));
// Check that the value can be accessed, and it is a Charset
Object valueOfField = charsetField.get(null);
assertTrue(valueOfField instanceof Charset);
}
/**
* Validates that the Charsets contained in StandardCharsets are equal
* to the expected Charsets list defined in the test. This test should fail if
* either the actual or expected (standard) Charsets are modified, and
* the others are not.
*/
@Test
public void correctCharsetsTest() {
// Grab the value from each Standard Charset field
List<String> actualCharsets = charsetFields().map(field -> {
try {
return ((Charset) field.get(null)).name();
} catch (IllegalAccessException e) {
throw new RuntimeException("Can not test correctCharsetsTest() due to %s", e);
}
}).toList();
assertEquals(actualCharsets, Arrays.asList(expectedCharsets));
}
/**
* Provides the constant Charset and associated String value of
* the standard charsets.
*/
private static Stream<Arguments> charsetProvider() {
return Stream.of(
Arguments.of(StandardCharsets.US_ASCII, "US-ASCII"),
Arguments.of(StandardCharsets.ISO_8859_1, "ISO-8859-1"),
Arguments.of(StandardCharsets.UTF_8, "UTF-8"),
Arguments.of(StandardCharsets.UTF_16BE, "UTF-16BE"),
Arguments.of(StandardCharsets.UTF_16LE, "UTF-16LE"),
Arguments.of(StandardCharsets.UTF_16, "UTF-16")
);
}
private static Stream<Field> charsetFields() {
return Arrays.stream(standardCharsetFields);
}
}
|