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
|
// Copyright 2008, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <time.h>
#include "base/logging.h"
#include "base/third_party/nspr/prtime.h"
#include "base/time.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
// time_t representation of 15th Oct 2007 12:45:00 PDT
PRTime comparison_time_pdt = 1192477500 * Time::kMicrosecondsPerSecond;
// Specialized test fixture allowing time strings without timezones to be
// tested by comparing them to a known time in the local zone.
class PRTimeTest : public testing::Test {
protected:
virtual void SetUp() {
// Use mktime to get a time_t, and turn it into a PRTime by converting
// seconds to microseconds. Use 15th Oct 2007 12:45:00 local. This
// must be a time guaranteed to be outside of a DST fallback hour in
// any timezone.
struct tm local_comparison_tm = {
0, // second
45, // minute
12, // hour
15, // day of month
10 - 1, // month
2007 - 1900, // year
0, // day of week (ignored, output only)
0, // day of year (ignored, output only)
-1 // DST in effect, -1 tells mktime to figure it out
};
comparison_time_local_ = mktime(&local_comparison_tm) *
Time::kMicrosecondsPerSecond;
ASSERT_GT(comparison_time_local_, 0);
}
PRTime comparison_time_local_;
};
} // namespace
// Tests the PR_ParseTimeString nspr helper function for
// a variety of time strings.
TEST_F(PRTimeTest, ParseTimeTest1) {
time_t current_time = 0;
time(¤t_time);
const int BUFFER_SIZE = 64;
struct tm local_time = {0};
char time_buf[BUFFER_SIZE] = {0};
#if defined(OS_WIN)
localtime_s(&local_time, ¤t_time);
asctime_s(time_buf, arraysize(time_buf), &local_time);
#elif defined(OS_POSIX)
localtime_r(¤t_time, &local_time);
asctime_r(&local_time, time_buf);
#endif
PRTime current_time64 = static_cast<PRTime>(current_time) * PR_USEC_PER_SEC;
PRTime parsed_time = 0;
PRStatus result = PR_ParseTimeString(time_buf, PR_FALSE, &parsed_time);
EXPECT_EQ(PR_SUCCESS, result);
EXPECT_EQ(current_time64, parsed_time);
}
TEST_F(PRTimeTest, ParseTimeTest2) {
PRTime parsed_time = 0;
PRStatus result = PR_ParseTimeString("Mon, 15 Oct 2007 19:45:00 GMT",
PR_FALSE, &parsed_time);
EXPECT_EQ(PR_SUCCESS, result);
EXPECT_EQ(parsed_time, comparison_time_pdt);
}
TEST_F(PRTimeTest, ParseTimeTest3) {
PRTime parsed_time = 0;
PRStatus result = PR_ParseTimeString("15 Oct 07 12:45:00", PR_FALSE,
&parsed_time);
EXPECT_EQ(PR_SUCCESS, result);
EXPECT_EQ(parsed_time, comparison_time_local_);
}
TEST_F(PRTimeTest, ParseTimeTest4) {
PRTime parsed_time = 0;
PRStatus result = PR_ParseTimeString("15 Oct 07 19:45 GMT", PR_FALSE,
&parsed_time);
EXPECT_EQ(PR_SUCCESS, result);
EXPECT_EQ(parsed_time, comparison_time_pdt);
}
TEST_F(PRTimeTest, ParseTimeTest5) {
PRTime parsed_time = 0;
PRStatus result = PR_ParseTimeString("Mon Oct 15 12:45 PDT 2007",
PR_FALSE, &parsed_time);
EXPECT_EQ(PR_SUCCESS, result);
EXPECT_EQ(parsed_time, comparison_time_pdt);
}
TEST_F(PRTimeTest, ParseTimeTest6) {
PRTime parsed_time = 0;
PRStatus result = PR_ParseTimeString("Monday, Oct 15, 2007 12:45 PM",
PR_FALSE, &parsed_time);
EXPECT_EQ(PR_SUCCESS, result);
EXPECT_EQ(parsed_time, comparison_time_local_);
}
TEST_F(PRTimeTest, ParseTimeTest7) {
PRTime parsed_time = 0;
PRStatus result = PR_ParseTimeString("10/15/07 12:45:00 PM", PR_FALSE,
&parsed_time);
EXPECT_EQ(PR_SUCCESS, result);
EXPECT_EQ(parsed_time, comparison_time_local_);
}
TEST_F(PRTimeTest, ParseTimeTest8) {
PRTime parsed_time = 0;
PRStatus result = PR_ParseTimeString("15-OCT-2007 12:45pm", PR_FALSE,
&parsed_time);
EXPECT_EQ(PR_SUCCESS, result);
EXPECT_EQ(parsed_time, comparison_time_local_);
}
TEST_F(PRTimeTest, ParseTimeTest9) {
PRTime parsed_time = 0;
PRStatus result = PR_ParseTimeString("16 Oct 2007 4:45-JST (Tuesday)",
PR_FALSE, &parsed_time);
EXPECT_EQ(PR_SUCCESS, result);
EXPECT_EQ(parsed_time, comparison_time_pdt);
}
// This tests the Time::FromString wrapper over PR_ParseTimeString
TEST_F(PRTimeTest, ParseTimeTest10) {
Time parsed_time;
bool result = Time::FromString(L"15/10/07 12:45",&parsed_time);
EXPECT_EQ(true, result);
time_t computed_time = parsed_time.ToTimeT();
time_t time_to_compare = comparison_time_local_ /
Time::kMicrosecondsPerSecond;
EXPECT_EQ(computed_time, time_to_compare);
}
// This tests the Time::FromString wrapper over PR_ParseTimeString
TEST_F(PRTimeTest, ParseTimeTest11) {
Time parsed_time;
bool result = Time::FromString(L"Mon, 15 Oct 2007 19:45:00 GMT",
&parsed_time);
EXPECT_EQ(true, result);
time_t computed_time = parsed_time.ToTimeT();
time_t time_to_compare = comparison_time_pdt / Time::kMicrosecondsPerSecond;
EXPECT_EQ(computed_time, time_to_compare);
}
|