-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[vis tools] Add webdriver tests (#3656)
- add webdriver tests for the new vis tools - also use selected source information when get BQ SQL queries
- Loading branch information
1 parent
3a64da5
commit 5ecbcc0
Showing
9 changed files
with
823 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,253 @@ | ||
# Copyright 2023 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import urllib | ||
import urllib.request | ||
|
||
from selenium.webdriver.common.by import By | ||
from selenium.webdriver.support import expected_conditions as EC | ||
from selenium.webdriver.support.ui import WebDriverWait | ||
|
||
from server.webdriver.base import WebdriverBaseTest | ||
import server.webdriver.shared as shared | ||
|
||
MAP_URL = '/tools/visualization#visType=map' | ||
URL_HASH_1 = '&place=geoId/06&placeType=County&sv=%7B"dcid"%3A"Count_Person_Female"%7D' | ||
PLACE_SEARCH_CA = 'California' | ||
|
||
|
||
# Class to test the map visualization tool. | ||
class TestVisMap(WebdriverBaseTest): | ||
|
||
def test_server_and_page(self): | ||
"""Test the server can run successfully.""" | ||
self.driver.get(self.url_ + MAP_URL) | ||
|
||
# Assert 200 HTTP code: successful page load. | ||
req = urllib.request.Request(self.driver.current_url) | ||
with urllib.request.urlopen(req) as response: | ||
self.assertEqual(response.getcode(), 200) | ||
|
||
# Assert 200 HTTP code: successful JS generation. | ||
req = urllib.request.Request(self.url_ + '/visualization.js') | ||
with urllib.request.urlopen(req) as response: | ||
self.assertEqual(response.getcode(), 200) | ||
|
||
# Assert page title is correct. | ||
TITLE_TEXT = "Tools - Data Commons" | ||
WebDriverWait(self.driver, | ||
self.TIMEOUT_SEC).until(EC.title_contains(TITLE_TEXT)) | ||
self.assertEqual(TITLE_TEXT, self.driver.title) | ||
|
||
# Wait until the page has loaded. | ||
element_present = EC.presence_of_element_located( | ||
(By.CLASS_NAME, 'visualization-app')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
|
||
# Assert page heading and selected tab are correct. | ||
page_header = self.driver.find_element(By.CSS_SELECTOR, '.info-content h3') | ||
self.assertEqual(page_header.text, 'Map Explorer') | ||
selected_tab = self.driver.find_element( | ||
By.CSS_SELECTOR, ".vis-type-selector .selected .label") | ||
self.assertEqual(selected_tab.text, 'Map Explorer') | ||
|
||
def test_charts_from_url(self): | ||
"""Given the url directly, test the page shows up correctly""" | ||
self.driver.get(self.url_ + MAP_URL + URL_HASH_1) | ||
|
||
# Wait until the chart has loaded. | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(shared.charts_rendered) | ||
|
||
# Assert place name is correct. | ||
place_name_chip = self.driver.find_element( | ||
By.CSS_SELECTOR, '.selected-option-chip.place .chip-content') | ||
self.assertTrue('California' in place_name_chip.text) | ||
|
||
# Assert place type is correct. | ||
place_type_chip = self.driver.find_element( | ||
By.CSS_SELECTOR, '.selected-option-chip.place-type .chip-content') | ||
self.assertTrue('County' in place_type_chip.text) | ||
|
||
# Assert stat var is correct. | ||
stat_var_chip = self.driver.find_element( | ||
By.CSS_SELECTOR, '.selected-option-chip.stat-var .chip-content') | ||
self.assertTrue('Female Population' in stat_var_chip.text) | ||
|
||
# Assert chart is correct. | ||
chart_title = self.driver.find_element(By.CSS_SELECTOR, | ||
'.map-chart .chart-headers h4') | ||
self.assertEqual(chart_title.text, "Female Population (2021)") | ||
chart_map = self.driver.find_element(By.ID, 'map-items') | ||
map_regions = chart_map.find_elements(By.TAG_NAME, 'path') | ||
self.assertEqual(len(map_regions), 58) | ||
|
||
# Assert rankings are correct. | ||
ranking_titles = self.driver.find_elements(By.CSS_SELECTOR, | ||
'.ranking-header-section h4') | ||
self.assertEqual(len(ranking_titles), 2) | ||
self.assertEqual(ranking_titles[0].text, 'Top Places') | ||
self.assertEqual(ranking_titles[1].text, 'Bottom Places') | ||
ranking_items = self.driver.find_elements(By.CSS_SELECTOR, | ||
'.ranking-list .place-name') | ||
self.assertEqual(len(ranking_items), 10) | ||
self.assertEqual(ranking_items[0].text, 'Los Angeles County, CA') | ||
self.assertEqual(ranking_items[9].text, 'Trinity County, CA') | ||
|
||
# Click per capita and assert results are correct. | ||
per_capita_checkbox = self.driver.find_element( | ||
By.CSS_SELECTOR, | ||
'.chart-footer-options .chart-option .form-check-input') | ||
per_capita_checkbox.click() | ||
shared.wait_for_loading(self.driver) | ||
element_present = EC.presence_of_element_located((By.ID, 'map-items')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
chart_map = self.driver.find_element(By.ID, 'map-items') | ||
map_regions = chart_map.find_elements(By.TAG_NAME, 'path') | ||
self.assertEqual(len(map_regions), 58) | ||
ranking_items = self.driver.find_elements(By.CSS_SELECTOR, | ||
'.ranking-list .place-name') | ||
self.assertEqual(len(ranking_items), 10) | ||
self.assertEqual(ranking_items[0].text, 'Butte County, CA') | ||
self.assertEqual(ranking_items[9].text, 'Del Norte County, CA') | ||
|
||
# Edit source and assert results are correct. | ||
edit_source_button = self.driver.find_element( | ||
By.CLASS_NAME, 'source-selector-open-modal-button') | ||
edit_source_button.click() | ||
element_present = EC.presence_of_element_located( | ||
(By.CLASS_NAME, 'modal-body')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
source_options = self.driver.find_elements(By.CSS_SELECTOR, | ||
'.source-selector-option input') | ||
self.assertEqual(len(source_options), 4) | ||
source_options[3].click() | ||
update_button = self.driver.find_element(By.CSS_SELECTOR, | ||
'.modal-footer .btn') | ||
update_button.click() | ||
shared.wait_for_loading(self.driver) | ||
chart_title = self.driver.find_element(By.CSS_SELECTOR, | ||
'.map-chart .chart-headers h4') | ||
self.assertEqual(chart_title.text, "Female Population (2019)") | ||
chart_map = self.driver.find_element(By.ID, 'map-items') | ||
map_regions = chart_map.find_elements(By.TAG_NAME, 'path') | ||
self.assertEqual(len(map_regions), 58) | ||
ranking_items = self.driver.find_elements(By.CSS_SELECTOR, | ||
'.ranking-list .place-name') | ||
self.assertEqual(len(ranking_items), 10) | ||
self.assertEqual(ranking_items[0].text, 'Nevada County, CA') | ||
self.assertEqual(ranking_items[9].text, 'San Francisco County, CA') | ||
|
||
def test_manually_enter_options(self): | ||
"""Test entering place and stat var options manually will cause chart to | ||
show up. | ||
""" | ||
self.driver.get(self.url_ + MAP_URL) | ||
|
||
# Click the start button | ||
element_present = EC.presence_of_element_located( | ||
(By.CLASS_NAME, 'start-button')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
self.driver.find_element(By.CLASS_NAME, 'start-button').click() | ||
|
||
# Type california into the search box. | ||
element_present = EC.presence_of_element_located((By.ID, 'location-field')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
search_box_input = self.driver.find_element(By.ID, 'ac') | ||
search_box_input.send_keys(PLACE_SEARCH_CA) | ||
|
||
# Click on the first result. | ||
element_present = EC.presence_of_element_located( | ||
(By.CLASS_NAME, 'pac-item')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
first_result = self.driver.find_element(By.CSS_SELECTOR, | ||
'.pac-item:nth-child(1)') | ||
first_result.click() | ||
|
||
# Click continue | ||
element_present = EC.presence_of_element_located( | ||
(By.CLASS_NAME, 'continue-button')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
self.driver.find_element(By.CLASS_NAME, 'continue-button').click() | ||
|
||
# Wait for place types to load and click on 'County' | ||
element_present = EC.presence_of_element_located( | ||
(By.CSS_SELECTOR, '.place-type-selector .form-check-input')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
place_type_inputs = self.driver.find_elements(By.CSS_SELECTOR, | ||
'.place-type-selector label') | ||
for input in place_type_inputs: | ||
if input.text == 'County': | ||
input.click() | ||
break | ||
|
||
# Click continue | ||
element_present = EC.presence_of_element_located( | ||
(By.CLASS_NAME, 'continue-button')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
self.driver.find_element(By.CLASS_NAME, 'continue-button').click() | ||
|
||
# Choose stat var | ||
shared.wait_for_loading(self.driver) | ||
shared.click_sv_group(self.driver, "Demographics") | ||
element_present = EC.presence_of_element_located( | ||
(By.ID, 'Median_Age_Persondc/g/Demographics-Median_Age_Person')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
self.driver.find_element( | ||
By.ID, 'Median_Age_Persondc/g/Demographics-Median_Age_Person').click() | ||
|
||
# Click continue | ||
element_present = EC.presence_of_element_located( | ||
(By.CLASS_NAME, 'continue-button')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
self.driver.find_element(By.CLASS_NAME, 'continue-button').click() | ||
|
||
# Assert chart is correct. | ||
shared.wait_for_loading(self.driver) | ||
chart_title = self.driver.find_element(By.CSS_SELECTOR, | ||
'.map-chart .chart-headers h4') | ||
self.assertEqual(chart_title.text, "Median Age of Population (2021)") | ||
chart_map = self.driver.find_element(By.ID, 'map-items') | ||
map_regions = chart_map.find_elements(By.TAG_NAME, 'path') | ||
self.assertEqual(len(map_regions), 58) | ||
|
||
# Assert rankings are correct. | ||
ranking_titles = self.driver.find_elements(By.CSS_SELECTOR, | ||
'.ranking-header-section h4') | ||
self.assertEqual(len(ranking_titles), 2) | ||
self.assertEqual(ranking_titles[0].text, 'Top Places') | ||
self.assertEqual(ranking_titles[1].text, 'Bottom Places') | ||
ranking_items = self.driver.find_elements(By.CSS_SELECTOR, | ||
'.ranking-list .place-name') | ||
self.assertEqual(len(ranking_items), 10) | ||
self.assertEqual(ranking_items[0].text, 'Trinity County, CA') | ||
self.assertEqual(ranking_items[9].text, 'Kings County, CA') | ||
|
||
def test_landing_page_link(self): | ||
"""Test one of the links on the landing page | ||
""" | ||
self.driver.get(self.url_ + MAP_URL) | ||
|
||
# Click a link on the landing page | ||
element_present = EC.presence_of_element_located( | ||
(By.CLASS_NAME, 'info-content')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
self.driver.find_element(By.CSS_SELECTOR, '.info-content a').click() | ||
|
||
# Assert chart loads | ||
shared.wait_for_loading(self.driver) | ||
element_present = EC.presence_of_element_located((By.ID, 'map-items')) | ||
WebDriverWait(self.driver, self.TIMEOUT_SEC).until(element_present) | ||
chart_map = self.driver.find_element(By.ID, 'map-items') | ||
map_regions = chart_map.find_elements(By.TAG_NAME, 'path') | ||
self.assertGreater(len(map_regions), 1) |
Oops, something went wrong.