summaryrefslogtreecommitdiffstats
path: root/testing/firefox-ui/tests/puppeteer/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/firefox-ui/tests/puppeteer/test_utils.py')
-rw-r--r--testing/firefox-ui/tests/puppeteer/test_utils.py48
1 files changed, 48 insertions, 0 deletions
diff --git a/testing/firefox-ui/tests/puppeteer/test_utils.py b/testing/firefox-ui/tests/puppeteer/test_utils.py
new file mode 100644
index 000000000..664722cce
--- /dev/null
+++ b/testing/firefox-ui/tests/puppeteer/test_utils.py
@@ -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'))