OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "net/disk_cache/disk_cache_test_base.h" | 5 #include "net/disk_cache/disk_cache_test_base.h" |
6 | 6 |
7 #include "net/disk_cache/backend_impl.h" | 7 #include "net/disk_cache/backend_impl.h" |
8 #include "net/disk_cache/disk_cache_test_util.h" | 8 #include "net/disk_cache/disk_cache_test_util.h" |
9 #include "net/disk_cache/mem_backend_impl.h" | 9 #include "net/disk_cache/mem_backend_impl.h" |
10 | 10 |
| 11 void DiskCacheTest::TearDown() { |
| 12 MessageLoop::current()->RunAllPending(); |
| 13 } |
| 14 |
11 void DiskCacheTestWithCache::SetMaxSize(int size) { | 15 void DiskCacheTestWithCache::SetMaxSize(int size) { |
12 size_ = size; | 16 size_ = size; |
13 if (cache_impl_) | 17 if (cache_impl_) |
14 EXPECT_TRUE(cache_impl_->SetMaxSize(size)); | 18 EXPECT_TRUE(cache_impl_->SetMaxSize(size)); |
15 | 19 |
16 if (mem_cache_) | 20 if (mem_cache_) |
17 EXPECT_TRUE(mem_cache_->SetMaxSize(size)); | 21 EXPECT_TRUE(mem_cache_->SetMaxSize(size)); |
18 } | 22 } |
19 | 23 |
20 void DiskCacheTestWithCache::InitCache() { | 24 void DiskCacheTestWithCache::InitCache() { |
(...skipping 45 matching lines...) Loading... |
66 ASSERT_TRUE(NULL != cache_); | 70 ASSERT_TRUE(NULL != cache_); |
67 | 71 |
68 if (size_) | 72 if (size_) |
69 EXPECT_TRUE(cache_impl_->SetMaxSize(size_)); | 73 EXPECT_TRUE(cache_impl_->SetMaxSize(size_)); |
70 | 74 |
71 ASSERT_TRUE(cache_impl_->Init()); | 75 ASSERT_TRUE(cache_impl_->Init()); |
72 } | 76 } |
73 | 77 |
74 | 78 |
75 void DiskCacheTestWithCache::TearDown() { | 79 void DiskCacheTestWithCache::TearDown() { |
| 80 MessageLoop::current()->RunAllPending(); |
76 delete cache_; | 81 delete cache_; |
77 | 82 |
78 if (!memory_only_) { | 83 if (!memory_only_) { |
79 std::wstring path = GetCachePath(); | 84 std::wstring path = GetCachePath(); |
80 EXPECT_TRUE(CheckCacheIntegrity(path)); | 85 EXPECT_TRUE(CheckCacheIntegrity(path)); |
81 } | 86 } |
82 | 87 |
83 PlatformTest::TearDown(); | 88 PlatformTest::TearDown(); |
84 } | 89 } |
85 | 90 |
(...skipping 16 matching lines...) Loading... |
102 if (size_) | 107 if (size_) |
103 cache_impl_->SetMaxSize(size_); | 108 cache_impl_->SetMaxSize(size_); |
104 ASSERT_TRUE(cache_impl_->Init()); | 109 ASSERT_TRUE(cache_impl_->Init()); |
105 } | 110 } |
106 | 111 |
107 void DiskCacheTestWithCache::SetTestMode() { | 112 void DiskCacheTestWithCache::SetTestMode() { |
108 ASSERT_TRUE(implementation_ && !memory_only_); | 113 ASSERT_TRUE(implementation_ && !memory_only_); |
109 cache_impl_->SetUnitTestMode(); | 114 cache_impl_->SetUnitTestMode(); |
110 } | 115 } |
111 | 116 |
OLD | NEW |