Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(495)

Unified Diff: webkit/quota/quota_temporary_storage_evictor_unittest.cc

Issue 7002024: Implement QuotaTemporaryStorageEvictor. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Rebased and nit fix. Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/quota/quota_temporary_storage_evictor_unittest.cc
diff --git a/webkit/quota/quota_temporary_storage_evictor_unittest.cc b/webkit/quota/quota_temporary_storage_evictor_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b50af2659e2008ed77abca36ce91dc5557cad127
--- /dev/null
+++ b/webkit/quota/quota_temporary_storage_evictor_unittest.cc
@@ -0,0 +1,219 @@
+// Copyright (c) 2011 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 "testing/gtest/include/gtest/gtest.h"
+
+#include <list>
+#include <map>
+
+#include "base/memory/scoped_ptr.h"
+#include "base/message_loop.h"
+#include "base/task.h"
+#include "webkit/quota/mock_storage_client.h"
+#include "webkit/quota/quota_temporary_storage_evictor.h"
+
+namespace quota {
+
+class QuotaTemporaryStorageEvictorTest;
+
+namespace {
+
+class MockQuotaEvictionHandler : public quota::QuotaEvictionHandler {
+ public:
+ MockQuotaEvictionHandler(QuotaTemporaryStorageEvictorTest *test)
+ : quota_(0),
+ available_space_(0),
+ test_(test),
+ task_for_get_usage_and_quota_(NULL) {}
+ virtual ~MockQuotaEvictionHandler() {
+ if (task_for_get_usage_and_quota_)
+ delete task_for_get_usage_and_quota_;
+ }
+
+ virtual void EvictOriginData(
+ const GURL& origin,
+ StorageType type,
+ EvictOriginDataCallback* callback) OVERRIDE {
+ RemoveOrigin(origin);
+ callback->Run(quota::kQuotaStatusOk);
+ delete callback;
+ }
+
+ virtual void GetUsageAndQuotaForEviction(
+ GetUsageAndQuotaForEvictionCallback* callback) OVERRIDE {
+ if (task_for_get_usage_and_quota_)
+ task_for_get_usage_and_quota_->Run();
kinuko 2011/05/23 04:34:53 don't we need to delete the task?
Dai Mikurube (NOT FULLTIME) 2011/05/23 05:53:37 Ah, the task should be deleted, but not here. The
+ callback->Run(quota::kQuotaStatusOk, GetUsage(), quota_, available_space_);
+ delete callback;
+ }
+
+ virtual void GetLRUOrigin(
+ StorageType type,
+ GetLRUOriginCallback* callback) OVERRIDE {
+ if (origin_order_.empty())
+ callback->Run(GURL());
+ else
+ callback->Run(origin_order_.front());
+ delete callback;
+ }
+
+ int64 GetUsage() const {
+ int64 total_usage = 0;
+ for (std::map<GURL, int64>::const_iterator p = origins_.begin();
+ p != origins_.end();
+ ++p)
+ total_usage += p->second;
+ return total_usage;
+ }
+
+ void set_quota(int64 quota) {
+ quota_ = quota;
+ }
+ void set_available_space(int64 available_space) {
+ available_space_ = available_space;
+ }
+ void set_task_for_get_usage_and_quota(CancelableTask* task) {
+ task_for_get_usage_and_quota_ = task;
+ }
+
+ void AccessOrigin(const GURL& origin) {
+ int64 origin_usage = RemoveOrigin(origin);
+ if (origin_usage >= 0)
+ AddPseudoOrigin(origin, origin_usage);
+ }
+
+ void AddPseudoOrigin(const GURL& origin, int64 usage) {
kinuko 2011/05/23 04:34:53 Does this method expect the caller to call RemoveO
Dai Mikurube (NOT FULLTIME) 2011/05/23 05:53:37 Your comment includes two messages... 1) rename th
kinuko 2011/05/23 07:29:51 Keeping 'AccessOrigin' sounds ok to me actually.
Dai Mikurube (NOT FULLTIME) 2011/05/23 09:50:37 Ok, finally, I added such comments at AccessOrigin
kinuko 2011/05/23 12:10:29 Apparently this was wrong, please nvm.
+ RemoveOrigin(origin);
+ origin_order_.push_back(origin);
+ origins_[origin] = usage;
+ }
+
+ private:
+ int64 RemoveOrigin(const GURL& origin) {
+ int64 origin_usage;
+ if (origins_.find(origin) == origins_.end())
kinuko 2011/05/23 04:34:53 EXPECT_TRUE?
Dai Mikurube (NOT FULLTIME) 2011/05/23 05:53:37 As replied above, I designed this method to be cal
+ return -1;
+ else
+ origin_usage = origins_[origin];
+
+ origins_.erase(origin);
+ origin_order_.remove(origin);
+ return origin_usage;
+ }
+
+ int64 quota_;
+ int64 available_space_;
+ std::list<GURL> origin_order_;
+ std::map<GURL, int64> origins_;
+
+ QuotaTemporaryStorageEvictorTest *test_;
+ CancelableTask* task_for_get_usage_and_quota_;
kinuko 2011/05/23 04:34:53 Can this task be scoped_ptr?
Dai Mikurube (NOT FULLTIME) 2011/05/23 05:53:37 Exactly. Done.
+};
+
+} // anonymous namespace
+
+class QuotaTemporaryStorageEvictorTest : public testing::Test {
+ public:
+ QuotaTemporaryStorageEvictorTest()
+ : num_get_usage_and_quota_for_eviction_(0),
+ runnable_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)) {}
+
+ void SetUp() {
+ quota_eviction_handler_.reset(new MockQuotaEvictionHandler(this));
+
+ // Run repeatedly in the single RunAllPending() when interval_ms == 0
+ temporary_storage_evictor_.reset(new QuotaTemporaryStorageEvictor(
+ quota_eviction_handler_.get(),
+ 0, base::MessageLoopProxy::CreateForCurrentThread()));
+ }
+
+ void TearDown() {
+ temporary_storage_evictor_.reset();
+ quota_eviction_handler_.reset();
+ MessageLoop::current()->RunAllPending();
+ }
+
+ void TaskForRepeatTestAfterGetUsageAndQuota() {
+ switch (num_get_usage_and_quota_for_eviction_) {
+ case 1:
+ EXPECT_EQ(962-292, quota_eviction_handler()->GetUsage());
kinuko 2011/05/23 04:34:53 Please separate out these test-dependent constants
Dai Mikurube (NOT FULLTIME) 2011/05/23 05:53:37 Done.
+ quota_eviction_handler()->AddPseudoOrigin(
+ GURL("http://www.hoge.com"), 280);
+ quota_eviction_handler()->AccessOrigin(GURL("http://www.foo.com"));
+ EXPECT_EQ(962-292+280, quota_eviction_handler()->GetUsage());
+ break;
+ case 2:
+ EXPECT_EQ(962-292+280-120, quota_eviction_handler()->GetUsage());
+ temporary_storage_evictor()->set_repeated_eviction(false);
+ break;
+ }
+ ++num_get_usage_and_quota_for_eviction_;
+ }
+
+ protected:
+ MockQuotaEvictionHandler* quota_eviction_handler() const {
+ return static_cast<MockQuotaEvictionHandler*>(
+ quota_eviction_handler_.get());
+ }
+
+ QuotaTemporaryStorageEvictor* temporary_storage_evictor() const {
+ return temporary_storage_evictor_.get();
+ }
+
+ scoped_ptr<QuotaEvictionHandler> quota_eviction_handler_;
+ scoped_ptr<QuotaTemporaryStorageEvictor> temporary_storage_evictor_;
+
+ int num_get_usage_and_quota_for_eviction_;
+
+ ScopedRunnableMethodFactory<QuotaTemporaryStorageEvictorTest>
+ runnable_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(QuotaTemporaryStorageEvictorTest);
+};
+
+TEST_F(QuotaTemporaryStorageEvictorTest, SimpleEvictionTest) {
+ quota_eviction_handler()->AddPseudoOrigin(GURL("http://www.baz.com"), 3000);
+ quota_eviction_handler()->AddPseudoOrigin(GURL("http://www.bar.com"), 200);
+ quota_eviction_handler()->AddPseudoOrigin(GURL("http://www.foo.com"), 500);
+ quota_eviction_handler()->set_quota(4000);
+ quota_eviction_handler()->set_available_space(1000000000);
+ EXPECT_EQ(3700, quota_eviction_handler()->GetUsage());
+ temporary_storage_evictor()->Start();
+ MessageLoop::current()->RunAllPending();
+ EXPECT_EQ(700, quota_eviction_handler()->GetUsage());
+}
+
+TEST_F(QuotaTemporaryStorageEvictorTest, MultipleEvictionTest) {
+ quota_eviction_handler()->AddPseudoOrigin(GURL("http://www.hoge.com"), 20);
+ quota_eviction_handler()->AddPseudoOrigin(GURL("http://www.baz.com"), 2900);
+ quota_eviction_handler()->AddPseudoOrigin(GURL("http://www.bar.com"), 450);
+ quota_eviction_handler()->AddPseudoOrigin(GURL("http://www.foo.com"), 400);
+ quota_eviction_handler()->set_quota(4000);
+ quota_eviction_handler()->set_available_space(1000000000);
+ EXPECT_EQ(3770, quota_eviction_handler()->GetUsage());
+ temporary_storage_evictor()->Start();
+ MessageLoop::current()->RunAllPending();
+ EXPECT_EQ(850, quota_eviction_handler()->GetUsage());
+}
+
+TEST_F(QuotaTemporaryStorageEvictorTest, RepeatedEvictionTest) {
+ quota_eviction_handler()->AddPseudoOrigin(GURL("http://www.ban.com"), 292);
+ quota_eviction_handler()->AddPseudoOrigin(GURL("http://www.baz.com"), 120);
+ quota_eviction_handler()->AddPseudoOrigin(GURL("http://www.bar.com"), 150);
+ quota_eviction_handler()->AddPseudoOrigin(GURL("http://www.foo.com"), 400);
+ quota_eviction_handler()->set_quota(1000);
+ quota_eviction_handler()->set_available_space(1000000000);
+ quota_eviction_handler()->set_task_for_get_usage_and_quota(
+ runnable_factory_.NewRunnableMethod(&QuotaTemporaryStorageEvictorTest::
+ TaskForRepeatTestAfterGetUsageAndQuota));
+ EXPECT_EQ(962, quota_eviction_handler()->GetUsage());
+ temporary_storage_evictor()->set_repeated_eviction(true);
+ temporary_storage_evictor()->Start();
+ MessageLoop::current()->RunAllPending();
+ EXPECT_EQ(962-292+280-120-150, quota_eviction_handler()->GetUsage());
kinuko 2011/05/23 04:34:53 EXPECT_EQ(2, num_get_usage_and_quota_for_eviction(
Dai Mikurube (NOT FULLTIME) 2011/05/23 05:53:37 Done, but GetUsageAndQuotaForEviction() is called
+}
+
+// TODO(dmikurube): Add tests for eviction by available disk space.
+
+} // namespace quota

Powered by Google App Engine
This is Rietveld 408576698