OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "base/scoped_ptr.h" | 5 #include "base/scoped_ptr.h" |
6 #include "testing/gtest/include/gtest/gtest.h" | 6 #include "testing/gtest/include/gtest/gtest.h" |
7 #include "webkit/appcache/appcache.h" | 7 #include "webkit/appcache/appcache.h" |
8 #include "webkit/appcache/appcache_group.h" | 8 #include "webkit/appcache/appcache_group.h" |
9 #include "webkit/appcache/appcache_host.h" | 9 #include "webkit/appcache/appcache_host.h" |
10 #include "webkit/appcache/mock_appcache_service.h" | 10 #include "webkit/appcache/mock_appcache_service.h" |
11 | 11 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 EXPECT_EQ(reinterpret_cast<void*>(3), last_callback_param_); | 115 EXPECT_EQ(reinterpret_cast<void*>(3), last_callback_param_); |
116 } | 116 } |
117 | 117 |
118 TEST_F(AppCacheHostTest, SelectNoCache) { | 118 TEST_F(AppCacheHostTest, SelectNoCache) { |
119 // Reset our mock frontend | 119 // Reset our mock frontend |
120 mock_frontend_.last_cache_id_ = -333; | 120 mock_frontend_.last_cache_id_ = -333; |
121 mock_frontend_.last_host_id_ = -333; | 121 mock_frontend_.last_host_id_ = -333; |
122 mock_frontend_.last_status_ = OBSOLETE; | 122 mock_frontend_.last_status_ = OBSOLETE; |
123 | 123 |
124 AppCacheHost host(1, &mock_frontend_, &service_); | 124 AppCacheHost host(1, &mock_frontend_, &service_); |
125 host.SelectCache(GURL("http://whatever/"), kNoCacheId, GURL::EmptyGURL()); | 125 host.SelectCache(GURL("http://whatever/"), kNoCacheId, GURL()); |
126 | 126 |
127 // We should have received an OnCacheSelected msg | 127 // We should have received an OnCacheSelected msg |
128 EXPECT_EQ(1, mock_frontend_.last_host_id_); | 128 EXPECT_EQ(1, mock_frontend_.last_host_id_); |
129 EXPECT_EQ(kNoCacheId, mock_frontend_.last_cache_id_); | 129 EXPECT_EQ(kNoCacheId, mock_frontend_.last_cache_id_); |
130 EXPECT_EQ(UNCACHED, mock_frontend_.last_status_); | 130 EXPECT_EQ(UNCACHED, mock_frontend_.last_status_); |
131 | 131 |
132 // Otherwise, see that it respond as if there is no cache selected. | 132 // Otherwise, see that it respond as if there is no cache selected. |
133 EXPECT_EQ(1, host.host_id()); | 133 EXPECT_EQ(1, host.host_id()); |
134 EXPECT_EQ(&service_, host.service()); | 134 EXPECT_EQ(&service_, host.service()); |
135 EXPECT_EQ(&mock_frontend_, host.frontend()); | 135 EXPECT_EQ(&mock_frontend_, host.frontend()); |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 EXPECT_EQ(UNCACHED, last_status_result_); | 228 EXPECT_EQ(UNCACHED, last_status_result_); |
229 EXPECT_EQ(reinterpret_cast<void*>(1), last_callback_param_); | 229 EXPECT_EQ(reinterpret_cast<void*>(1), last_callback_param_); |
230 } | 230 } |
231 | 231 |
232 TEST_F(AppCacheHostTest, SetSwappableCache) { | 232 TEST_F(AppCacheHostTest, SetSwappableCache) { |
233 AppCacheHost host(1, &mock_frontend_, &service_); | 233 AppCacheHost host(1, &mock_frontend_, &service_); |
234 host.SetSwappableCache(NULL); | 234 host.SetSwappableCache(NULL); |
235 EXPECT_FALSE(host.swappable_cache_.get()); | 235 EXPECT_FALSE(host.swappable_cache_.get()); |
236 | 236 |
237 scoped_refptr<AppCacheGroup> group1 = | 237 scoped_refptr<AppCacheGroup> group1 = |
238 new AppCacheGroup(&service_, GURL::EmptyGURL(), | 238 new AppCacheGroup(&service_, GURL(), service_.storage()->NewGroupId()); |
239 service_.storage()->NewGroupId()); | |
240 host.SetSwappableCache(group1); | 239 host.SetSwappableCache(group1); |
241 EXPECT_FALSE(host.swappable_cache_.get()); | 240 EXPECT_FALSE(host.swappable_cache_.get()); |
242 | 241 |
243 AppCache* cache1 = new AppCache(&service_, 111); | 242 AppCache* cache1 = new AppCache(&service_, 111); |
244 cache1->set_complete(true); | 243 cache1->set_complete(true); |
245 group1->AddCache(cache1); | 244 group1->AddCache(cache1); |
246 host.SetSwappableCache(group1); | 245 host.SetSwappableCache(group1); |
247 EXPECT_EQ(cache1, host.swappable_cache_.get()); | 246 EXPECT_EQ(cache1, host.swappable_cache_.get()); |
248 | 247 |
249 mock_frontend_.last_host_id_ = -222; // to verify we received OnCacheSelected | 248 mock_frontend_.last_host_id_ = -222; // to verify we received OnCacheSelected |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 group2->RemoveCache(cache5); | 292 group2->RemoveCache(cache5); |
294 EXPECT_FALSE(group2->HasCache()); | 293 EXPECT_FALSE(group2->HasCache()); |
295 host.group_being_updated_ = group2; | 294 host.group_being_updated_ = group2; |
296 host.OnUpdateComplete(group2); | 295 host.OnUpdateComplete(group2); |
297 EXPECT_FALSE(host.group_being_updated_); | 296 EXPECT_FALSE(host.group_being_updated_); |
298 EXPECT_FALSE(host.swappable_cache_.get()); // group2 had no newest cache | 297 EXPECT_FALSE(host.swappable_cache_.get()); // group2 had no newest cache |
299 } | 298 } |
300 | 299 |
301 } // namespace appcache | 300 } // namespace appcache |
302 | 301 |
OLD | NEW |