2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2023-07-19 20:22:40 +00:00
|
|
|
* Copyright (c) 2007, 2023, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2010-05-25 22:58:33 +00:00
|
|
|
* 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.
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
2023-07-19 20:22:40 +00:00
|
|
|
|
|
|
|
/*
|
2007-12-01 00:00:00 +00:00
|
|
|
* @test
|
|
|
|
* @bug 4474409
|
2023-07-19 20:22:40 +00:00
|
|
|
* @summary Tests some localized methods with Thai locale
|
2007-12-01 00:00:00 +00:00
|
|
|
* @author John O'Conner
|
2016-02-09 02:14:48 +00:00
|
|
|
* @modules jdk.localedata
|
2023-07-19 20:22:40 +00:00
|
|
|
* @run junit/othervm -Djava.locale.providers=COMPAT ThaiGov
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
2023-07-19 20:22:40 +00:00
|
|
|
import java.text.DateFormat;
|
|
|
|
import java.text.NumberFormat;
|
|
|
|
import java.util.Calendar;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Locale;
|
|
|
|
import java.util.TimeZone;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2023-07-19 20:22:40 +00:00
|
|
|
import org.junit.jupiter.api.Test;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2023-07-19 20:22:40 +00:00
|
|
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2023-07-19 20:22:40 +00:00
|
|
|
public class ThaiGov {
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2023-07-19 20:22:40 +00:00
|
|
|
private static final double VALUE = 12345678.234;
|
|
|
|
private static final Locale TH = Locale.of("th", "TH", "TH");
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2023-07-19 20:22:40 +00:00
|
|
|
// Test number formatting for thai
|
|
|
|
@Test
|
|
|
|
public void numberTest() {
|
|
|
|
final String strExpected = "\u0E51\u0E52\u002C\u0E53\u0E54\u0E55\u002C\u0E56\u0E57\u0E58\u002E\u0E52\u0E53\u0E54";
|
|
|
|
NumberFormat nf = NumberFormat.getInstance(TH);
|
|
|
|
String str = nf.format(VALUE);
|
|
|
|
assertEquals(strExpected, str);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2023-07-19 20:22:40 +00:00
|
|
|
// Test currency formatting for Thai
|
|
|
|
@Test
|
|
|
|
public void currencyTest() {
|
2007-12-01 00:00:00 +00:00
|
|
|
final String strExpected = "\u0E3F\u0E51\u0E52\u002C\u0E53\u0E54\u0E55\u002C\u0E56\u0E57\u0E58\u002E\u0E52\u0E53";
|
2023-07-19 20:22:40 +00:00
|
|
|
NumberFormat nf = NumberFormat.getCurrencyInstance(TH);
|
|
|
|
String str = nf.format(VALUE);
|
|
|
|
assertEquals(strExpected, str);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2023-07-19 20:22:40 +00:00
|
|
|
// Test date formatting for Thai
|
|
|
|
@Test
|
|
|
|
public void dateTest() {
|
|
|
|
TimeZone tz = TimeZone.getTimeZone("America/Los_Angeles");
|
2007-12-01 00:00:00 +00:00
|
|
|
Calendar calGregorian = Calendar.getInstance(tz, Locale.US);
|
|
|
|
calGregorian.clear();
|
|
|
|
calGregorian.set(2002, 4, 1, 8, 30);
|
|
|
|
final Date date = calGregorian.getTime();
|
2023-07-19 20:22:40 +00:00
|
|
|
Calendar cal = Calendar.getInstance(tz, TH);
|
2007-12-01 00:00:00 +00:00
|
|
|
cal.clear();
|
|
|
|
cal.setTime(date);
|
|
|
|
|
|
|
|
|
|
|
|
final String strExpected = "\u0E27\u0E31\u0E19\u0E1E\u0E38\u0E18\u0E17\u0E35\u0E48\u0020\u0E51\u0020\u0E1E\u0E24\u0E29\u0E20\u0E32\u0E04\u0E21\u0020\u0E1E\u002E\u0E28\u002E\u0020\u0E52\u0E55\u0E54\u0E55\u002C\u0020\u0E58\u0020\u0E19\u0E32\u0E2C\u0E34\u0E01\u0E32\u0020\u0E53\u0E50\u0020\u0E19\u0E32\u0E17\u0E35\u0020\u0E50\u0E50\u0020\u0E27\u0E34\u0E19\u0E32\u0E17\u0E35";
|
2023-07-19 20:22:40 +00:00
|
|
|
Date value = cal.getTime();
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// th_TH_TH test
|
2023-07-19 20:22:40 +00:00
|
|
|
DateFormat df = DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL, TH);
|
2007-12-01 00:00:00 +00:00
|
|
|
df.setTimeZone(tz);
|
|
|
|
String str = df.format(value);
|
2023-07-19 20:22:40 +00:00
|
|
|
assertEquals(strExpected, str);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
}
|