summaryrefslogtreecommitdiffstats
path: root/chrome/common/time_format_unittest.cc
blob: dd6778ab5ce23bc3106e157f607d451bce723d27 (plain)
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
// 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/basictypes.h"
#include "base/time.h"
#include "chrome/common/l10n_util.h"
#include "chrome/common/time_format.h"
#include "testing/gtest/include/gtest/gtest.h"

TEST(TimeFormat, RelativeDate) {
  Time now = Time::Now();
  std::wstring today_str = TimeFormat::RelativeDate(now, NULL);
  EXPECT_EQ(L"Today", today_str);

  Time yesterday = now - TimeDelta::FromDays(1);
  std::wstring yesterday_str = TimeFormat::RelativeDate(yesterday, NULL);
  EXPECT_EQ(L"Yesterday", yesterday_str);

  Time two_days_ago = now - TimeDelta::FromDays(2);
  std::wstring two_days_ago_str = TimeFormat::RelativeDate(two_days_ago, NULL);
  EXPECT_TRUE(two_days_ago_str.empty());

  Time a_week_ago = now - TimeDelta::FromDays(7);
  std::wstring a_week_ago_str = TimeFormat::RelativeDate(a_week_ago, NULL);
  EXPECT_TRUE(a_week_ago_str.empty());
}

namespace {
void TestRemainingTime(const TimeDelta delta,
                       const std::wstring& expected_short,
                       const std::wstring& expected_long) {
  EXPECT_EQ(expected_short, TimeFormat::TimeRemainingShort(delta));
  EXPECT_EQ(expected_long, TimeFormat::TimeRemaining(delta));
}

} // namespace

TEST(TimeFormat, RemainingTime) {
  const TimeDelta one_day = TimeDelta::FromDays(1);
  const TimeDelta three_days = TimeDelta::FromDays(3);
  const TimeDelta one_hour = TimeDelta::FromHours(1);
  const TimeDelta four_hours = TimeDelta::FromHours(4);
  const TimeDelta one_min = TimeDelta::FromMinutes(1);
  const TimeDelta three_mins = TimeDelta::FromMinutes(3);
  const TimeDelta one_sec = TimeDelta::FromSeconds(1);
  const TimeDelta five_secs = TimeDelta::FromSeconds(5);
  const TimeDelta twohundred_millisecs = TimeDelta::FromMilliseconds(200);

  // TODO(jungshik) : These test only pass when the OS locale is 'en'.
  // We need to add SetUp() and TearDown() to set the locale to 'en'.
  TestRemainingTime(twohundred_millisecs, L"0 secs", L"0 secs left");
  TestRemainingTime(one_sec - twohundred_millisecs, L"0 secs", L"0 secs left");
  TestRemainingTime(one_sec + twohundred_millisecs, L"1 sec", L"1 sec left");
  TestRemainingTime(five_secs + twohundred_millisecs, L"5 secs", L"5 secs left");
  TestRemainingTime(one_min + five_secs, L"1 min", L"1 min left");
  TestRemainingTime(three_mins + twohundred_millisecs,
                    L"3 mins", L"3 mins left");
  TestRemainingTime(one_hour + five_secs, L"1 hour", L"1 hour left");
  TestRemainingTime(four_hours + five_secs, L"4 hours", L"4 hours left");
  TestRemainingTime(one_day + five_secs, L"1 day", L"1 day left");
  TestRemainingTime(three_days, L"3 days", L"3 days left");
  TestRemainingTime(three_days + four_hours, L"3 days", L"3 days left");
}