File: BuddhistCalendarTest.java

package info (click to toggle)
openjdk-21 21.0.8%2B9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 823,976 kB
  • sloc: java: 5,613,338; xml: 1,643,607; cpp: 1,296,296; ansic: 420,291; asm: 404,850; objc: 20,994; sh: 15,271; javascript: 11,245; python: 6,895; makefile: 2,362; perl: 357; awk: 351; sed: 172; jsp: 24; csh: 3
file content (244 lines) | stat: -rw-r--r-- 9,285 bytes parent folder | download | duplicates (7)
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/*
 * Copyright (c) 2003, 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 4817812 4847186 4956227 4956479
 * @summary Confirm that BuddhistCalendar's add(), roll(), set(), and toString()
 *          work correctly with Buddhist Era years.
 * @run junit BuddhistCalendarTest
 */

import java.util.Calendar;
import java.util.GregorianCalendar;
import java.util.Locale;
import java.util.stream.Stream;

import static java.util.Calendar.APRIL;
import static java.util.Calendar.DATE;
import static java.util.Calendar.DECEMBER;
import static java.util.Calendar.ERA;
import static java.util.Calendar.FEBRUARY;
import static java.util.Calendar.JANUARY;
import static java.util.Calendar.MAY;
import static java.util.Calendar.MONTH;
import static java.util.Calendar.WEEK_OF_YEAR;
import static java.util.Calendar.YEAR;


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.assertThrows;

public class BuddhistCalendarTest {

    private static final Locale THAI_LOCALE = Locale.of("th", "TH");

    /*
     * Test some add values for the BuddhistCalendar. This test compares the same field
     * as the one added.
     */
    @ParameterizedTest
    @MethodSource("addDataProvider")
    public void buddhistAddTest(Calendar cal, int amount, int fieldToAdd) {
        int base = cal.get(YEAR);
        cal.add(fieldToAdd, amount);
        int yearAfterRoll = cal.get(YEAR);
        assertEquals(yearAfterRoll, base+amount, String.format(
                "Added: %s to field: %s", amount, fieldToAdd));
    }

    /*
     * Given in the format: Calendar, amount to add, and field to add.
     * Test adding of positive and negative year values.
     */
    private static Stream<Arguments> addDataProvider() {
        return Stream.of(
                Arguments.of(getBuddhistCalendar(), 1, YEAR),
                Arguments.of(getBuddhistCalendar(), -3, YEAR)
        );
    }

    /*
     * Test some add values for the BuddhistCalendar. Compare a bigger field
     * (year) than the one added (month). Larger field should roll over.
     */
    @ParameterizedTest
    @MethodSource("alternateAddDataProvider")
    public void buddhistAlternateAddTest(Calendar cal, int amount, int fieldToAdd) {
        int base = cal.get(YEAR);
        cal.add(fieldToAdd, amount);
        int yearAfterRoll = cal.get(YEAR);
        assertEquals(yearAfterRoll, (amount>0) ? (base+1): (base-1), String.format(
                "Added: %s to field: %s", amount, fieldToAdd));
    }

    /*
     * Given in the format: Calendar, amount to add, and field to add.
     * Test adding of positive and negative month values.
     */
    private static Stream<Arguments> alternateAddDataProvider() {
        return Stream.of(
                Arguments.of(getBuddhistCalendarBuilder().set(MONTH, DECEMBER).build(), 2, MONTH),
                Arguments.of(getBuddhistCalendarBuilder().set(MONTH, FEBRUARY).build(), -4, MONTH)
                );
    }

    /*
     * Test some roll values for the BuddhistCalendar. Compare same field
     * that was rolled, value should change.
     */
    @ParameterizedTest
    @MethodSource("rollProvider")
    public void buddhistRollTest(Calendar cal, int amount, int fieldToRoll) {
        int base = cal.get(YEAR);
        cal.roll(fieldToRoll, amount);
        int year = cal.get(YEAR);
        assertEquals(year, base+amount, "Rolling field should change value");
    }

    /*
     * Given in the format: Calendar, amount to roll, and field to roll.
     * Test rolling of positive and negative year values.
     */
    private static Stream<Arguments> rollProvider() {
        return Stream.of(
                Arguments.of(getBuddhistCalendar(), 2, YEAR),
                Arguments.of(getBuddhistCalendar(), -4, YEAR)
        );
    }

