summaryrefslogtreecommitdiffstats
path: root/src/test/test_utime.cc
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:54:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:54:28 +0000
commite6918187568dbd01842d8d1d2c808ce16a894239 (patch)
tree64f88b554b444a49f656b6c656111a145cbbaa28 /src/test/test_utime.cc
parentInitial commit. (diff)
downloadceph-b26c4052f3542036551aa9dec9caa4226e456195.tar.xz
ceph-b26c4052f3542036551aa9dec9caa4226e456195.zip
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/test_utime.cc')
-rw-r--r--src/test/test_utime.cc67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/test/test_utime.cc b/src/test/test_utime.cc
new file mode 100644
index 000000000..b1cee0e80
--- /dev/null
+++ b/src/test/test_utime.cc
@@ -0,0 +1,67 @@
+#include "include/utime.h"
+#include "gtest/gtest.h"
+#include "include/stringify.h"
+#include "common/ceph_context.h"
+
+using namespace std;
+
+TEST(utime_t, localtime)
+{
+ utime_t t(1556122013, 839991182);
+ string s = stringify(t);
+ cout << s << std::endl;
+ // time zone may vary where unit test is run, so be cirsumspect...
+ ASSERT_EQ(s.size(), strlen("2019-04-24T11:06:53.839991-0500"));
+ ASSERT_TRUE(s[26] == '-' || s[26] == '+');
+ ASSERT_EQ(s.substr(0, 9), "2019-04-2");
+}
+
+TEST(utime_t, gmtime)
+{
+ utime_t t(1556122013, 39991182);
+ {
+ ostringstream ss;
+ t.gmtime(ss);
+ ASSERT_EQ(ss.str(), "2019-04-24T16:06:53.039991Z");
+ }
+ {
+ ostringstream ss;
+ t.gmtime_nsec(ss);
+ ASSERT_EQ(ss.str(), "2019-04-24T16:06:53.039991182Z");
+ }
+}
+
+TEST(utime_t, asctime)
+{
+ utime_t t(1556122013, 839991182);
+ ostringstream ss;
+ t.asctime(ss);
+ string s = ss.str();
+ ASSERT_EQ(s, "Wed Apr 24 16:06:53 2019");
+}
+
+const char *v[][2] = {
+ { "2019-04-24T16:06:53.039991Z", "2019-04-24T16:06:53.039991Z" },
+ { "2019-04-24 16:06:53.039991Z", "2019-04-24T16:06:53.039991Z" },
+ { "2019-04-24 16:06:53.039991+0000", "2019-04-24T16:06:53.039991Z" },
+ { "2019-04-24 16:06:53.039991-0100", "2019-04-24T17:06:53.039991Z" },
+ { "2019-04-24 16:06:53.039991+0430", "2019-04-24T11:36:53.039991Z" },
+ { "2019-04-24 16:06:53+0000", "2019-04-24T16:06:53.000000Z" },
+ { "2019-04-24T16:06:53-0100", "2019-04-24T17:06:53.000000Z" },
+ { "2019-04-24 16:06:53+0430", "2019-04-24T11:36:53.000000Z" },
+ { "2019-04-24", "2019-04-24T00:00:00.000000Z" },
+ { 0, 0 },
+};
+
+TEST(utime_t, parse_date)
+{
+ for (unsigned i = 0; v[i][0]; ++i) {
+ cout << v[i][0] << " -> " << v[i][1] << std::endl;
+ utime_t t;
+ bool r = t.parse(string(v[i][0]));
+ ASSERT_TRUE(r);
+ ostringstream ss;
+ t.gmtime(ss);
+ ASSERT_EQ(ss.str(), v[i][1]);
+ }
+}