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
// 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 CalendarYTest extends TestCase
{
    public static TestSuite suite()
    {
        return new TestSuite( CalendarYTest.class );
    }

    public CalendarYTest( 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" );

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

    private void chkCB( String pToY )
    {
        try
        {
            CalendarY.fromY( pToY );
            fail( "Did not fail : fromY( \"" + pToY + "\" )" );
        }
        catch ( IllegalArgumentException expected )
        {
            // Expected
        }
    }

    public void test_rtY()
    {
        chkRTY( "1996", "1996" );
        chkRTY( "2000", "2000" );
        chkRTY( "2012", "2012" );
    }

    private void chkRTY( String pInputForFrom, String pToOutput )
    {
        CalendarY sd = CalendarY.fromY( pInputForFrom );
        assertEquals( pToOutput, sd.toY() );
    }

    public void test_rtSQL()
    {
        chkRTSQL( "1996", "1996" );
        chkRTSQL( "2000", "2000" );
        chkRTSQL( "2012", "2012" );
    }

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

    public void test_fromYAndToString()
            throws Exception
    {
        chk( DateFormat.DEFAULT_Y_FORMAT, "1957", "1957", 1957 );
        chk( "yy", "1996", "96", 1996 );
        chk( "/yy", "1996", "/96", 1996 );
        chk( "/ y:", "1996", "/ 1996:", 1996 );
        chk( "/ yyy:", "1996", "/ 1996:", 1996 );
    }

    private void chk( String pDateFormat, String pDateToParse, String pDateFormatToString, int pYear )
    {
        chk( new DateFormat( pDateFormat ), CalendarY.fromY( pDateToParse ), pDateFormatToString, pYear );
    }

    public void test_ContructorsAndToString()
            throws Exception
    {
        chk( "yy", 1996, "96" );
        chk( "/yy", 1996, "/96" );
        chk( "/ y:", 1996, "/ 1996:" );
        chk( "/ yyy:", 1996, "/ 1996:" );
    }

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

    private void chk( DateFormat pFormat, CalendarY pDate, String pDateFormatToString, int pYear )
    {
        String zExpectedStringFormYandSQL = Integers.zeroPadIt( 4, pYear );
        assertEquals( "y", pFormat.getFieldOrder() );
        assertEquals( "Year", pYear, pDate.getYear() );
        assertEquals( pDateFormatToString, pFormat.format( pDate ) );
        assertEquals( "toY", zExpectedStringFormYandSQL, pDate.toY() );
        assertEquals( "fromY", pDate, CalendarY.fromY( pDate.toY() ) );
        assertEquals( "toSQLvalue", zExpectedStringFormYandSQL, pDate.toSQLvalue() );
        assertEquals( "fromSQLvalue", pDate, CalendarY.fromSQLvalue( pDate.toSQLvalue() ) );
    }

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

    private void chk_addYears( String pDateY, int pAdjustBy, String pExpectedY )
    {
        CalendarY od = CalendarY.fromY( pDateY );
        CalendarY nd = od.addYears( pAdjustBy );
        assertEquals( pExpectedY, nd.toY() );
        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", 51, "1957" );
        chk_minusYears( "2000", -1, "2001" );
        chk_minusYears( "2000", 0, "2000" );
        chk_minusYears( "2000", 1, "1999" );
    }

    private void chk_minusYears( String pDateY, int pAdjustBy, String pExpectedY )
    {
        CalendarY od = CalendarY.fromY( pDateY );
        CalendarY nd = od.minusYears( pAdjustBy );
        assertEquals( pExpectedY, nd.toY() );
        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()
    {
        CalendarY sd = new CalendarY( 2000 );
        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/CalendarYTest.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