forked from streamlit/streamlit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathst_form_container_association_test.py
65 lines (53 loc) · 2.22 KB
/
st_form_container_association_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
# 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 re
from playwright.sync_api import Page
from e2e_playwright.shared.app_utils import (
click_checkbox,
click_form_button,
expect_prefixed_markdown,
)
def test_form_container_association(app: Page):
"""Test association of elements to a form with different cases
with elements created in the form container and outside.
"""
# We could also use parameterized tests here, but this would
# cause some overhead and > 2x the time since it has to execute
# 30 tests instead of 3 (10 form ids * 3 browsers).
# Form id mapping whether a checkbox is inside a form
checkbox_inside_form = {
"form_0": True,
"form_1": False,
"form_2": False,
"form_3": True,
"form_4": True,
"form_5": False,
"form_6": True,
"form_7": True,
"form_8": True,
"form_9": True,
}
for form_id, is_checkbox_inside_form in checkbox_inside_form.items():
# Check the initial state of the checkbox to be False
expect_prefixed_markdown(app, f"{form_id} value:", "False", exact_match=True)
# Click on the checkbox
click_checkbox(app, re.compile(f"in {form_id}"))
# Check that only checkbox values have been updated that are outside a form
expect_prefixed_markdown(
app, f"{form_id} value:", str(not is_checkbox_inside_form), exact_match=True
)
# Submit the form
click_form_button(app, f"{form_id} submit")
# Check the checkbox value has been updated to True for all cases
expect_prefixed_markdown(app, f"{form_id} value:", "True", exact_match=True)