mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 01:47:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
48
testing/firefox-ui/tests/puppeteer/test_utils.py
Normal file
48
testing/firefox-ui/tests/puppeteer/test_utils.py
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
from firefox_puppeteer import PuppeteerMixin
|
||||
from marionette_harness import MarionetteTestCase
|
||||
|
||||
|
||||
class TestSanitize(PuppeteerMixin, MarionetteTestCase):
|
||||
|
||||
def setUp(self):
|
||||
super(TestSanitize, self).setUp()
|
||||
|
||||
# Clear all previous history and cookies.
|
||||
self.puppeteer.places.remove_all_history()
|
||||
with self.marionette.using_context('content'):
|
||||
self.marionette.delete_all_cookies()
|
||||
|
||||
self.urls = [
|
||||
'layout/mozilla_projects.html',
|
||||
'layout/mozilla.html',
|
||||
'layout/mozilla_mission.html',
|
||||
'cookies/cookie_single.html'
|
||||
]
|
||||
self.urls = [self.marionette.absolute_url(url) for url in self.urls]
|
||||
|
||||
# Open the test urls, including the single cookie setting page.
|
||||
def load_urls():
|
||||
with self.marionette.using_context('content'):
|
||||
for url in self.urls:
|
||||
self.marionette.navigate(url)
|
||||
self.puppeteer.places.wait_for_visited(self.urls, load_urls)
|
||||
|
||||
def test_sanitize_history(self):
|
||||
""" Clears history. """
|
||||
self.assertEqual(self.puppeteer.places.get_all_urls_in_history(), self.urls)
|
||||
self.puppeteer.utils.sanitize(data_type={"history": True})
|
||||
self.assertEqual(self.puppeteer.places.get_all_urls_in_history(), [])
|
||||
|
||||
def test_sanitize_cookies(self):
|
||||
""" Clears cookies. """
|
||||
with self.marionette.using_context('content'):
|
||||
self.assertIsNotNone(self.marionette.get_cookie('litmus_1'))
|
||||
|
||||
self.puppeteer.utils.sanitize(data_type={"cookies": True})
|
||||
|
||||
with self.marionette.using_context('content'):
|
||||
self.assertIsNone(self.marionette.get_cookie('litmus_1'))
|
||||
Loading…
Add table
Add a link
Reference in a new issue