    /*
     * Set some calendar values and roll, however, measure a different
     * field than the field that was rolled. Rolling should not change the
     * larger field.
     */
    @ParameterizedTest
    @MethodSource("alternateRollProvider")
    public void buddhistAlternateRollTest(Calendar cal, int amount, int fieldToRoll) {
        int base = cal.get(YEAR);
        cal.roll(fieldToRoll, amount);
        int year = cal.get(YEAR);
        assertEquals(year, base, "Rolling smaller field should not change bigger field");
    }

    /*
     * Given in the format: Calendar, amount to roll, and field to roll.
     * Test rolling of positive and negative week_of_year values.
     */
    private static Stream<Arguments> alternateRollProvider() {
        return Stream.of(
                Arguments.of(getBuddhistCalendarBuilder().set(YEAR, 2543)
                        .set(MONTH, DECEMBER).set(DATE, 31).build(), 10, WEEK_OF_YEAR),
                Arguments.of(getBuddhistCalendarBuilder().set(YEAR, 2543)
                        .set(MONTH, JANUARY).set(DATE, 1).build(), -10, WEEK_OF_YEAR)
        );
    }

    // Test the overloaded set() methods. Check year value.
    @Test
    public void buddhistSetTest() {
        Calendar cal = getBuddhistCalendar();
        cal.set(3001, APRIL, 10);
        assertEquals(cal.get(YEAR), 3001);
        cal.set(3020, MAY, 20, 9, 10);
        assertEquals(cal.get(YEAR), 3020);
        cal.set(3120, MAY, 20, 9, 10, 52 );
        assertEquals(cal.get(YEAR), 3120);
    }

    /*
     * Test BuddhistCalendar.getActualMaximum(YEAR);
     * set(YEAR)/get(YEAR) in this method doesn't affect the real
     * YEAR value because a clone is used with set() and get().
     */
    @Test
    public void buddhistActualMaximumTest() {
        Calendar cal = getBuddhistCalendar();
        int base = cal.get(YEAR);
        int ignored = cal.getActualMaximum(YEAR);
        int year = cal.get(YEAR);
        assertEquals(year, base, "BuddhistCalendar.getActualMaximum(YEAR)");
    }

    // Test BuddhistCalendar.getActualMinimum(YEAR), doesn't call set(YEAR) nor get(YEAR).
    @Test
    public void buddhistActualMinimumTest() {
        Calendar cal = getBuddhistCalendar();
        int base = cal.get(YEAR);
        int ignored = cal.getActualMinimum(YEAR);
        int year = cal.get(YEAR);
        assertEquals(year, base, "BuddhistCalendar.getActualMinimum(YEAR)");
    }

    // 4847186: BuddhistCalendar: toString() returns Gregorian year
    @Test
    public void buddhistToStringTest() {
        Calendar cal = getBuddhistCalendar();
        int year = cal.get(YEAR);
        String s = cal.toString();
        String y = s.replaceAll(".+,YEAR=(\\d+),.+", "$1");
        assertEquals(year, Integer.parseInt(y), "Wrong year value");
    }

    // 4956479: BuddhistCalendar methods may return wrong values after exception
    @Test
    public void buddhistValuesAfterExceptionTest() {
        Calendar cal = getBuddhistCalendar();
        int year = cal.get(YEAR);
        assertThrows(IllegalArgumentException.class, ()-> cal.add(100, +1));
        int year2 = cal.get(YEAR);
        assertEquals(year2, year, "Wrong year value after exception thrown");
    }

    // 4956227: getLeastMaximum(WEEK_OF_MONTH) return diff. val. for Greg. and Buddhist Calendar
    @Test
    public void buddhistLeastMaximumTest() {
        Calendar bc = getBuddhistCalendar();
        // Specify THAI_LOCALE to get the same params for WEEK
        // calculations (6904680).
        Calendar gc = new GregorianCalendar(THAI_LOCALE);
        for (int f = 0; f < Calendar.FIELD_COUNT; f++) {
            if (f == ERA || f == YEAR) {
                continue;
            }
            int bn = bc.getLeastMaximum(f);
            int gn = gc.getLeastMaximum(f);
            assertEquals(bn, gn, "Inconsistent Least Max value for " + Koyomi.getFieldName(f));
        }
    }

    // Utility to get a new Buddhist Calendar Builder (to allow setting of other values)
    private static Calendar.Builder getBuddhistCalendarBuilder() {
        return new Calendar.Builder().setLocale(THAI_LOCALE);
    }

    // Utility to get a new Buddhist calendar
    private static Calendar getBuddhistCalendar() {
        return Calendar.getInstance(THAI_LOCALE);
    }
}