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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_SERVICE_WORKER_FAKE_SERVICE_WORKER_H_
#define CONTENT_BROWSER_SERVICE_WORKER_FAKE_SERVICE_WORKER_H_
#include <string>
#include "base/memory/raw_ptr.h"
#include "base/time/time.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "mojo/public/cpp/bindings/pending_associated_remote.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "third_party/blink/public/common/storage_key/storage_key.h"
#include "third_party/blink/public/mojom/service_worker/service_worker.mojom.h"
namespace content {
class EmbeddedWorkerTestHelper;
// The default fake for blink::mojom::ServiceWorker. It responds to event
// dispatches with success. It is owned by EmbeddedWorkerTestHelper and
// by default the lifetime is tied to the Mojo connection.
class FakeServiceWorker : public blink::mojom::ServiceWorker {
public:
using FetchHandlerExistence = blink::mojom::FetchHandlerExistence;
// |helper| must outlive this instance.
explicit FakeServiceWorker(EmbeddedWorkerTestHelper* helper);
~FakeServiceWorker() override;
mojo::AssociatedRemote<blink::mojom::ServiceWorkerHost>& host() {
return host_;
}
void Bind(mojo::PendingReceiver<blink::mojom::ServiceWorker> receiver);
// Returns after InitializeGlobalScope() is called.
void RunUntilInitializeGlobalScope();
const std::optional<base::TimeDelta>& idle_delay() const {
return idle_delay_;
}
FetchHandlerExistence fetch_handler_existence() const {
return fetch_handler_existence_;
}
// Flush messages in the message pipe.
void FlushForTesting();
base::WeakPtr<FakeServiceWorker> AsWeakPtr();
protected:
// blink::mojom::ServiceWorker overrides:
void InitializeGlobalScope(
mojo::PendingAssociatedRemote<blink::mojom::ServiceWorkerHost>
service_worker_host,
mojo::PendingAssociatedRemote<blink::mojom::AssociatedInterfaceProvider>
associated_interfaces_from_browser,
mojo::PendingAssociatedReceiver<blink::mojom::AssociatedInterfaceProvider>
associated_interfaces_to_browser,
blink::mojom::ServiceWorkerRegistrationObjectInfoPtr registration_info,
blink::mojom::ServiceWorkerObjectInfoPtr service_worker_info,
FetchHandlerExistence fetch_handler_existence,
blink::mojom::AncestorFrameType ancestor_frame_type,
const blink::StorageKey& storage_key) override;
void DispatchInstallEvent(DispatchInstallEventCallback callback) override;
void DispatchActivateEvent(DispatchActivateEventCallback callback) override;
void DispatchBackgroundFetchAbortEvent(
blink::mojom::BackgroundFetchRegistrationPtr registration,
DispatchBackgroundFetchAbortEventCallback callback) override;
void DispatchBackgroundFetchClickEvent(
blink::mojom::BackgroundFetchRegistrationPtr registration,
DispatchBackgroundFetchClickEventCallback callback) override;
void DispatchBackgroundFetchFailEvent(
blink::mojom::BackgroundFetchRegistrationPtr registration,
DispatchBackgroundFetchFailEventCallback callback) override;
void DispatchBackgroundFetchSuccessEvent(
blink::mojom::BackgroundFetchRegistrationPtr registration,
DispatchBackgroundFetchSuccessEventCallback callback) override;
void DispatchCookieChangeEvent(
const net::CookieChangeInfo& change,
DispatchCookieChangeEventCallback callback) override;
void DispatchFetchEventForMainResource(
blink::mojom::DispatchFetchEventParamsPtr params,
mojo::PendingRemote<blink::mojom::ServiceWorkerFetchResponseCallback>
response_callback,
DispatchFetchEventForMainResourceCallback callback) override;
void DispatchNotificationClickEvent(
const std::string& notification_id,
const blink::PlatformNotificationData& notification_data,
int action_index,
const std::optional<std::u16string>& reply,
DispatchNotificationClickEventCallback callback) override;
void DispatchNotificationCloseEvent(
const std::string& notification_id,
const blink::PlatformNotificationData& notification_data,
DispatchNotificationCloseEventCallback callback) override;
void DispatchPushEvent(const std::optional<std::string>& payload,
DispatchPushEventCallback callback) override;
void DispatchPushSubscriptionChangeEvent(
blink::mojom::PushSubscriptionPtr old_subscription,
blink::mojom::PushSubscriptionPtr new_subscription,
DispatchPushSubscriptionChangeEventCallback callback) override;
void DispatchSyncEvent(const std::string& tag,
bool last_chance,
base::TimeDelta timeout,
DispatchSyncEventCallback callback) override;
void DispatchPeriodicSyncEvent(
const std::string& tag,
base::TimeDelta timeout,
DispatchPeriodicSyncEventCallback callback) override;
void DispatchAbortPaymentEvent(
mojo::PendingRemote<payments::mojom::PaymentHandlerResponseCallback>
pending_response_callback,
DispatchAbortPaymentEventCallback callback) override;
void DispatchCanMakePaymentEvent(
payments::mojom::CanMakePaymentEventDataPtr event_data,
mojo::PendingRemote<payments::mojom::PaymentHandlerResponseCallback>
pending_response_callback,
DispatchCanMakePaymentEventCallback callback) override;
void DispatchPaymentRequestEvent(
payments::mojom::PaymentRequestEventDataPtr event_data,
mojo::PendingRemote<payments::mojom::PaymentHandlerResponseCallback>
pending_response_callback,
DispatchPaymentRequestEventCallback callback) override;
void DispatchExtendableMessageEvent(
blink::mojom::ExtendableMessageEventPtr event,
DispatchExtendableMessageEventCallback callback) override;
void DispatchContentDeleteEvent(
const std::string& id,
DispatchContentDeleteEventCallback callback) override;
void Ping(PingCallback callback) override;
void SetIdleDelay(base::TimeDelta delay) override;
void AddKeepAlive() override;
void ClearKeepAlive() override;
void AddMessageToConsole(blink::mojom::ConsoleMessageLevel level,
const std::string& message) override;
void ExecuteScriptForTest(const std::u16string& script,
bool wants_result,
ExecuteScriptForTestCallback callback) override;
virtual void OnConnectionError();
private:
void CallOnConnectionError();
// |helper_| owns |this|.
const raw_ptr<EmbeddedWorkerTestHelper> helper_;
mojo::AssociatedRemote<blink::mojom::ServiceWorkerHost> host_;
blink::mojom::ServiceWorkerRegistrationObjectInfoPtr registration_info_;
blink::mojom::ServiceWorkerObjectInfoPtr service_worker_info_;
FetchHandlerExistence fetch_handler_existence_ =
FetchHandlerExistence::UNKNOWN;
base::OnceClosure quit_closure_for_initialize_global_scope_;
mojo::Receiver<blink::mojom::ServiceWorker> receiver_{this};
// std::nullopt means SetIdleDelay() is not called.
std::optional<base::TimeDelta> idle_delay_;
base::WeakPtrFactory<FakeServiceWorker> weak_ptr_factory_{this};
};
} // namespace content
#endif // CONTENT_BROWSER_SERVICE_WORKER_FAKE_SERVICE_WORKER_H_
|