forked from streamlit/streamlit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathst_map_test.py
94 lines (78 loc) · 3.22 KB
/
st_map_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
# 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_st_map_has_consistent_visuals(
themed_app: Page, assert_snapshot: ImageCompareFunction
):
maps = themed_app.get_by_test_id("stDeckGlJsonChart")
expect(maps).to_have_count(5)
# wait for mapbox to load
wait_for_app_run(themed_app, 15000)
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
assert_snapshot(
maps.nth(0),
name="st_map-empty",
pixel_threshold=1.0,
)
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
assert_snapshot(
maps.nth(1).locator("canvas").nth(1),
name="st_map-simple_map",
pixel_threshold=1.0,
)
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
assert_snapshot(
maps.nth(2).locator("canvas").nth(1),
name="st_map-simple_map_with_zoom",
pixel_threshold=1.0,
)
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
assert_snapshot(
maps.nth(3).locator("canvas").nth(1),
name="st_map-map_with_color_and_size_layers",
pixel_threshold=1.0,
)
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
assert_snapshot(
maps.nth(4),
name="st_map-width_and_height",
pixel_threshold=1.0,
)
def test_check_top_level_class(app: Page):
"""Check that the top level class is correctly set."""
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_map_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_map",
# The pydeck tests are a lot flakier than need be so increase the pixel threshold
pixel_threshold=1.0,
)