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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/test/test_background_sync_manager.h"
#include "base/functional/bind.h"
#include "base/task/single_thread_task_runner.h"
#include "base/time/time.h"
#include "content/browser/devtools/devtools_background_services_context_impl.h"
#include "content/browser/service_worker/service_worker_context_wrapper.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace content {
TestBackgroundSyncManager::TestBackgroundSyncManager(
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context,
DevToolsBackgroundServicesContextImpl& devtools_context)
: BackgroundSyncManager(service_worker_context, devtools_context) {}
TestBackgroundSyncManager::~TestBackgroundSyncManager() {}
void TestBackgroundSyncManager::DoInit() {
Init();
}
void TestBackgroundSyncManager::ResumeBackendOperation() {
ASSERT_TRUE(continuation_);
std::move(continuation_).Run();
}
void TestBackgroundSyncManager::StoreDataInBackend(
int64_t sw_registration_id,
const url::Origin& origin,
const std::string& key,
const std::string& data,
ServiceWorkerRegistry::StatusCallback callback) {
EXPECT_FALSE(continuation_);
if (corrupt_backend_) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE,
base::BindOnce(std::move(callback),
blink::ServiceWorkerStatusCode::kErrorFailed));
return;
}
continuation_ =
base::BindOnce(&TestBackgroundSyncManager::StoreDataInBackendContinue,
base::Unretained(this), sw_registration_id, origin, key,
data, std::move(callback));
if (delay_backend_)
return;
ResumeBackendOperation();
}
void TestBackgroundSyncManager::GetDataFromBackend(
const std::string& key,
ServiceWorkerRegistry::GetUserDataForAllRegistrationsCallback callback) {
EXPECT_FALSE(continuation_);
if (corrupt_backend_) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE,
base::BindOnce(std::move(callback),
std::vector<std::pair<int64_t, std::string>>(),
blink::ServiceWorkerStatusCode::kErrorFailed));
return;
}
continuation_ =
base::BindOnce(&TestBackgroundSyncManager::GetDataFromBackendContinue,
base::Unretained(this), key, std::move(callback));
if (delay_backend_)
return;
ResumeBackendOperation();
}
void TestBackgroundSyncManager::DispatchSyncEvent(
const std::string& tag,
scoped_refptr<ServiceWorkerVersion> active_version,
bool last_chance,
ServiceWorkerVersion::StatusCallback callback) {
ASSERT_TRUE(dispatch_sync_callback_);
last_chance_ = last_chance;
dispatch_sync_callback_.Run(active_version, std::move(callback));
}
void TestBackgroundSyncManager::DispatchPeriodicSyncEvent(
const std::string& tag,
scoped_refptr<ServiceWorkerVersion> active_version,
ServiceWorkerVersion::StatusCallback callback) {
ASSERT_TRUE(dispatch_periodic_sync_callback_);
dispatch_periodic_sync_callback_.Run(active_version, std::move(callback));
}
void TestBackgroundSyncManager::HasMainFrameWindowClient(
const blink::StorageKey& key,
BoolCallback callback) {
std::move(callback).Run(has_main_frame_window_client_);
}
void TestBackgroundSyncManager::FireReadyEvents(
blink::mojom::BackgroundSyncType sync_type,
bool reschedule,
base::OnceClosure callback,
std::unique_ptr<BackgroundSyncEventKeepAlive> keepalive) {
if (dont_fire_sync_events_) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, std::move(callback));
} else {
BackgroundSyncManager::FireReadyEvents(
sync_type, reschedule, std::move(callback), std::move(keepalive));
}
}
void TestBackgroundSyncManager::StoreDataInBackendContinue(
int64_t sw_registration_id,
const url::Origin& origin,
const std::string& key,
const std::string& data,
ServiceWorkerRegistry::StatusCallback callback) {
BackgroundSyncManager::StoreDataInBackend(sw_registration_id, origin, key,
data, std::move(callback));
}
void TestBackgroundSyncManager::GetDataFromBackendContinue(
const std::string& key,
ServiceWorkerRegistry::GetUserDataForAllRegistrationsCallback callback) {
BackgroundSyncManager::GetDataFromBackend(key, std::move(callback));
}
base::TimeDelta TestBackgroundSyncManager::GetSoonestWakeupDelta(
blink::mojom::BackgroundSyncType sync_type,
base::Time last_browser_wakeup_for_periodic_sync) {
base::TimeDelta soonest_wakeup_delta =
BackgroundSyncManager::GetSoonestWakeupDelta(
sync_type, last_browser_wakeup_for_periodic_sync);
if (sync_type == blink::mojom::BackgroundSyncType::ONE_SHOT)
soonest_one_shot_sync_wakeup_delta_ = soonest_wakeup_delta;
else
soonest_periodic_sync_wakeup_delta_ = soonest_wakeup_delta;
return soonest_wakeup_delta;
}
} // namespace content
|