Subversion Repository Public Repository

litesoft

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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
// This Source Code is in the Public Domain per: http://unlicense.org
package org.litesoft.core.simpletypes.temporal;

import junit.framework.*;

import org.litesoft.commonfoundation.typeutils.*;

public class CalendarYMTest extends TestCase
{
    public static TestSuite suite()
    {
        return new TestSuite( CalendarYMTest.class );
    }

    public CalendarYMTest( String name )
    {
        super( name );
    }

    public static void main( String[] args )
    {
        junit.textui.TestRunner.run( suite() );
    }

    public void test_Contructors_Bad()
    {
        // Bad Strings
        chkCB( "1996a" );
        chkCB( "1996/a" );
        chkCB( "1996/1/a" );
        // Bad Dates
        chkCB( "2000/0" );
        chkCB( "2000/13" );

        // Missing Parts
        chkCB( "1996" );

        // Too Many Parts
        chkCB( "1996/2/1" );
    }

    private void chkCB( String pToYM )
    {
        try
        {
            CalendarYM.fromYM( pToYM );
            fail( "Did not fail : fromYM( \"" + pToYM + "\" )" );
        }
        catch ( IllegalArgumentException expected )
        {
            // Expected
        }
    }

    public void test_rtYM()
    {
        chkRT_YM( "1957/1", "1957/01" );
        chkRT_YM( "1957/01", "1957/01" );
        chkRT_YM( "1957/001", "1957/01" );
        chkRT_YM( "2000/2", "2000/02" );
        chkRT_YM( "2012/012", "2012/12" );
    }

    private void chkRT_YM( String pInputForFrom, String pToOutput )
    {
        CalendarYM sd = CalendarYM.fromYM( pInputForFrom );
        assertEquals( pToOutput, sd.toYM() );
    }

    public void test_rtSQL()
    {
        chkRT_SQL( "1957-1", "1957-01" );
        chkRT_SQL( "1957-01", "1957-01" );
        chkRT_SQL( "1957-001", "1957-01" );
        chkRT_SQL( "2000-2", "2000-02" );
        chkRT_SQL( "2012-012", "2012-12" );
    }

    private void chkRT_SQL( String pInputForFrom, String pToOutput )
    {
        CalendarYM sd = CalendarYM.fromSQLvalue( pInputForFrom );
        assertEquals( pToOutput, sd.toSQLvalue() );
    }

    public void test_fromYMAndToString()
            throws Exception
    {
        chk( DateFormat.DEFAULT_YM_FORMAT, "My", "1957/1", "Jan 1957", 1957, 1 );
        chk( "MMMyy", "My", "1957/1", "Jan57", 1957, 1 );
        chk( "MMMMMM y", "My", "1957 / 1", "January 1957", 1957, 1 );
        chk( "y-MM", "yM", "1957 / 1", "1957-01", 1957, 1 );
    }

    private void chk( String pDateFormat, String pFieldOrder, String pDateToParse, String pDateFormatToString, int pYear, int pMonth )
    {
        chk( new DateFormat( pDateFormat ), pFieldOrder, CalendarYM.fromYM( pDateToParse ), pDateFormatToString, pYear, pMonth );
    }

    public void test_ContructorsAndToString()
            throws Exception
    {
        chk( "MMM yyyy", "My", 2004, 2, "Feb 2004" );
    }

    private void chk( String pDateFormat, String pFieldOrder, int pYear, int pMonth, String pDateFormatToString )
    {
        chk( new DateFormat( pDateFormat ), pFieldOrder, new CalendarYM( pYear, pMonth ), pDateFormatToString, pYear, pMonth );
    }

