Adjust cxxtest path in build rules.
[shibboleth/cpp-xmltooling.git] / xmltoolingtest / DateTimeTest.h
1 /*
2  *  Copyright 2001-2007 Internet2
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "XMLObjectBaseTestCase.h"
18
19 #include <xmltooling/util/DateTime.h>
20
21 class DateTimeTest : public CxxTest::TestSuite {
22 public:
23     void setUp() {
24     }
25
26     void tearDown() {
27     }
28
29     void testDateTime() {
30         auto_ptr_XMLCh ts1("1970-01-31T00:00:00Z");
31         DateTime dt1(ts1.get());
32         dt1.parseDateTime();
33         TSM_ASSERT_EQUALS("Epoch for Jan 31, 1970 did not match.", dt1.getEpoch(), 2592000);
34
35         DateTime dt2(1227234172);
36         auto_ptr_char ts2(dt2.getRawData());
37         TSM_ASSERT("ISO string for Nov 21, 2008 02:22:52 did not match.", !strcmp(ts2.get(), "2008-11-21T02:22:52Z"));
38     }
39
40     void testDuration() {
41         auto_ptr_XMLCh d1("P1D");
42         DateTime dt1(d1.get());
43         dt1.parseDuration();
44         TSM_ASSERT_EQUALS("Epoch for 1 day did not match.", dt1.getEpoch(true), 86400);
45
46         auto_ptr_XMLCh d2("PT2H");
47         DateTime dt2(d2.get());
48         dt2.parseDuration();
49         TSM_ASSERT_EQUALS("Epoch for 2 hours did not match.", dt2.getEpoch(true), 7200);
50
51         DateTime dt3(28800, true);
52         auto_ptr_char d3(dt3.getRawData());
53         TSM_ASSERT("ISO string for 8 hours did not match.", !strcmp(d3.get(), "P0DT8H0M0S"));
54
55         DateTime dt4(-29000, true);
56         auto_ptr_char d4(dt4.getRawData());
57         TSM_ASSERT("ISO string for negative 8 hours did not match.", !strcmp(d4.get(), "-P0DT8H3M20S"));
58     }
59 };