forked from streamlit/streamlit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathst_camera_input_test.py
72 lines (59 loc) · 2.9 KB
/
st_camera_input_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
# 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
from e2e_playwright.shared.app_utils import check_top_level_class, get_element_by_key
@pytest.mark.skip_browser("webkit")
def test_displays_correct_number_of_elements(app: Page):
"""Test that it renders correct number of camera_input elements."""
camera_input_widgets = app.get_by_test_id("stCameraInput")
expect(camera_input_widgets).to_have_count(2)
@pytest.mark.only_browser("chromium")
def test_captures_photo(app: Page):
"""Test camera_input captures photo when 'Take photo' button clicked."""
# Wait for some timeout, until fake video stream available for camera_input
app.wait_for_timeout(3000)
take_photo_button = app.get_by_test_id("stCameraInputButton").first
# Capture a photo
take_photo_button.click()
expect(app.get_by_test_id("stImage")).to_have_count(1)
@pytest.mark.only_browser("chromium")
def test_clear_photo(app: Page):
"""Test camera_input removes photo when 'Clear photo' button clicked."""
# Wait for some timeout, until fake video stream available for camera_input
app.wait_for_timeout(3000)
take_photo_button = app.get_by_test_id("stCameraInputButton").first
# Capture a photo
take_photo_button.click()
expect(app.get_by_test_id("stImage")).to_have_count(1)
remove_photo_button = app.get_by_text("Clear photo").first
remove_photo_button.click()
expect(app.get_by_test_id("stImage")).to_have_count(0)
@pytest.mark.skip_browser("webkit")
def test_shows_disabled_widget_correctly(
themed_app: Page,
assert_snapshot: ImageCompareFunction,
):
"""Test that it renders disabled camera_input widget correctly."""
camera_input_widgets = themed_app.get_by_test_id("stCameraInput")
expect(camera_input_widgets).to_have_count(2)
disabled_camera_input = camera_input_widgets.nth(1)
assert_snapshot(disabled_camera_input, name="st_camera_input-disabled")
def test_check_top_level_class(app: Page):
"""Check that the top level class is correctly set."""
check_top_level_class(app, "stCameraInput")
def test_custom_css_class_via_key(app: Page):
"""Test that the element can have a custom css class via the key argument."""
expect(get_element_by_key(app, "camera_input_1")).to_be_visible()