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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/views/relaunch_notification/relaunch_required_timer_internal.h"
#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"
TEST(RelaunchRequiredTimerTest, ComputeDeadlineDelta) {
// A tiny bit over three days: round to three days.
EXPECT_EQ(relaunch_notification::ComputeDeadlineDelta(base::Days(3) +
base::Seconds(0.1)),
base::Days(3));
// Exactly three days: three days.
EXPECT_EQ(relaunch_notification::ComputeDeadlineDelta(base::Days(3)),
base::Days(3));
// Almost three days: round to three days.
EXPECT_EQ(relaunch_notification::ComputeDeadlineDelta(base::Days(3) -
base::Hours(1)),
base::Days(3));
// Just shy of two days: round up to two days.
EXPECT_EQ(relaunch_notification::ComputeDeadlineDelta(base::Days(2) -
base::Minutes(1)),
base::Days(2));
// A bit over 47 hours: round down to 47 hours.
EXPECT_EQ(relaunch_notification::ComputeDeadlineDelta(base::Days(2) -
base::Minutes(45)),
base::Hours(47));
// Less than one and a half hours: round down to one hour.
EXPECT_EQ(relaunch_notification::ComputeDeadlineDelta(base::Hours(1) +
base::Minutes(23)),
base::Hours(1));
// Exactly one hour: one hour.
EXPECT_EQ(relaunch_notification::ComputeDeadlineDelta(base::Hours(1)),
base::Hours(1));
// A bit over three minutes: round down to three minutes.
EXPECT_EQ(relaunch_notification::ComputeDeadlineDelta(base::Minutes(3) +
base::Seconds(12)),
base::Minutes(3));
// Exactly two minutes: two minutes.
EXPECT_EQ(relaunch_notification::ComputeDeadlineDelta(base::Minutes(2)),
base::Minutes(2));
// Nearly one minute: one minute.
EXPECT_EQ(relaunch_notification::ComputeDeadlineDelta(
base::Milliseconds(60 * 1000 - 250)),
base::Minutes(1));
// Just over two seconds: two seconds.
EXPECT_EQ(relaunch_notification::ComputeDeadlineDelta(
base::Milliseconds(2 * 1000 + 250)),
base::Seconds(2));
// Exactly one second: one second.
EXPECT_EQ(relaunch_notification::ComputeDeadlineDelta(base::Seconds(1)),
base::Seconds(1));
// Next to nothing: zero.
EXPECT_EQ(
relaunch_notification::ComputeDeadlineDelta(base::Milliseconds(250)),
base::TimeDelta());
}
TEST(RelaunchRequiredTimerTest, ComputeNextRefreshDelta) {
// Over three days: align to the next smallest day boundary.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Days(3) +
base::Seconds(0.1)),
base::Days(1) + base::Seconds(0.1));
// Exactly three days: align to the next smallest day boundary.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Days(3)),
base::Days(1));
// Almost three days: align to two days.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Days(3) -
base::Hours(1)),
base::Hours(23));
// A bit over two days: align to 47 hours.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Days(2) +
base::Hours(1)),
base::Hours(2));
// Exactly two days: align to 47 hours.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Days(2)),
base::Hours(1));
// Less than one and a half hours: align to 59 minutes.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Hours(1) +
base::Minutes(23)),
base::Minutes(24));
// Exactly one hour: align to 59 minutes.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Hours(1)),
base::Minutes(1));
// Between one and two minutes: align to 59 seconds.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Minutes(1) +
base::Seconds(12)),
base::Seconds(13));
// Exactly one minute: align to 59 seconds.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Minutes(1)),
base::Seconds(1));
// One and a half seconds: align to 1 second.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Seconds(1.5)),
base::Seconds(0.5));
// Just over one second: align to 0 seconds.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Seconds(1.1)),
base::Seconds(1.1));
// Exactly one second: align to 0 seconds.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Seconds(1)),
base::Seconds(1));
// Less than one second: align to 0 seconds.
EXPECT_EQ(relaunch_notification::ComputeNextRefreshDelta(base::Seconds(0.1)),
base::Seconds(0.1));
}
|