-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathtest_basic_long_callback002.py
More file actions
37 lines (28 loc) · 1.47 KB
/
test_basic_long_callback002.py
File metadata and controls
37 lines (28 loc) · 1.47 KB
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
import sys
import pytest
from flaky import flaky
from tests.background_callback.utils import setup_background_callback_app
@pytest.mark.skipif(
sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up"
)
@flaky(max_runs=3)
def test_lcbc002_long_callback_running(dash_duo, manager):
with setup_background_callback_app(manager, "app2") as app:
dash_duo.start_server(app)
dash_duo.wait_for_text_to_equal("#result", "Not clicked", 15)
dash_duo.wait_for_text_to_equal("#status", "Finished", 8)
# Click button and check that status has changed to "Running"
dash_duo.find_element("#button-1").click()
dash_duo.wait_for_text_to_equal("#status", "Running", 8)
# Wait for calculation to finish, then check that status is "Finished"
dash_duo.wait_for_text_to_equal("#result", "Clicked 1 time(s)", 12)
dash_duo.wait_for_text_to_equal("#status", "Finished", 8)
# Click button twice and check that status has changed to "Running"
dash_duo.find_element("#button-1").click()
dash_duo.find_element("#button-1").click()
dash_duo.wait_for_text_to_equal("#status", "Running", 8)
# Wait for calculation to finish, then check that status is "Finished"
dash_duo.wait_for_text_to_equal("#result", "Clicked 3 time(s)", 12)
dash_duo.wait_for_text_to_equal("#status", "Finished", 8)
assert not dash_duo.redux_state_is_loading
assert dash_duo.get_logs() == []