Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Mullvad Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
Mullvad Browser
Commits
edaa0dd1
Commit
edaa0dd1
authored
1 year ago
by
Paul Zuehlcke
Browse files
Options
Downloads
Patches
Plain Diff
Bug 1873960 - Test. r=Gijs, a=test-only
parent
1add0da3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
browser/base/content/test/fullscreen/browser_fullscreen_permissions_prompt.js
+130
-0
130 additions, 0 deletions
.../test/fullscreen/browser_fullscreen_permissions_prompt.js
with
130 additions
and
0 deletions
browser/base/content/test/fullscreen/browser_fullscreen_permissions_prompt.js
+
130
−
0
View file @
edaa0dd1
...
...
@@ -158,3 +158,133 @@ add_task(async function test_permission_prompt_closes_fullscreen() {
BrowserTestUtils
.
removeTab
(
tab
);
await
SpecialPowers
.
popPrefEnv
();
});
function
triggerMainCommand
(
popup
)
{
let
notifications
=
popup
.
childNodes
;
ok
(
!!
notifications
.
length
,
"
at least one notification displayed
"
);
let
notification
=
notifications
[
0
];
info
(
"
Triggering main command for notification
"
+
notification
.
id
);
EventUtils
.
synthesizeMouseAtCenter
(
notification
.
button
,
{});
}
add_task
(
async
function
test_permission_prompt_closes_fullscreen_and_extends_security_delay
()
{
const
TEST_SECURITY_DELAY
=
500
;
await
SpecialPowers
.
pushPrefEnv
({
set
:
[
[
"
dom.webnotifications.requireuserinteraction
"
,
false
],
[
"
permissions.fullscreen.allowed
"
,
false
],
[
"
security.notification_enable_delay
"
,
TEST_SECURITY_DELAY
],
// macOS is not affected by the sec delay bug because it uses the native
// macOS full screen API. Revert back to legacy behavior so we can also
// test on macOS. If this pref is removed in the future we can consider
// skipping the testcase for macOS altogether.
[
"
full-screen-api.macos-native-full-screen
"
,
false
],
],
});
let
tab
=
await
BrowserTestUtils
.
openNewForegroundTab
(
gBrowser
,
"
https://example.com
"
);
let
browser
=
tab
.
linkedBrowser
;
info
(
"
Entering DOM full-screen
"
);
await
changeFullscreen
(
browser
,
true
);
let
popupShown
=
BrowserTestUtils
.
waitForPopupEvent
(
window
.
PopupNotifications
.
panel
,
"
shown
"
);
let
fullScreenExit
=
waitForFullScreenState
(
browser
,
false
);
info
(
"
Requesting notification permission
"
);
requestNotificationPermission
(
browser
).
catch
(()
=>
{});
await
popupShown
;
let
notificationHiddenPromise
=
BrowserTestUtils
.
waitForPopupEvent
(
window
.
PopupNotifications
.
panel
,
"
hidden
"
);
info
(
"
Waiting for full-screen exit
"
);
await
fullScreenExit
;
info
(
"
Wait for original security delay to expire.
"
);
SimpleTest
.
requestFlakyTimeout
(
"
Wait for original security delay to expire.
"
);
// eslint-disable-next-line mozilla/no-arbitrary-setTimeout
await
new
Promise
(
resolve
=>
setTimeout
(
resolve
,
TEST_SECURITY_DELAY
));
info
(
"
Trigger main action via button click during the extended security delay
"
);
triggerMainCommand
(
PopupNotifications
.
panel
);
let
notification
=
PopupNotifications
.
getNotification
(
"
web-notifications
"
,
gBrowser
.
selectedBrowser
);
// Linux in CI seems to skip the full screen animation, which means its not
// affected by the bug and we can't test extension of the sec delay here.
if
(
Services
.
appinfo
.
OS
==
"
Linux
"
)
{
todo
(
notification
&&
!
notification
.
dismissed
&&
BrowserTestUtils
.
is_visible
(
PopupNotifications
.
panel
.
firstChild
),
"
Notification should still be open because we clicked during the security delay.
"
);
}
else
{
ok
(
notification
&&
!
notification
.
dismissed
&&
BrowserTestUtils
.
is_visible
(
PopupNotifications
.
panel
.
firstChild
),
"
Notification should still be open because we clicked during the security delay.
"
);
}
// If the notification is no longer shown (test failure) skip the remaining
// checks.
if
(
!
notification
)
{
// Cleanup
BrowserTestUtils
.
removeTab
(
tab
);
await
SpecialPowers
.
popPrefEnv
();
// Remove the granted notification permission.
Services
.
perms
.
removeAll
();
return
;
}
Assert
.
greater
(
notification
.
timeShown
,
performance
.
now
(),
"
Notification timeShown property should be in the future, because the security delay was extended.
"
);
// Ensure that once the security delay has passed the notification can be
// closed again.
let
fakeTimeShown
=
TEST_SECURITY_DELAY
+
500
;
info
(
`Manually set timeShown to
${
fakeTimeShown
}
ms in the past.`
);
notification
.
timeShown
=
performance
.
now
()
-
fakeTimeShown
;
info
(
"
Trigger main action via button click outside security delay
"
);
triggerMainCommand
(
PopupNotifications
.
panel
);
info
(
"
Wait for panel to be hidden.
"
);
await
notificationHiddenPromise
;
ok
(
!
PopupNotifications
.
getNotification
(
"
web-notifications
"
,
gBrowser
.
selectedBrowser
),
"
Should not longer see the notification.
"
);
// Cleanup
BrowserTestUtils
.
removeTab
(
tab
);
await
SpecialPowers
.
popPrefEnv
();
// Remove the granted notification permission.
Services
.
perms
.
removeAll
();
}
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment