Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] Fixed "Esc" key close bug in the visualizer #196

Merged
merged 1 commit into from
Jun 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,16 @@ django.jQuery(function ($) {

overlay.find('.closeBtn').click(function (e) {
e.preventDefault();
window.graph.echarts.dispose();
closeOverlay();
});
});
$(document).keydown(disableArrowKeys);
};

var closeOverlay = function () {
// Make sure that whenever this function is called,
// We first destroy the echart instance
window.graph.echarts.dispose();
$(document).unbind('keydown', disableArrowKeys);
inner.empty();
overlay.hide();
Expand Down
32 changes: 31 additions & 1 deletion openwisp_network_topology/tests/test_selenium.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
from django.contrib.staticfiles.testing import StaticLiveServerTestCase
from django.urls import reverse
from selenium import webdriver
from selenium.common.exceptions import ElementClickInterceptedException
from selenium.common.exceptions import (
ElementClickInterceptedException,
TimeoutException,
)
from selenium.webdriver.common.by import By
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait
from swapper import load_model
Expand Down Expand Up @@ -109,6 +113,14 @@ def _assert_topology_graph(self):
WebDriverWait(self.web_driver, 2).until(
EC.visibility_of_element_located((By.CLASS_NAME, 'njg-aboutContainer'))
)
try:
# Check the visibility of the topology graph
WebDriverWait(self.web_driver, 2).until(
EC.visibility_of_element_located((By.XPATH, '//div[1]/canvas'))
)
except TimeoutException:
self.fail('The topology graph did not render')

console_logs = self.web_driver.get_log('browser')
console_errors = self._get_console_errors(console_logs)
self.assertEqual(console_errors, [])
Expand Down Expand Up @@ -169,3 +181,21 @@ def test_topology_admin_visualizer_multiple_close_btn_append(self):
self.web_driver.find_element(By.CLASS_NAME, 'closeBtn').click()
except ElementClickInterceptedException:
self.fail('Multiple "closeBtn" are present in the visualizer DOM')

def test_topology_admin_esc_key_close_visualizer(self):
path = reverse(f'{self.prefix}_topology_change', args=[self.topology.pk])
self.login(username=self.admin_username, password=self.admin_password)
self.open(path)
self.web_driver.find_element(By.CSS_SELECTOR, 'input.visualizelink').click()
self._assert_topology_graph()
# Try to close the visualizer with the "Esc" key.
body = self.web_driver.find_element(By.TAG_NAME, 'body')
body.send_keys(Keys.ESCAPE)
# Open the visualizer again and make sure no JS errors
# are thrown when the visualizer is closed again
self.web_driver.find_element(By.CSS_SELECTOR, 'input.visualizelink').click()
self._assert_topology_graph()
self.web_driver.find_element(By.CLASS_NAME, 'closeBtn').click()
console_logs = self.web_driver.get_log('browser')
console_errors = self._get_console_errors(console_logs)
self.assertEqual(console_errors, [])
Loading