jdk-24/test/jdk/java/util/Locale/StreamAvailableLocales.java

83 lines
3.1 KiB
Java
Raw Normal View History

/*
* Copyright (c) 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
* @summary Test the implementation
* of Locale.availableLocales()
* @bug 8282319
* @run junit StreamAvailableLocales
*/
import java.util.Arrays;
import java.util.Locale;
import java.util.stream.Stream;
import org.junit.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.MethodSource;
import org.junit.jupiter.params.provider.Arguments;
public class StreamAvailableLocales {
/**
* Test to validate that the methods: Locale.getAvailableLocales()
* and Locale.availableLocales() contain the same underlying elements
*/
@Test
public void testStreamEqualsArray() {
Locale[] arrayLocales = Locale.getAvailableLocales();
Stream<Locale> streamedLocales = Locale.availableLocales();
Locale[] convertedLocales = streamedLocales.toArray(Locale[]::new);
if (Arrays.equals(arrayLocales, convertedLocales)) {
System.out.println("$$$ Passed: The underlying elements" +
" of getAvailableLocales() and availableLocales() are the same!");
} else {
throw new RuntimeException("$$$ Error: The underlying elements" +
" of getAvailableLocales() and availableLocales()" +
" are not the same.");
}
}
/**
* Test to validate that the stream has the required
* Locale.ROOT and Locale.US.
*/
@ParameterizedTest
@MethodSource("requiredLocaleProvider")
public void testStreamRequirements(Locale requiredLocale, String localeName) {
if (Locale.availableLocales().anyMatch(loc -> (loc.equals(requiredLocale)))) {
System.out.printf("$$$ Passed: Stream has %s!%n", localeName);
} else {
throw new RuntimeException(String.format("$$$ Error:" +
" Stream is missing %s!", localeName));
}
}
// Data provider for testStreamRequirements
private static Stream<Arguments> requiredLocaleProvider() {
return Stream.of(
Arguments.of(Locale.ROOT, "Root locale"),
Arguments.of(Locale.US, "US locale")
);
}
}