aboutsummaryrefslogtreecommitdiff
path: root/test/haketilo_test/unit/test_settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/haketilo_test/unit/test_settings.py')
-rw-r--r--test/haketilo_test/unit/test_settings.py63
1 files changed, 63 insertions, 0 deletions
diff --git a/test/haketilo_test/unit/test_settings.py b/test/haketilo_test/unit/test_settings.py
new file mode 100644
index 0000000..7cdb76f
--- /dev/null
+++ b/test/haketilo_test/unit/test_settings.py
@@ -0,0 +1,63 @@
+# SPDX-License-Identifier: CC0-1.0
+
+"""
+Haketilo unit tests - entire settings page
+"""
+
+# This file is part of Haketilo
+#
+# Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the CC0 1.0 Universal License as published by
+# the Creative Commons Corporation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# CC0 1.0 Universal License for more details.
+
+import pytest
+from .utils import *
+
+from ..extension_crafting import ExtraHTML
+from ..script_loader import load_script
+from .utils import *
+
+@pytest.mark.ext_data({
+ 'background_script': broker_js,
+ 'extra_html': ExtraHTML('html/settings.html', wrap_into_htmldoc=False)
+})
+@pytest.mark.usefixtures('webextension')
+def test_settings_page_tabs(driver, execute_in_page):
+ """
+ Test navigation throught the tabs of the settings page.
+ """
+ # First, put some sample data in IndexedDB.
+ execute_in_page(load_script('common/indexeddb.js'))
+ execute_in_page(
+ '''
+ initial_data = arguments[0];
+ returnval(get_db().then(() => {}));
+ ''',
+ make_complete_sample_data())
+
+ # Now navigate to settings page.
+ testpage_url = driver.execute_script('return window.location.href;')
+ driver.get(testpage_url.replace('testpage.html', 'html/settings.html'))
+
+ names = ['blocking', 'mappings', 'resources', 'new_payload', 'repos']
+ tabs = dict([(n, driver.find_element_by_id(f'{n}_tab')) for n in names])
+ heads = dict([(n, driver.find_element_by_id(f'{n}_head')) for n in names])
+
+ for i, tab_name in enumerate(['new_payload', *names]):
+ if (i > 0):
+ heads[tab_name].click()
+
+ assert 'active_head' in heads[tab_name].get_attribute('class')
+ assert 'active_tab' in tabs[tab_name].get_attribute('class')
+ assert tabs[tab_name].is_displayed()
+ for tab_name_2 in [n for n in names if n != tab_name]:
+ assert 'active_head' not in heads[tab_name_2].get_attribute('class')
+ assert 'active_tab' not in tabs[tab_name_2].get_attribute('class')
+ assert not tabs[tab_name_2].is_displayed()