Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/ntp_snippets/request_throttler.h" | 5 #include "components/ntp_snippets/request_throttler.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
| 10 #include "components/ntp_snippets/pref_names.h" | 10 #include "components/ntp_snippets/pref_names.h" |
| 11 #include "components/prefs/pref_registry_simple.h" | 11 #include "components/prefs/pref_registry_simple.h" |
| 12 #include "components/prefs/testing_pref_service.h" | 12 #include "components/prefs/testing_pref_service.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 14 |
| 15 namespace { | 15 namespace { |
| 16 const int kCounterQuota = 2; | 16 const int kCounterQuota = 2; |
| 17 } // namespace | 17 } // namespace |
| 18 | 18 |
| 19 namespace ntp_snippets { | 19 namespace ntp_snippets { |
| 20 | 20 |
| 21 class RequestThrottlerTest : public testing::Test { | 21 class RequestThrottlerTest : public testing::Test { |
| 22 public: | 22 public: |
| 23 RequestThrottlerTest() { | 23 RequestThrottlerTest() { |
| 24 RequestThrottler::RegisterProfilePrefs(test_prefs_.registry()); | 24 RequestThrottler::RegisterProfilePrefs(test_prefs_.registry()); |
| 25 // Use any arbitrary RequestType for this unittest. | 25 // Use any arbitrary RequestType for this unittest. |
| 26 throttler_.reset(new RequestThrottler( | 26 throttler_.reset(new RequestThrottler( |
| 27 &test_prefs_, RequestThrottler::RequestType::CONTENT_SUGGESTION_FETCHER, | 27 &test_prefs_, |
| 28 kCounterQuota)); | 28 RequestThrottler::RequestType::CONTENT_SUGGESTION_FETCHER)); |
| 29 throttler_->quota_ = kCounterQuota; | |
|
jkrcal
2016/07/26 10:05:07
Marc, moving the quota into the RequestTypeInfo co
Marc Treib
2016/07/26 10:10:17
I guess it's a matter of preference; I've seen bot
| |
| 29 } | 30 } |
| 30 | 31 |
| 31 protected: | 32 protected: |
| 32 TestingPrefServiceSimple test_prefs_; | 33 TestingPrefServiceSimple test_prefs_; |
| 33 std::unique_ptr<RequestThrottler> throttler_; | 34 std::unique_ptr<RequestThrottler> throttler_; |
| 34 | 35 |
| 35 private: | 36 private: |
| 36 DISALLOW_COPY_AND_ASSIGN(RequestThrottlerTest); | 37 DISALLOW_COPY_AND_ASSIGN(RequestThrottlerTest); |
| 37 }; | 38 }; |
| 38 | 39 |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 62 // yesterday. | 63 // yesterday. |
| 63 int now_day = (base::Time::Now() - base::Time::UnixEpoch()).InDays(); | 64 int now_day = (base::Time::Now() - base::Time::UnixEpoch()).InDays(); |
| 64 test_prefs_.SetInteger(ntp_snippets::prefs::kSnippetFetcherQuotaDay, | 65 test_prefs_.SetInteger(ntp_snippets::prefs::kSnippetFetcherQuotaDay, |
| 65 now_day - 1); | 66 now_day - 1); |
| 66 | 67 |
| 67 // The quota should get reset as the day has changed. | 68 // The quota should get reset as the day has changed. |
| 68 EXPECT_TRUE(throttler_->DemandQuotaForRequest(false)); | 69 EXPECT_TRUE(throttler_->DemandQuotaForRequest(false)); |
| 69 } | 70 } |
| 70 | 71 |
| 71 } // namespace ntp_snippets | 72 } // namespace ntp_snippets |
| OLD | NEW |