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 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
|
// Copyright 2018 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/browser/notifications/notification_event_dispatcher_impl.h"
#include <stdint.h>
#include <memory>
#include <utility>
#include <vector>
#include "base/functional/callback_helpers.h"
#include "base/test/task_environment.h"
#include "base/test/test_simple_task_runner.h"
#include "content/browser/renderer_host/render_frame_host_impl.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/test/test_renderer_host.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/mojom/notifications/notification_service.mojom.h"
namespace content {
namespace {
const char kPrimaryUniqueId[] = "this_should_be_a_unique_id";
const char kSomeOtherUniqueId[] = "and_this_one_is_different_and_also_unique";
class TestNotificationListener
: public blink::mojom::NonPersistentNotificationListener {
public:
TestNotificationListener() = default;
TestNotificationListener(const TestNotificationListener&) = delete;
TestNotificationListener& operator=(const TestNotificationListener&) = delete;
~TestNotificationListener() override = default;
// Closes the bindings associated with this listener.
void Close() { receiver_.reset(); }
// Returns an InterfacePtr to this listener.
mojo::PendingRemote<blink::mojom::NonPersistentNotificationListener>
GetRemote() {
mojo::PendingRemote<blink::mojom::NonPersistentNotificationListener> remote;
receiver_.Bind(remote.InitWithNewPipeAndPassReceiver());
return remote;
}
// Returns the number of OnShow events received by this listener.
int on_show_count() const { return on_show_count_; }
// Returns the number of OnClick events received by this listener.
int on_click_count() const { return on_click_count_; }
// Returns the number of OnClose events received by this listener.
int on_close_count() const { return on_close_count_; }
// blink::mojom::NonPersistentNotificationListener implementation.
void OnShow() override { on_show_count_++; }
void OnClick(OnClickCallback completed_closure) override {
on_click_count_++;
std::move(completed_closure).Run();
}
void OnClose(OnCloseCallback completed_closure) override {
on_close_count_++;
std::move(completed_closure).Run();
}
private:
int on_show_count_ = 0;
int on_click_count_ = 0;
int on_close_count_ = 0;
mojo::Receiver<blink::mojom::NonPersistentNotificationListener> receiver_{
this};
};
} // anonymous namespace
class NotificationEventDispatcherImplTest : public RenderViewHostTestHarness {
public:
NotificationEventDispatcherImplTest()
: dispatcher_(new NotificationEventDispatcherImpl(), Deleter) {}
NotificationEventDispatcherImplTest(
const NotificationEventDispatcherImplTest&) = delete;
NotificationEventDispatcherImplTest& operator=(
const NotificationEventDispatcherImplTest&) = delete;
~NotificationEventDispatcherImplTest() override = default;
// Waits until the task runner managing the Mojo connection has finished.
void WaitForMojoTasksToComplete() { task_environment()->RunUntilIdle(); }
static void Deleter(NotificationEventDispatcherImpl* dispatcher) {
delete dispatcher;
}
protected:
struct CreatorTypeTestData {
RenderProcessHost::NotificationServiceCreatorType creator_type;
bool is_document_pointer_empty;
bool is_show_event_dispatched;
bool is_click_event_dispatched;
bool is_close_event_dispatched;
};
std::unique_ptr<NotificationEventDispatcherImpl, decltype(&Deleter)>
dispatcher_;
};
TEST_F(NotificationEventDispatcherImplTest,
DispatchNonPersistentShowEvent_NotifiesCorrectRegisteredListener) {
auto listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kPrimaryUniqueId, listener->GetRemote(), main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
auto other_listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kSomeOtherUniqueId, other_listener->GetRemote(),
main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
dispatcher_->DispatchNonPersistentShowEvent(kPrimaryUniqueId);
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_show_count(), 1);
EXPECT_EQ(other_listener->on_show_count(), 0);
dispatcher_->DispatchNonPersistentShowEvent(kSomeOtherUniqueId);
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_show_count(), 1);
EXPECT_EQ(other_listener->on_show_count(), 1);
}
TEST_F(NotificationEventDispatcherImplTest,
DispatchNonPersistentEvent_RegisterListenerWithDifferentCreatorTypes) {
// For `kDocument` and `kDedicatedWorker`, if the document pointer is empty,
// then all the non persistent notification event should not be dispatched.
// For `kSharedWorker`, the document pointer should always be empty and the
// event will always be dispatched.
// Since it's not possible for `kServiceWorker` to create non persistent
// notification events, the test cases for those two creator types are not
// added.
std::vector<CreatorTypeTestData> creator_type_tests{
{.creator_type =
RenderProcessHost::NotificationServiceCreatorType::kDocument,
.is_document_pointer_empty = true,
.is_show_event_dispatched = false,
.is_click_event_dispatched = false,
.is_close_event_dispatched = false},
{.creator_type =
RenderProcessHost::NotificationServiceCreatorType::kDocument,
.is_document_pointer_empty = false,
.is_show_event_dispatched = true,
.is_click_event_dispatched = true,
.is_close_event_dispatched = true},
{.creator_type =
RenderProcessHost::NotificationServiceCreatorType::kDedicatedWorker,
.is_document_pointer_empty = true,
.is_show_event_dispatched = false,
.is_click_event_dispatched = false,
.is_close_event_dispatched = false},
{.creator_type =
RenderProcessHost::NotificationServiceCreatorType::kDedicatedWorker,
.is_document_pointer_empty = false,
.is_show_event_dispatched = true,
.is_click_event_dispatched = true,
.is_close_event_dispatched = true},
{.creator_type =
RenderProcessHost::NotificationServiceCreatorType::kSharedWorker,
.is_document_pointer_empty = true,
.is_show_event_dispatched = true,
.is_click_event_dispatched = true,
.is_close_event_dispatched = true},
};
for (auto t : creator_type_tests) {
int expected_show_count = t.is_show_event_dispatched ? 1 : 0;
int expected_click_count = t.is_click_event_dispatched ? 1 : 0;
int expected_close_count = t.is_close_event_dispatched ? 1 : 0;
auto listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kPrimaryUniqueId, listener->GetRemote(),
t.is_document_pointer_empty ? WeakDocumentPtr()
: main_rfh()->GetWeakDocumentPtr(),
t.creator_type);
dispatcher_->DispatchNonPersistentShowEvent(kPrimaryUniqueId);
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_show_count(), expected_show_count);
EXPECT_EQ(listener->on_click_count(), 0);
EXPECT_EQ(listener->on_close_count(), 0);
dispatcher_->DispatchNonPersistentClickEvent(kPrimaryUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_show_count(), expected_show_count);
EXPECT_EQ(listener->on_click_count(), expected_click_count);
EXPECT_EQ(listener->on_close_count(), 0);
dispatcher_->DispatchNonPersistentCloseEvent(kPrimaryUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_show_count(), expected_show_count);
EXPECT_EQ(listener->on_click_count(), expected_click_count);
EXPECT_EQ(listener->on_close_count(), expected_close_count);
}
}
TEST_F(NotificationEventDispatcherImplTest,
DispatchNonPersistentEvent_DocumentInBFCache) {
auto listener = std::make_unique<TestNotificationListener>();
const WeakDocumentPtr document = main_rfh()->GetWeakDocumentPtr();
RenderFrameHostImpl* rfh =
static_cast<RenderFrameHostImpl*>(document.AsRenderFrameHostIfValid());
EXPECT_TRUE(rfh);
// The rfh should be initially in active lifecycle state.
EXPECT_TRUE(
rfh->IsInLifecycleState(RenderFrameHost::LifecycleState::kActive));
dispatcher_->RegisterNonPersistentNotificationListener(
kPrimaryUniqueId, listener->GetRemote(), document,
RenderProcessHost::NotificationServiceCreatorType::kDocument);
dispatcher_->DispatchNonPersistentShowEvent(kPrimaryUniqueId);
WaitForMojoTasksToComplete();
// After dispatching the show and click events when the rfh is active,
// the counter should increment as expected.
EXPECT_EQ(listener->on_show_count(), 1);
EXPECT_EQ(listener->on_click_count(), 0);
EXPECT_EQ(listener->on_close_count(), 0);
dispatcher_->DispatchNonPersistentClickEvent(kPrimaryUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_show_count(), 1);
EXPECT_EQ(listener->on_click_count(), 1);
EXPECT_EQ(listener->on_close_count(), 0);
dispatcher_->DispatchNonPersistentShowEvent(kPrimaryUniqueId);
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_show_count(), 2);
EXPECT_EQ(listener->on_click_count(), 1);
EXPECT_EQ(listener->on_close_count(), 0);
// Simulate the scenario where the rfh is put into the back/forward cache
// by setting the lifecycle state explicitly.
rfh->SetLifecycleState(
RenderFrameHostImpl::LifecycleStateImpl::kInBackForwardCache);
EXPECT_TRUE(rfh->IsInLifecycleState(
RenderFrameHost::LifecycleState::kInBackForwardCache));
dispatcher_->DispatchNonPersistentClickEvent(kPrimaryUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
dispatcher_->DispatchNonPersistentCloseEvent(kPrimaryUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
// Now the dispatched click and close events should not invoke the listener.
EXPECT_EQ(listener->on_show_count(), 2);
EXPECT_EQ(listener->on_click_count(), 1);
EXPECT_EQ(listener->on_close_count(), 0);
// Simulate the scenario where the rfh is back to active state and
// dispatch a close event.
rfh->SetLifecycleState(RenderFrameHostImpl::LifecycleStateImpl::kActive);
EXPECT_FALSE(rfh->IsInLifecycleState(
RenderFrameHost::LifecycleState::kInBackForwardCache));
dispatcher_->DispatchNonPersistentCloseEvent(kPrimaryUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
// Since the rfh is active, the dispatched close event should result in
// the increment of the close counter.
EXPECT_EQ(listener->on_show_count(), 2);
EXPECT_EQ(listener->on_click_count(), 1);
EXPECT_EQ(listener->on_close_count(), 1);
}
TEST_F(NotificationEventDispatcherImplTest,
RegisterNonPersistentListener_FirstListenerGetsOnClose) {
auto original_listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kPrimaryUniqueId, original_listener->GetRemote(),
main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
dispatcher_->DispatchNonPersistentShowEvent(kPrimaryUniqueId);
ASSERT_EQ(original_listener->on_close_count(), 0);
auto replacement_listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kPrimaryUniqueId, replacement_listener->GetRemote(),
main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
WaitForMojoTasksToComplete();
EXPECT_EQ(original_listener->on_close_count(), 1);
EXPECT_EQ(replacement_listener->on_close_count(), 0);
}
TEST_F(NotificationEventDispatcherImplTest,
RegisterNonPersistentListener_SecondListenerGetsOnShow) {
auto original_listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kPrimaryUniqueId, original_listener->GetRemote(),
main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
dispatcher_->DispatchNonPersistentShowEvent(kPrimaryUniqueId);
WaitForMojoTasksToComplete();
ASSERT_EQ(original_listener->on_show_count(), 1);
auto replacement_listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kPrimaryUniqueId, replacement_listener->GetRemote(),
main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
dispatcher_->DispatchNonPersistentShowEvent(kPrimaryUniqueId);
WaitForMojoTasksToComplete();
ASSERT_EQ(original_listener->on_show_count(), 1);
ASSERT_EQ(replacement_listener->on_show_count(), 1);
}
TEST_F(NotificationEventDispatcherImplTest,
RegisterNonPersistentListener_ReplacedListenerGetsOnClick) {
auto original_listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kPrimaryUniqueId, original_listener->GetRemote(),
main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
dispatcher_->DispatchNonPersistentShowEvent(kPrimaryUniqueId);
auto replacement_listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kPrimaryUniqueId, replacement_listener->GetRemote(),
main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
WaitForMojoTasksToComplete();
dispatcher_->DispatchNonPersistentClickEvent(kPrimaryUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
EXPECT_EQ(original_listener->on_click_count(), 0);
EXPECT_EQ(original_listener->on_close_count(), 1);
EXPECT_EQ(replacement_listener->on_click_count(), 1);
EXPECT_EQ(replacement_listener->on_close_count(), 0);
}
TEST_F(NotificationEventDispatcherImplTest,
DispatchNonPersistentClickEvent_NotifiesCorrectRegisteredListener) {
auto listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kPrimaryUniqueId, listener->GetRemote(), main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
auto other_listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kSomeOtherUniqueId, other_listener->GetRemote(),
main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
dispatcher_->DispatchNonPersistentClickEvent(kPrimaryUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_click_count(), 1);
EXPECT_EQ(other_listener->on_click_count(), 0);
dispatcher_->DispatchNonPersistentClickEvent(kSomeOtherUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_click_count(), 1);
EXPECT_EQ(other_listener->on_click_count(), 1);
}
TEST_F(NotificationEventDispatcherImplTest,
DispatchNonPersistentCloseEvent_NotifiesCorrectRegisteredListener) {
auto listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kPrimaryUniqueId, listener->GetRemote(), main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
auto other_listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kSomeOtherUniqueId, other_listener->GetRemote(),
main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
dispatcher_->DispatchNonPersistentCloseEvent(kPrimaryUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_close_count(), 1);
EXPECT_EQ(other_listener->on_close_count(), 0);
dispatcher_->DispatchNonPersistentCloseEvent(kSomeOtherUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_close_count(), 1);
EXPECT_EQ(other_listener->on_close_count(), 1);
}
TEST_F(NotificationEventDispatcherImplTest,
DispatchMultipleNonPersistentEvents_StopsNotifyingAfterClose) {
auto listener = std::make_unique<TestNotificationListener>();
dispatcher_->RegisterNonPersistentNotificationListener(
kPrimaryUniqueId, listener->GetRemote(), main_rfh()->GetWeakDocumentPtr(),
RenderProcessHost::NotificationServiceCreatorType::kDocument);
dispatcher_->DispatchNonPersistentShowEvent(kPrimaryUniqueId);
dispatcher_->DispatchNonPersistentClickEvent(kPrimaryUniqueId,
base::DoNothing());
dispatcher_->DispatchNonPersistentCloseEvent(kPrimaryUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_show_count(), 1);
EXPECT_EQ(listener->on_click_count(), 1);
EXPECT_EQ(listener->on_close_count(), 1);
// Should not be counted as the notification was already closed.
dispatcher_->DispatchNonPersistentClickEvent(kPrimaryUniqueId,
base::DoNothing());
WaitForMojoTasksToComplete();
EXPECT_EQ(listener->on_click_count(), 1);
}
} // namespace content
|