blob: 951cb8b3791c5c025d5f6ecbeaa4b8306b9fba3d (
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
|
// Copyright (c) 2009 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 "webkit/appcache/appcache.h"
#include "webkit/appcache/appcache_host.h"
#include "webkit/appcache/appcache_service.h"
using appcache::AppCache;
using appcache::AppCacheEntry;
using appcache::AppCacheHost;
using appcache::AppCacheService;
namespace {
class AppCacheTest : public testing::Test {
};
} // namespace
TEST(AppCacheTest, CleanupUnusedCache) {
AppCacheService service;
AppCache* cache = new AppCache(&service, 111);
AppCacheHost host1(1, NULL);
AppCacheHost host2(2, NULL);
host1.set_selected_cache(cache);
host2.set_selected_cache(cache);
host1.set_selected_cache(NULL);
host2.set_selected_cache(NULL);
}
TEST(AppCacheTest, AddModifyEntry) {
AppCacheService service;
scoped_refptr<AppCache> cache = new AppCache(&service, 111);
const GURL kUrl1("http://foo.com");
AppCacheEntry entry1(AppCacheEntry::MASTER);
cache->AddEntry(kUrl1, entry1);
EXPECT_EQ(entry1.types(), cache->GetEntry(kUrl1)->types());
const GURL kUrl2("http://bar.com");
AppCacheEntry entry2(AppCacheEntry::FALLBACK);
cache->AddOrModifyEntry(kUrl2, entry2);
EXPECT_EQ(entry2.types(), cache->GetEntry(kUrl2)->types());
AppCacheEntry entry3(AppCacheEntry::EXPLICIT);
cache->AddOrModifyEntry(kUrl1, entry3);
EXPECT_EQ((AppCacheEntry::MASTER | AppCacheEntry::EXPLICIT),
cache->GetEntry(kUrl1)->types());
EXPECT_EQ(entry2.types(), cache->GetEntry(kUrl2)->types()); // unchanged
}
|