blob: 1594e5a44052972299904f1d3a113fc3f040e897 [file] [log] [blame]
// Copyright 2018 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.
#ifndef CONTENT_BROWSER_BACKGROUND_FETCH_BACKGROUND_FETCH_TEST_DATA_MANAGER_H_
#define CONTENT_BROWSER_BACKGROUND_FETCH_BACKGROUND_FETCH_TEST_DATA_MANAGER_H_
#include <memory>
#include "base/memory/scoped_refptr.h"
#include "content/browser/background_fetch/background_fetch_data_manager.h"
#include "content/browser/background_fetch/background_fetch_request_info.h"
#include "url/origin.h"
namespace content {
class BrowserContext;
class CacheStorageManager;
class ChromeBlobStorageContext;
class MockQuotaManager;
class ServiceWorkerContextWrapper;
class StoragePartition;
// Arbitrary quota that is large enough for test purposes.
constexpr int64_t kBackgroundFetchMaxQuotaBytes = 42424242;
// Test DataManager that sets up a CacheStorageManager suited for test
// environments. Tests can also optionally override FillServiceWorkerResponse by
// setting |mock_fill_response| to true.
class BackgroundFetchTestDataManager : public BackgroundFetchDataManager {
public:
BackgroundFetchTestDataManager(
BrowserContext* browser_context,
StoragePartition* storage_partition,
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context,
bool mock_fill_response = false);
~BackgroundFetchTestDataManager() override;
void InitializeOnIOThread() override;
private:
friend class BackgroundFetchDataManagerTest;
scoped_refptr<MockQuotaManager> mock_quota_manager_;
BrowserContext* browser_context_;
StoragePartition* storage_partition_;
scoped_refptr<ChromeBlobStorageContext> blob_storage_context_;
bool mock_fill_response_;
DISALLOW_COPY_AND_ASSIGN(BackgroundFetchTestDataManager);
};
} // namespace content
#endif // CONTENT_BROWSER_BACKGROUND_FETCH_BACKGROUND_FETCH_TEST_DATA_MANAGER_H_