summaryrefslogtreecommitdiffstats
path: root/sync/engine/throttled_data_type_tracker_unittest.cc
blob: a2d894f5ad1711c1eda9995bb99fbf697bf7166a (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
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "sync/engine/throttled_data_type_tracker.h"

#include "sync/internal_api/public/base/model_type.h"
#include "testing/gtest/include/gtest/gtest.h"

using base::TimeDelta;
using base::TimeTicks;

namespace syncer {

TEST(ThrottledDataTypeTrackerTest, AddUnthrottleTimeTest) {
  const ModelTypeSet types(BOOKMARKS, PASSWORDS);

  ThrottledDataTypeTracker throttler(NULL);
  TimeTicks now = TimeTicks::Now();
  throttler.SetUnthrottleTime(types, now);

  EXPECT_EQ(throttler.unthrottle_times_.size(), 2U);
  EXPECT_EQ(throttler.unthrottle_times_[BOOKMARKS], now);
  EXPECT_EQ(throttler.unthrottle_times_[PASSWORDS], now);
}

TEST(ThrottledDataTypeTrackerTest, GetCurrentlyThrottledTypesTest) {
  const ModelTypeSet types(BOOKMARKS, PASSWORDS);

  ThrottledDataTypeTracker throttler(NULL);
  TimeTicks now = TimeTicks::Now();

  // Now update the throttled types with time set to 10 seconds earlier from
  // now.
  throttler.SetUnthrottleTime(types, now - TimeDelta::FromSeconds(10));
  throttler.PruneUnthrottledTypes(TimeTicks::Now());
  EXPECT_TRUE(throttler.GetThrottledTypes().Empty());

  // Now update the throttled types with time set to 2 hours from now.
  throttler.SetUnthrottleTime(types, now + TimeDelta::FromSeconds(1200));
  throttler.PruneUnthrottledTypes(TimeTicks::Now());
  EXPECT_TRUE(throttler.GetThrottledTypes().Equals(types));
}

// Have two data types whose throttling is set to expire at different times.
TEST(ThrottledDataTypeTrackerTest, UnthrottleSomeTypesTest) {
  const ModelTypeSet long_throttled(BOOKMARKS);
  const ModelTypeSet short_throttled(PASSWORDS);

  const TimeTicks start_time = TimeTicks::Now();
  const TimeTicks short_throttle_time = start_time + TimeDelta::FromSeconds(1);
  const TimeTicks long_throttle_time = start_time + TimeDelta::FromSeconds(20);
  const TimeTicks in_between_time = start_time + TimeDelta::FromSeconds(5);

  ThrottledDataTypeTracker throttler(NULL);

  throttler.SetUnthrottleTime(long_throttled, long_throttle_time);
  throttler.SetUnthrottleTime(short_throttled, short_throttle_time);
  EXPECT_TRUE(throttler.GetThrottledTypes().Equals(
          Union(short_throttled, long_throttled)));

  throttler.PruneUnthrottledTypes(in_between_time);
  EXPECT_TRUE(throttler.GetThrottledTypes().Equals(long_throttled));
}

}  // namespace syncer