    private void chk( DateFormat pFormat, String pFieldOrder, CalendarYM pDate, String pDateFormatToString, int pYear, int pMonth )
    {
        String zExpectedStringFormY = Integers.zeroPadIt( 4, pYear );
        String zExpectedStringFormM = Integers.zeroPadIt( 2, pMonth );
        assertEquals( pFieldOrder, pFormat.getFieldOrder() );
        assertEquals( "Year", pYear, pDate.getYear() );
        assertEquals( "Month", pMonth, pDate.getMonth() );
        assertEquals( pDateFormatToString, pFormat.format( pDate ) );
        assertEquals( "toYM", zExpectedStringFormY + "/" + zExpectedStringFormM, pDate.toYM() );
        assertEquals( "fromYM", pDate, CalendarYM.fromYM( pDate.toYM() ) );
        assertEquals( "toSQLvalue", zExpectedStringFormY + "-" + zExpectedStringFormM, pDate.toSQLvalue() );
        assertEquals( "fromSQLvalue", pDate, CalendarYM.fromSQLvalue( pDate.toSQLvalue() ) );
    }

    public void test_addYears()
    {
        chk_addYears( "1957/01", 51, "2008/01" );
        chk_addYears( "2000/01", -1, "1999/01" );
        chk_addYears( "2000/02", 1, "2001/02" );
        chk_addYears( "2000/02", 0, "2000/02" );
        chk_addYears( "2000/02", -1, "1999/02" );
    }

    private void chk_addYears( String pDateYM, int pAdjustBy, String pExpectedYM )
    {
        CalendarYM od = CalendarYM.fromYM( pDateYM );
        CalendarYM nd = od.addYears( pAdjustBy );
        assertEquals( pExpectedYM, nd.toYM() );
        if ( pAdjustBy == 0 )
        {
            assertTrue( od == nd );
            assertTrue( 0 == od.compareTo( nd ) );
            assertTrue( od.afterOrEqual( nd ) );
            assertTrue( od.beforeOrEqual( nd ) );
        }
        else if ( pAdjustBy > 0 )
        {
            assertTrue( 0 > od.compareTo( nd ) );
            assertFalse( od.afterOrEqual( nd ) );
            assertTrue( od.beforeOrEqual( nd ) );
        }
        else // pAdjustBy < 0
        {
            assertTrue( 0 < od.compareTo( nd ) );
            assertTrue( od.afterOrEqual( nd ) );
            assertFalse( od.beforeOrEqual( nd ) );
        }
    }

    public void test_minusYears()
    {
        chk_minusYears( "2008/01", 51, "1957/01" );
        chk_minusYears( "2000/01", -1, "2001/01" );
        chk_minusYears( "2000/02", 1, "1999/02" );
        chk_minusYears( "2000/02", 0, "2000/02" );
        chk_minusYears( "2000/02", -1, "2001/02" );
    }

    private void chk_minusYears( String pDateYM, int pAdjustBy, String pExpectedYM )
    {
        CalendarYM od = CalendarYM.fromYM( pDateYM );
        CalendarYM nd = od.minusYears( pAdjustBy );
        assertEquals( pExpectedYM, nd.toYM() );
        if ( pAdjustBy == 0 )
        {
            assertTrue( od == nd );
            assertTrue( 0 == od.compareTo( nd ) );
            assertTrue( od.afterOrEqual( nd ) );
            assertTrue( od.beforeOrEqual( nd ) );
        }
        else if ( pAdjustBy < 0 )
        {
            assertTrue( 0 > od.compareTo( nd ) );
            assertFalse( od.afterOrEqual( nd ) );
            assertTrue( od.beforeOrEqual( nd ) );
        }
        else // pAdjustBy > 0
        {
            assertTrue( 0 < od.compareTo( nd ) );
            assertTrue( od.afterOrEqual( nd ) );
            assertFalse( od.beforeOrEqual( nd ) );
        }
    }

    public void test_addMonths()
    {
        chk_addMonths( "1957/01", 2, "1957/03" );
        chk_addMonths( "2000/01", 0, "2000/01" );
        chk_addMonths( "2000/01", -1, "1999/12" );
        chk_addMonths( "2000/02", 12, "2001/02" );
        chk_addMonths( "2000/02", -12, "1999/02" );
    }

