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
|
// Copyright 2019 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.
#include "fuchsia/engine/test/web_engine_browser_test.h"
#include "base/files/file_path.h"
#include "content/public/test/browser_test.h"
#include "fuchsia/base/frame_test_util.h"
#include "fuchsia/base/test_navigation_listener.h"
#include "fuchsia/engine/browser/frame_impl.h"
#include "fuchsia/engine/test/test_data.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/mojom/frame/user_activation_notification_type.mojom.h"
class AutoplayTest : public cr_fuchsia::WebEngineBrowserTest {
public:
AutoplayTest() {
set_test_server_root(base::FilePath(cr_fuchsia::kTestServerRoot));
}
~AutoplayTest() override = default;
AutoplayTest(const AutoplayTest&) = delete;
AutoplayTest& operator=(const AutoplayTest&) = delete;
void SetUpOnMainThread() override {
CHECK(embedded_test_server()->Start());
cr_fuchsia::WebEngineBrowserTest::SetUpOnMainThread();
}
void SetUpCommandLine(base::CommandLine* command_line) final {
SetHeadlessInCommandLine(command_line);
cr_fuchsia::WebEngineBrowserTest::SetUpCommandLine(command_line);
}
protected:
// Creates a Frame with |navigation_listener_| attached and |policy|
// applied.
fuchsia::web::FramePtr CreateFrame(fuchsia::web::AutoplayPolicy policy) {
fuchsia::web::CreateFrameParams params;
params.set_autoplay_policy(policy);
fuchsia::web::FramePtr frame = WebEngineBrowserTest::CreateFrameWithParams(
&navigation_listener_, std::move(params));
frame->GetNavigationController(controller_.NewRequest());
return frame;
}
cr_fuchsia::TestNavigationListener navigation_listener_;
fuchsia::web::NavigationControllerPtr controller_;
};
IN_PROC_BROWSER_TEST_F(
AutoplayTest,
UserActivationPolicy_UserActivatedViaSimulatedInteraction) {
const GURL kUrl(embedded_test_server()->GetURL("/play_vp8.html?autoplay=1"));
constexpr const char kPageLoadedTitle[] = "initial title";
fuchsia::web::FramePtr frame =
CreateFrame(fuchsia::web::AutoplayPolicy::REQUIRE_USER_ACTIVATION);
fuchsia::web::LoadUrlParams params;
EXPECT_TRUE(
cr_fuchsia::LoadUrlAndExpectResponse(controller_.get(), {}, kUrl.spec()));
navigation_listener_.RunUntilUrlAndTitleEquals(kUrl, kPageLoadedTitle);
context_impl()
->GetFrameImplForTest(&frame)
->web_contents_for_test()
->GetMainFrame()
->NotifyUserActivation(
blink::mojom::UserActivationNotificationType::kTest);
navigation_listener_.RunUntilUrlAndTitleEquals(kUrl, "playing");
}
IN_PROC_BROWSER_TEST_F(AutoplayTest,
UserActivationPolicy_UserActivatedNavigation) {
const GURL kUrl(embedded_test_server()->GetURL("/play_vp8.html?autoplay=1"));
fuchsia::web::FramePtr frame =
CreateFrame(fuchsia::web::AutoplayPolicy::REQUIRE_USER_ACTIVATION);
fuchsia::web::LoadUrlParams params;
params.set_was_user_activated(true);
EXPECT_TRUE(cr_fuchsia::LoadUrlAndExpectResponse(
controller_.get(), std::move(params), kUrl.spec()));
navigation_listener_.RunUntilUrlAndTitleEquals(kUrl, "playing");
}
IN_PROC_BROWSER_TEST_F(AutoplayTest, UserActivationPolicy_NoUserActivation) {
const GURL kUrl(embedded_test_server()->GetURL("/play_vp8.html?autoplay=1"));
fuchsia::web::FramePtr frame =
CreateFrame(fuchsia::web::AutoplayPolicy::REQUIRE_USER_ACTIVATION);
fuchsia::web::LoadUrlParams params;
params.set_was_user_activated(false);
EXPECT_TRUE(cr_fuchsia::LoadUrlAndExpectResponse(
controller_.get(), std::move(params), kUrl.spec()));
navigation_listener_.RunUntilUrlAndTitleEquals(kUrl, "blocked");
}
IN_PROC_BROWSER_TEST_F(AutoplayTest,
AllowAllPolicy_DefaultNotUserActivatedNavigation) {
const GURL kUrl(embedded_test_server()->GetURL("/play_vp8.html?autoplay=1"));
fuchsia::web::FramePtr frame =
CreateFrame(fuchsia::web::AutoplayPolicy::ALLOW);
// The page is deliberately not user activated.
EXPECT_TRUE(cr_fuchsia::LoadUrlAndExpectResponse(
controller_.get(), fuchsia::web::LoadUrlParams(), kUrl.spec()));
navigation_listener_.RunUntilUrlAndTitleEquals(kUrl, "playing");
}
|