| // Copyright 2012 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include <string> |
| |
| #include "base/files/file_path.h" |
| #include "base/functional/bind.h" |
| #include "base/functional/callback_helpers.h" |
| #include "base/memory/ref_counted.h" |
| #include "base/memory/scoped_refptr.h" |
| #include "base/strings/utf_string_conversions.h" |
| #include "components/browsing_data/content/browsing_data_helper_browsertest.h" |
| #include "components/browsing_data/content/indexed_db_helper.h" |
| #include "content/public/browser/browser_context.h" |
| #include "content/public/browser/storage_partition.h" |
| #include "content/public/browser/storage_usage_info.h" |
| #include "content/public/test/browser_test.h" |
| #include "content/public/test/content_browser_test.h" |
| #include "content/shell/browser/shell.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| #include "third_party/blink/public/common/storage_key/storage_key.h" |
| #include "url/origin.h" |
| |
| namespace browsing_data { |
| namespace { |
| using TestCompletionCallback = |
| BrowsingDataHelperCallback<content::StorageUsageInfo>; |
| |
| class IndexedDBHelperTest : public content::ContentBrowserTest { |
| public: |
| content::StoragePartition* StoragePartition() { |
| return shell() |
| ->web_contents() |
| ->GetBrowserContext() |
| ->GetDefaultStoragePartition(); |
| } |
| }; |
| |
| IN_PROC_BROWSER_TEST_F(IndexedDBHelperTest, CannedAddIndexedDB) { |
| const blink::StorageKey storage_key1 = |
| blink::StorageKey::CreateFromStringForTesting("http://host1:1/"); |
| const blink::StorageKey storage_key2 = |
| blink::StorageKey::CreateFromStringForTesting("http://host2:1/"); |
| |
| auto helper = base::MakeRefCounted<CannedIndexedDBHelper>(StoragePartition()); |
| helper->Add(storage_key1); |
| helper->Add(storage_key2); |
| |
| TestCompletionCallback callback; |
| helper->StartFetching(base::BindOnce(&TestCompletionCallback::callback, |
| base::Unretained(&callback))); |
| |
| std::list<content::StorageUsageInfo> result = callback.result(); |
| |
| ASSERT_EQ(2U, result.size()); |
| auto info = result.begin(); |
| EXPECT_EQ(storage_key1, info->storage_key); |
| info++; |
| EXPECT_EQ(storage_key2, info->storage_key); |
| } |
| |
| IN_PROC_BROWSER_TEST_F(IndexedDBHelperTest, CannedUnique) { |
| const blink::StorageKey storage_key = |
| blink::StorageKey::CreateFromStringForTesting("http://host1:1/"); |
| |
| auto helper = base::MakeRefCounted<CannedIndexedDBHelper>(StoragePartition()); |
| helper->Add(storage_key); |
| helper->Add(storage_key); |
| |
| TestCompletionCallback callback; |
| helper->StartFetching(base::BindOnce(&TestCompletionCallback::callback, |
| base::Unretained(&callback))); |
| |
| std::list<content::StorageUsageInfo> result = callback.result(); |
| |
| ASSERT_EQ(1U, result.size()); |
| EXPECT_EQ(storage_key, result.begin()->storage_key); |
| } |
| } // namespace |
| } // namespace browsing_data |