123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- # Copyright 2021-2025 Avaiga Private Limited
- #
- # 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 inspect
- import warnings
- import pytest
- from taipy.gui import Gui, Markdown, close_notification, notify
- from taipy.gui.servers import get_request_meta
- from taipy.gui.servers.request import RequestAccessor
- @pytest.mark.skip_if_not_server("flask")
- def test_notify(gui: Gui, helpers):
- # set gui frame
- gui._set_frame(inspect.currentframe())
- gui.add_page("test", Markdown("<|Hello|button|>"))
- gui.run(run_server=False)
- server_client = gui._server.test_client()
- # WS client and emit
- ws_client = gui._server._ws.test_client(gui._server.get_server_instance()) # type: ignore[arg-type]
- cid = helpers.create_scope_and_get_sid(gui)
- server_client.get(f"/taipy-jsx/test?client_id={cid}")
- with gui._server.test_request_context(f"/taipy-jsx/test/?client_id={cid}", data={"client_id": cid}):
- get_request_meta().client_id = cid
- notify_id = notify(gui._Gui__state, "Info", "Message", id="id") # type: ignore[attr-defined]
- assert notify_id == "id"
- received_messages = ws_client.get_received()
- helpers.assert_outward_ws_simple_message(
- received_messages[0], "AL", {"nType": "Info", "message": "Message", "notificationId": "id"}
- )
- @pytest.mark.skip_if_not_server("fastapi")
- @pytest.mark.teste2e
- def test_notify_fastapi(gui: Gui, helpers):
- # set gui frame
- gui._set_frame(inspect.currentframe())
- gui.add_page("test", Markdown("<|Hello|button|>"))
- gui.run(run_server=False)
- helpers.run_e2e_multi_client(gui)
- ws_client = helpers.get_socketio_test_client()
- cid = helpers.create_scope_and_get_sid(gui)
- sid = ws_client.get_sid()
- ws_client.get(f"/taipy-jsx/test?client_id={cid}")
- with gui.get_app_context():
- RequestAccessor.set_sid(sid)
- get_request_meta().client_id = cid
- notify_id = notify(gui._Gui__state, "Info", "Message", id="id") # type: ignore[attr-defined]
- assert notify_id == "id"
- received_messages = ws_client.get_received()
- try:
- helpers.assert_outward_ws_simple_message(
- received_messages[0], "AL", {"nType": "Info", "message": "Message", "notificationId": "id"}
- )
- finally:
- ws_client.disconnect()
- def test_bad_notify(gui: Gui, helpers):
- with warnings.catch_warnings(record=True) as records:
- notify_id = notify(None, "Info", "Message", id="id") # type: ignore[arg-type]
- assert notify_id is None
- assert len(records) == 1
- @pytest.mark.skip_if_not_server("flask")
- def test_close_notification(gui: Gui, helpers):
- # set gui frame
- gui._set_frame(inspect.currentframe())
- gui.add_page("test", Markdown("<|Hello|button|>"))
- gui.run(run_server=False)
- server_client = gui._server.test_client()
- # WS client and emit
- ws_client = gui._server._ws.test_client(gui._server.get_server_instance()) # type: ignore[arg-type]
- cid = helpers.create_scope_and_get_sid(gui)
- # Get the jsx once so that the page will be evaluated -> variable will be registered
- server_client.get(f"/taipy-jsx/test?client_id={cid}")
- with gui._server.test_request_context(f"/taipy-jsx/test/?client_id={cid}", data={"client_id": cid}):
- get_request_meta().client_id = cid
- notify_id = notify(gui._Gui__state, "Info", "Message", id="id") # type: ignore[attr-defined]
- close_notification(gui._Gui__state, notify_id) # type: ignore[attr-defined, arg-type]
- received_messages = ws_client.get_received()
- helpers.assert_outward_ws_simple_message(
- received_messages[0], "AL", {"nType": "Info", "message": "Message", "notificationId": "id"}
- )
- helpers.assert_outward_ws_simple_message(received_messages[1], "AL", {"nType": "", "notificationId": "id"})
- @pytest.mark.skip_if_not_server("fastapi")
- @pytest.mark.teste2e
- def test_close_notification_fastapi(gui: Gui, helpers):
- # set gui frame
- gui._set_frame(inspect.currentframe())
- gui.add_page("test", Markdown("<|Hello|button|>"))
- gui.run(run_server=False)
- helpers.run_e2e_multi_client(gui)
- ws_client = helpers.get_socketio_test_client()
- cid = helpers.create_scope_and_get_sid(gui)
- sid = ws_client.get_sid()
- ws_client.get(f"/taipy-jsx/test?client_id={cid}")
- with gui.get_app_context():
- RequestAccessor.set_sid(sid)
- get_request_meta().client_id = cid
- notify_id = notify(gui._Gui__state, "Info", "Message", id="id") # type: ignore[attr-defined]
- close_notification(gui._Gui__state, notify_id) # type: ignore[attr-defined, arg-type]
- received_messages = ws_client.get_received()
- try:
- helpers.assert_outward_ws_simple_message(
- received_messages[0], "AL", {"nType": "Info", "message": "Message", "notificationId": "id"}
- )
- helpers.assert_outward_ws_simple_message(received_messages[1], "AL", {"nType": "", "notificationId": "id"})
- finally:
- ws_client.disconnect()
- def test_bad_close_notification(gui: Gui, helpers):
- with warnings.catch_warnings(record=True) as records:
- close_notification(None, "id") # type: ignore[arg-type]
- assert len(records) == 1
|