blob: 057132d9f9c59b7ede3d5dc094e5c9455c266295 [file] [log] [blame]
James Hawkinse78ea772017-03-24 11:43:02 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
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 "android-base/chrono_utils.h"
18
19#include <time.h>
20
21#include <chrono>
22
23#include <gtest/gtest.h>
24
25namespace android {
26namespace base {
27
28std::chrono::seconds GetBootTimeSeconds() {
29 struct timespec now;
Josh Gao0b35b182017-05-01 21:56:28 +000030 clock_gettime(CLOCK_BOOTTIME, &now);
James Hawkinse78ea772017-03-24 11:43:02 -070031
32 auto now_tp = boot_clock::time_point(std::chrono::seconds(now.tv_sec) +
33 std::chrono::nanoseconds(now.tv_nsec));
34 return std::chrono::duration_cast<std::chrono::seconds>(now_tp.time_since_epoch());
35}
36
37// Tests (at least) the seconds accuracy of the boot_clock::now() method.
38TEST(ChronoUtilsTest, BootClockNowSeconds) {
39 auto now = GetBootTimeSeconds();
40 auto boot_seconds =
41 std::chrono::duration_cast<std::chrono::seconds>(boot_clock::now().time_since_epoch());
42 EXPECT_EQ(now, boot_seconds);
43}
44
45} // namespace base
Josh Gao0b35b182017-05-01 21:56:28 +000046} // namespace android