forked from streamlit/streamlit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathst_text_input_test.py
228 lines (178 loc) · 8.1 KB
/
st_text_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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# 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.
from playwright.sync_api import Page, expect
from e2e_playwright.conftest import ImageCompareFunction
from e2e_playwright.shared.app_utils import (
check_top_level_class,
expect_help_tooltip,
get_element_by_key,
)
def test_text_input_widget_rendering(
themed_app: Page, assert_snapshot: ImageCompareFunction
):
"""Test that the st.text_input widgets are correctly rendered via screenshot matching."""
text_input_widgets = themed_app.get_by_test_id("stTextInput")
expect(text_input_widgets).to_have_count(11)
assert_snapshot(text_input_widgets.nth(0), name="st_text_input-default")
assert_snapshot(text_input_widgets.nth(1), name="st_text_input-value_some_text")
assert_snapshot(text_input_widgets.nth(2), name="st_text_input-value_1234")
assert_snapshot(text_input_widgets.nth(3), name="st_text_input-value_None")
assert_snapshot(text_input_widgets.nth(4), name="st_text_input-placeholder")
assert_snapshot(text_input_widgets.nth(5), name="st_text_input-disabled")
assert_snapshot(text_input_widgets.nth(6), name="st_text_input-hidden_label")
assert_snapshot(text_input_widgets.nth(7), name="st_text_input-collapsed_label")
assert_snapshot(text_input_widgets.nth(8), name="st_text_input-callback_help")
assert_snapshot(text_input_widgets.nth(9), name="st_text_input-max_chars_5")
assert_snapshot(text_input_widgets.nth(10), name="st_text_input-type_password")
def test_text_input_has_correct_initial_values(app: Page):
"""Test that st.text_input has the correct initial values."""
markdown_elements = app.get_by_test_id("stMarkdown")
expect(markdown_elements).to_have_count(12)
expected = [
"value 1: ",
"value 2: some text",
"value 3: 1234",
"value 4: None",
"value 5: ",
"value 6: default text",
"value 7: default text",
"value 8: default text",
"value 9: ",
"text input changed: False",
"value 10: 1234",
"value 11: my password",
]
for markdown_element, expected_text in zip(markdown_elements.all(), expected):
expect(markdown_element).to_have_text(expected_text, use_inner_text=True)
def test_text_input_shows_instructions_when_dirty(
app: Page, assert_snapshot: ImageCompareFunction
):
"""Test that st.text_input shows the instructions correctly when dirty."""
text_input = app.get_by_test_id("stTextInput").nth(9)
text_input_field = text_input.locator("input").first
text_input_field.fill("123")
assert_snapshot(text_input, name="st_text_input-input_instructions")
def test_text_input_limits_input_via_max_chars(app: Page):
"""Test that st.text_input correctly limits the number of characters via max_chars."""
text_input_field = app.get_by_test_id("stTextInput").nth(9).locator("input").first
# Try typing in char by char:
text_input_field.clear()
text_input_field.type("12345678")
text_input_field.press("Enter")
expect(app.get_by_test_id("stMarkdown").nth(10)).to_have_text(
"value 10: 12345", use_inner_text=True
)
# Try filling in everything at once:
text_input_field.focus()
text_input_field.fill("12345678")
text_input_field.press("Enter")
expect(app.get_by_test_id("stMarkdown").nth(10)).to_have_text(
"value 10: 12345", use_inner_text=True
)
def test_text_input_has_correct_value_on_blur(app: Page):
"""Test that st.text_input has the correct value on blur."""
first_text_input_field = (
app.get_by_test_id("stTextInput").first.locator("input").first
)
first_text_input_field.focus()
first_text_input_field.fill("hello world")
first_text_input_field.blur()
expect(app.get_by_test_id("stMarkdown").first).to_have_text(
"value 1: hello world", use_inner_text=True
)
def test_text_input_has_correct_value_on_enter(app: Page):
"""Test that st.text_input has the correct value on enter."""
first_text_input_field = (
app.get_by_test_id("stTextInput").first.locator("input").first
)
first_text_input_field.focus()
first_text_input_field.fill("hello world")
first_text_input_field.press("Enter")
expect(app.get_by_test_id("stMarkdown").first).to_have_text(
"value 1: hello world", use_inner_text=True
)
def test_text_input_has_correct_value_on_click_outside(app: Page):
"""Test that st.text_input has the correct value on click outside."""
first_text_input_field = (
app.get_by_test_id("stTextInput").first.locator("input").first
)
first_text_input_field.focus()
first_text_input_field.fill("hello world")
app.get_by_test_id("stMarkdown").first.click()
expect(app.get_by_test_id("stMarkdown").first).to_have_text(
"value 1: hello world", use_inner_text=True
)
def test_empty_text_input_behaves_correctly(app: Page):
"""Test that st.text_input behaves correctly when empty."""
# Should return None as value:
expect(app.get_by_test_id("stMarkdown").nth(3)).to_have_text(
"value 4: None", use_inner_text=True
)
# Enter value in the empty widget:
empty_text_input = app.get_by_test_id("stTextInput").nth(3)
empty_text_input_field = empty_text_input.locator("input").first
empty_text_input_field.fill("hello world")
empty_text_input_field.press("Enter")
expect(app.get_by_test_id("stMarkdown").nth(3)).to_have_text(
"value 4: hello world", use_inner_text=True
)
# Press escape to clear value:
empty_text_input_field.focus()
empty_text_input_field.clear()
empty_text_input_field.press("Enter")
# Should be set to empty string (we don't clear to None for text input):
expect(app.get_by_test_id("stMarkdown").nth(3)).to_have_text(
"value 4: ", use_inner_text=True
)
def test_calls_callback_on_change(app: Page):
"""Test that it correctly calls the callback on change."""
text_input_field = app.get_by_test_id("stTextInput").nth(8).locator("input").first
text_input_field.fill("hello world")
text_input_field.press("Enter")
expect(app.get_by_test_id("stMarkdown").nth(8)).to_have_text(
"value 9: hello world",
use_inner_text=True,
)
expect(app.get_by_test_id("stMarkdown").nth(9)).to_have_text(
"text input changed: True",
use_inner_text=True,
)
# Change differentwidget to trigger delta path change
first_text_input_field = (
app.get_by_test_id("stTextInput").first.locator("input").first
)
first_text_input_field.fill("hello world")
first_text_input_field.press("Enter")
expect(app.get_by_test_id("stMarkdown").first).to_have_text(
"value 1: hello world", use_inner_text=True
)
# Test if value is still correct after delta path change
expect(app.get_by_test_id("stMarkdown").nth(8)).to_have_text(
"value 9: hello world",
use_inner_text=True,
)
expect(app.get_by_test_id("stMarkdown").nth(9)).to_have_text(
"text input changed: False",
use_inner_text=True,
)
def test_help_tooltip_works(app: Page):
"""Test that the help tooltip is displayed on hover."""
element_with_help = app.get_by_test_id("stTextInput").nth(8)
expect_help_tooltip(app, element_with_help, "Help text")
def test_check_top_level_class(app: Page):
"""Check that the top level class is correctly set."""
check_top_level_class(app, "stTextInput")
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, "text_input9")).to_be_visible()