OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "testing/gtest/include/gtest/gtest.h" | 5 #include "testing/gtest/include/gtest/gtest.h" |
6 | 6 |
7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
8 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" | 8 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" |
9 #include "chrome/test/base/testing_profile.h" | 9 #include "chrome/test/base/testing_profile.h" |
10 | 10 |
11 namespace { | 11 namespace { |
12 | 12 |
13 typedef testing::Test CannedBrowsingDataIndexedDBHelperTest; | 13 typedef testing::Test CannedBrowsingDataIndexedDBHelperTest; |
14 | 14 |
15 TEST_F(CannedBrowsingDataIndexedDBHelperTest, Empty) { | 15 TEST_F(CannedBrowsingDataIndexedDBHelperTest, Empty) { |
16 const GURL origin("http://host1:1/"); | 16 const GURL origin("http://host1:1/"); |
17 const string16 description(ASCIIToUTF16("description")); | 17 const string16 description(ASCIIToUTF16("description")); |
18 | 18 |
| 19 TestingProfile profile; |
19 scoped_refptr<CannedBrowsingDataIndexedDBHelper> helper( | 20 scoped_refptr<CannedBrowsingDataIndexedDBHelper> helper( |
20 new CannedBrowsingDataIndexedDBHelper()); | 21 new CannedBrowsingDataIndexedDBHelper(&profile)); |
21 | 22 |
22 ASSERT_TRUE(helper->empty()); | 23 ASSERT_TRUE(helper->empty()); |
23 helper->AddIndexedDB(origin, description); | 24 helper->AddIndexedDB(origin, description); |
24 ASSERT_FALSE(helper->empty()); | 25 ASSERT_FALSE(helper->empty()); |
25 helper->Reset(); | 26 helper->Reset(); |
26 ASSERT_TRUE(helper->empty()); | 27 ASSERT_TRUE(helper->empty()); |
27 } | 28 } |
28 | 29 |
29 TEST_F(CannedBrowsingDataIndexedDBHelperTest, IgnoreExtensionsAndDevTools) { | 30 TEST_F(CannedBrowsingDataIndexedDBHelperTest, IgnoreExtensionsAndDevTools) { |
30 const GURL origin1("chrome-extension://abcdefghijklmnopqrstuvwxyz/"); | 31 const GURL origin1("chrome-extension://abcdefghijklmnopqrstuvwxyz/"); |
31 const GURL origin2("chrome-devtools://abcdefghijklmnopqrstuvwxyz/"); | 32 const GURL origin2("chrome-devtools://abcdefghijklmnopqrstuvwxyz/"); |
32 const string16 description(ASCIIToUTF16("description")); | 33 const string16 description(ASCIIToUTF16("description")); |
33 | 34 |
| 35 TestingProfile profile; |
34 scoped_refptr<CannedBrowsingDataIndexedDBHelper> helper( | 36 scoped_refptr<CannedBrowsingDataIndexedDBHelper> helper( |
35 new CannedBrowsingDataIndexedDBHelper()); | 37 new CannedBrowsingDataIndexedDBHelper(&profile)); |
36 | 38 |
37 ASSERT_TRUE(helper->empty()); | 39 ASSERT_TRUE(helper->empty()); |
38 helper->AddIndexedDB(origin1, description); | 40 helper->AddIndexedDB(origin1, description); |
39 ASSERT_TRUE(helper->empty()); | 41 ASSERT_TRUE(helper->empty()); |
40 helper->AddIndexedDB(origin2, description); | 42 helper->AddIndexedDB(origin2, description); |
41 ASSERT_TRUE(helper->empty()); | 43 ASSERT_TRUE(helper->empty()); |
42 } | 44 } |
43 | 45 |
44 } // namespace | 46 } // namespace |
OLD | NEW |