Skip to content

Commit af1e75c

Browse files
Abseil Teammbxx
Abseil Team
authored andcommitted
Googletest export
Add millisecond precision to start timestamp in XML/JSON output - Previous timestamp had format YYYY-MM-DDThh:mm:ss, now YYYY-MM-DDThh:mm:ss.sss - This conforms to the ISO 8601 standard PiperOrigin-RevId: 329503623
1 parent df6b759 commit af1e75c

File tree

4 files changed

+19
-10
lines changed

4 files changed

+19
-10
lines changed

googletest/include/gtest/internal/gtest-string.h

+3
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,9 @@ class GTEST_API_ String {
149149
// Formats an int value as "%02d".
150150
static std::string FormatIntWidth2(int value); // "%02d" for width == 2
151151

152+
// Formats an int value to given width with leading zeros.
153+
static std::string FormatIntWidthN(int value, int width);
154+
152155
// Formats an int value as "%X".
153156
static std::string FormatHexInt(int value);
154157

googletest/src/gtest.cc

+9-3
Original file line numberDiff line numberDiff line change
@@ -2141,8 +2141,13 @@ bool String::EndsWithCaseInsensitive(
21412141

21422142
// Formats an int value as "%02d".
21432143
std::string String::FormatIntWidth2(int value) {
2144+
return FormatIntWidthN(value, 2);
2145+
}
2146+
2147+
// Formats an int value to given width with leading zeros.
2148+
std::string String::FormatIntWidthN(int value, int width) {
21442149
std::stringstream ss;
2145-
ss << std::setfill('0') << std::setw(2) << value;
2150+
ss << std::setfill('0') << std::setw(width) << value;
21462151
return ss.str();
21472152
}
21482153

@@ -4101,13 +4106,14 @@ std::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms) {
41014106
struct tm time_struct;
41024107
if (!PortableLocaltime(static_cast<time_t>(ms / 1000), &time_struct))
41034108
return "";
4104-
// YYYY-MM-DDThh:mm:ss
4109+
// YYYY-MM-DDThh:mm:ss.sss
41054110
return StreamableToString(time_struct.tm_year + 1900) + "-" +
41064111
String::FormatIntWidth2(time_struct.tm_mon + 1) + "-" +
41074112
String::FormatIntWidth2(time_struct.tm_mday) + "T" +
41084113
String::FormatIntWidth2(time_struct.tm_hour) + ":" +
41094114
String::FormatIntWidth2(time_struct.tm_min) + ":" +
4110-
String::FormatIntWidth2(time_struct.tm_sec);
4115+
String::FormatIntWidth2(time_struct.tm_sec) + "." +
4116+
String::FormatIntWidthN(static_cast<int>(ms % 1000), 3);
41114117
}
41124118

41134119
// Streams an XML CDATA section, escaping invalid CDATA sequences as needed.

googletest/test/gtest_unittest.cc

+6-6
Original file line numberDiff line numberDiff line change
@@ -485,28 +485,28 @@ class FormatEpochTimeInMillisAsIso8601Test : public Test {
485485
const TimeInMillis FormatEpochTimeInMillisAsIso8601Test::kMillisPerSec;
486486

487487
TEST_F(FormatEpochTimeInMillisAsIso8601Test, PrintsTwoDigitSegments) {
488-
EXPECT_EQ("2011-10-31T18:52:42",
488+
EXPECT_EQ("2011-10-31T18:52:42.000",
489489
FormatEpochTimeInMillisAsIso8601(1320087162 * kMillisPerSec));
490490
}
491491

492-
TEST_F(FormatEpochTimeInMillisAsIso8601Test, MillisecondsDoNotAffectResult) {
492+
TEST_F(FormatEpochTimeInMillisAsIso8601Test, IncludesMillisecondsAfterDot) {
493493
EXPECT_EQ(
494-
"2011-10-31T18:52:42",
494+
"2011-10-31T18:52:42.234",
495495
FormatEpochTimeInMillisAsIso8601(1320087162 * kMillisPerSec + 234));
496496
}
497497

498498
TEST_F(FormatEpochTimeInMillisAsIso8601Test, PrintsLeadingZeroes) {
499-
EXPECT_EQ("2011-09-03T05:07:02",
499+
EXPECT_EQ("2011-09-03T05:07:02.000",
500500
FormatEpochTimeInMillisAsIso8601(1315026422 * kMillisPerSec));
501501
}
502502

503503
TEST_F(FormatEpochTimeInMillisAsIso8601Test, Prints24HourTime) {
504-
EXPECT_EQ("2011-09-28T17:08:22",
504+
EXPECT_EQ("2011-09-28T17:08:22.000",
505505
FormatEpochTimeInMillisAsIso8601(1317229702 * kMillisPerSec));
506506
}
507507

508508
TEST_F(FormatEpochTimeInMillisAsIso8601Test, PrintsEpochStart) {
509-
EXPECT_EQ("1970-01-01T00:00:00", FormatEpochTimeInMillisAsIso8601(0));
509+
EXPECT_EQ("1970-01-01T00:00:00.000", FormatEpochTimeInMillisAsIso8601(0));
510510
}
511511

512512
# ifdef __BORLANDC__

googletest/test/gtest_xml_test_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def NormalizeXml(self, element):
172172

173173
if element.tagName in ('testsuites', 'testsuite', 'testcase'):
174174
timestamp = element.getAttributeNode('timestamp')
175-
timestamp.value = re.sub(r'^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d$',
175+
timestamp.value = re.sub(r'^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d\.\d\d\d$',
176176
'*', timestamp.value)
177177
if element.tagName in ('testsuites', 'testsuite', 'testcase'):
178178
time = element.getAttributeNode('time')

0 commit comments

Comments
 (0)