    private void chk_addMonths( String pDateYM, int pAdjustBy, String pExpectedYM )
    {
        CalendarYM od = CalendarYM.fromYM( pDateYM );
        CalendarYM nd = od.addMonths( pAdjustBy );
        assertEquals( pExpectedYM, nd.toYM() );
        if ( pAdjustBy == 0 )
        {
            assertTrue( od == nd );
            assertTrue( 0 == od.compareTo( nd ) );
            assertTrue( od.afterOrEqual( nd ) );
            assertTrue( od.beforeOrEqual( nd ) );
        }
        else if ( pAdjustBy > 0 )
        {
            assertTrue( 0 > od.compareTo( nd ) );
            assertFalse( od.afterOrEqual( nd ) );
            assertTrue( od.beforeOrEqual( nd ) );
        }
        else // pAdjustBy < 0
        {
            assertTrue( 0 < od.compareTo( nd ) );
            assertTrue( od.afterOrEqual( nd ) );
            assertFalse( od.beforeOrEqual( nd ) );
        }
    }

    public void test_minusMonths()
    {
        chk_minusMonths( "1957/03", 2, "1957/01" );
        chk_minusMonths( "1999/12", -1, "2000/01" );
        chk_minusMonths( "2000/02", 12, "1999/02" );
        chk_minusMonths( "2000/02", 0, "2000/02" );
        chk_minusMonths( "2000/02", -12, "2001/02" );
    }

    private void chk_minusMonths( String pDateYM, int pAdjustBy, String pExpectedYM )
    {
        CalendarYM od = CalendarYM.fromYM( pDateYM );
        CalendarYM nd = od.minusMonths( pAdjustBy );
        assertEquals( pExpectedYM, nd.toYM() );
        if ( pAdjustBy == 0 )
        {
            assertTrue( od == nd );
            assertTrue( 0 == od.compareTo( nd ) );
            assertTrue( od.afterOrEqual( nd ) );
            assertTrue( od.beforeOrEqual( nd ) );
        }
        else if ( pAdjustBy < 0 )
        {
            assertTrue( 0 > od.compareTo( nd ) );
            assertFalse( od.afterOrEqual( nd ) );
            assertTrue( od.beforeOrEqual( nd ) );
        }
        else // pAdjustBy > 0
        {
            assertTrue( 0 < od.compareTo( nd ) );
            assertTrue( od.afterOrEqual( nd ) );
            assertFalse( od.beforeOrEqual( nd ) );
        }
    }

    public void test_after_before_null()
    {
        CalendarYM sd = new CalendarYM( 2000, 1 );
        try
        {
            sd.afterOrEqual( null );
            fail( "Did Not fail on '" + sd + "': after( null )" );
        }
        catch ( IllegalArgumentException expected )
        {
            // expected
        }
        try
        {
            sd.beforeOrEqual( null );
            fail( "Did Not fail on '" + sd + "': before( null )" );
        }
        catch ( IllegalArgumentException expected )
        {
            // expected
        }
    }
}

Commits for litesoft/trunk/Java/core/Anywhere/tests/org/litesoft/core/simpletypes/temporal/CalendarYMTest.java

Diff revisions: vs.
Revision Author Commited Message
947 Diff Diff GeorgeS picture GeorgeS Fri 06 Jun, 2014 23:36:56 +0000

Correct Spelling of package!

939 Diff Diff GeorgeS picture GeorgeS Mon 02 Jun, 2014 21:30:31 +0000

Extracting commonfoundation

912 Diff Diff GeorgeS picture GeorgeS Fri 28 Jun, 2013 06:48:05 +0000

Revert to mixed & Working (PEDS & Prioritizer) code!

897 Diff Diff GeorgeS picture GeorgeS Mon 25 Feb, 2013 02:04:34 +0000
895 Diff Diff GeorgeS picture GeorgeS Mon 04 Feb, 2013 01:12:49 +0000
893 Diff Diff GeorgeS picture GeorgeS Mon 14 Jan, 2013 01:18:30 +0000
873 Diff Diff GeorgeS picture GeorgeS Tue 27 Nov, 2012 17:41:11 +0000

!

869 GeorgeS picture GeorgeS Mon 26 Nov, 2012 01:33:04 +0000