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 "chrome/browser/browsing_data/browsing_data_database_helper.h" | 5 #include "chrome/browser/browsing_data/browsing_data_database_helper.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "chrome/test/base/testing_profile.h" | 9 #include "chrome/test/base/testing_profile.h" |
10 #include "content/public/test/test_browser_thread.h" | 10 #include "content/public/test/test_browser_thread.h" |
11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
12 | 12 |
13 using content::BrowserThread; | 13 using content::BrowserThread; |
14 | 14 |
15 namespace { | 15 namespace { |
16 | 16 |
17 class CannedBrowsingDataDatabaseHelperTest : public testing::Test { | 17 class CannedBrowsingDataDatabaseHelperTest : public testing::Test { |
18 public: | 18 public: |
19 CannedBrowsingDataDatabaseHelperTest() | 19 CannedBrowsingDataDatabaseHelperTest() |
20 : ui_thread_(BrowserThread::UI, &message_loop_) { | 20 : ui_thread_(BrowserThread::UI, &message_loop_) { |
21 } | 21 } |
22 | 22 |
23 protected: | 23 protected: |
24 MessageLoop message_loop_; | 24 base::MessageLoop message_loop_; |
25 content::TestBrowserThread ui_thread_; | 25 content::TestBrowserThread ui_thread_; |
26 }; | 26 }; |
27 | 27 |
28 TEST_F(CannedBrowsingDataDatabaseHelperTest, Empty) { | 28 TEST_F(CannedBrowsingDataDatabaseHelperTest, Empty) { |
29 TestingProfile profile; | 29 TestingProfile profile; |
30 | 30 |
31 const GURL origin("http://host1:1/"); | 31 const GURL origin("http://host1:1/"); |
32 const char db[] = "db1"; | 32 const char db[] = "db1"; |
33 | 33 |
34 scoped_refptr<CannedBrowsingDataDatabaseHelper> helper( | 34 scoped_refptr<CannedBrowsingDataDatabaseHelper> helper( |
(...skipping 19 matching lines...) Expand all Loading... |
54 ASSERT_TRUE(helper->empty()); | 54 ASSERT_TRUE(helper->empty()); |
55 helper->AddDatabase(origin1, db, std::string()); | 55 helper->AddDatabase(origin1, db, std::string()); |
56 ASSERT_TRUE(helper->empty()); | 56 ASSERT_TRUE(helper->empty()); |
57 helper->AddDatabase(origin2, db, std::string()); | 57 helper->AddDatabase(origin2, db, std::string()); |
58 ASSERT_TRUE(helper->empty()); | 58 ASSERT_TRUE(helper->empty()); |
59 helper->Reset(); | 59 helper->Reset(); |
60 ASSERT_TRUE(helper->empty()); | 60 ASSERT_TRUE(helper->empty()); |
61 } | 61 } |
62 | 62 |
63 } // namespace | 63 } // namespace |
OLD | NEW |