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