forked from streamlit/streamlit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathst_pydeck_chart_test.py
109 lines (91 loc) · 4.02 KB
/
st_pydeck_chart_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2024)
#
# 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 pytest
from playwright.sync_api import Page, expect
from e2e_playwright.conftest import ImageCompareFunction, wait_for_app_run
from e2e_playwright.shared.app_utils import check_top_level_class
from e2e_playwright.shared.toolbar_utils import (
assert_fullscreen_toolbar_button_interactions,
)
# Firefox seems to be failing but can't reproduce locally and video produces an empty page for firefox
@pytest.mark.skip_browser("firefox")
def test_pydeck_chart_has_consistent_visuals(
themed_app: Page, assert_snapshot: ImageCompareFunction
):
# The pydeck chart takes a while to load so check that
# it gets attached with an increased timeout.
pydeck_charts = themed_app.get_by_test_id("stDeckGlJsonChart")
expect(pydeck_charts).to_have_count(6, timeout=15000)
# The map assets can take more time to load, add an extra timeout
# to prevent flakiness.
themed_app.wait_for_timeout(10000)
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
assert_snapshot(
pydeck_charts.nth(0),
name="st_pydeck_chart-empty",
pixel_threshold=1.0,
)
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
assert_snapshot(
pydeck_charts.nth(1).locator("canvas").nth(0),
name="st_pydeck_chart-san_francisco_overridden_light_theme",
pixel_threshold=1.0,
)
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
assert_snapshot(
pydeck_charts.nth(2).locator("canvas").nth(1),
name="st_pydeck_chart-continents",
pixel_threshold=1.0,
)
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
assert_snapshot(
pydeck_charts.nth(3).locator("canvas").nth(1),
name="st_pydeck_chart-geo_layers",
pixel_threshold=1.0,
)
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
assert_snapshot(
pydeck_charts.nth(4).locator("canvas").nth(1),
name="st_pydeck_chart-no_overridden_theme",
pixel_threshold=1.0,
)
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
assert_snapshot(
pydeck_charts.nth(5).locator("canvas").nth(1),
name="st_pydeck_chart-custom_width_height",
pixel_threshold=1.0,
)
def test_check_top_level_class(app: Page):
"""Check that the top level class is correctly set."""
# The pydeck chart takes a while to load so check that
# it gets attached with an increased timeout.
pydeck_charts = app.get_by_test_id("stDeckGlJsonChart")
expect(pydeck_charts.first).to_be_attached(timeout=15000)
check_top_level_class(app, "stDeckGlJsonChart")
# Firefox seems to be failing but can't reproduce locally and video produces an empty page for firefox
@pytest.mark.skip_browser("firefox")
def test_st_pydeck_clicking_on_fullscreen_toolbar_button(
app: Page, assert_snapshot: ImageCompareFunction
):
"""Test that clicking on fullscreen toolbar button expands the map into fullscreen."""
# wait for mapbox to load
wait_for_app_run(app, 15000)
assert_fullscreen_toolbar_button_interactions(
app,
assert_snapshot=assert_snapshot,
widget_test_id="stDeckGlJsonChart",
filename_prefix="st_pydeck_chart",
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
pixel_threshold=1.0,
)