1
0

test_u.py 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # Copyright 2021-2024 Avaiga Private Limited
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
  4. # the License. You may obtain a copy of the License at
  5. #
  6. # http://www.apache.org/licenses/LICENSE-2.0
  7. #
  8. # Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
  9. # an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
  10. # specific language governing permissions and limitations under the License.
  11. import inspect
  12. from taipy.gui import Gui, Markdown
  13. def ws_u_assert_template(gui: Gui, helpers, value_before_update, value_after_update, payload):
  14. # Bind test variable
  15. var = value_before_update # noqa: F841
  16. # set gui frame
  17. gui._set_frame(inspect.currentframe())
  18. # Bind a page so that the variable will be evaluated as expression
  19. gui.add_page("test", Markdown("<|{var}|>"))
  20. gui.run(run_server=False)
  21. flask_client = gui._server.test_client()
  22. # WS client and emit
  23. ws_client = gui._server._ws.test_client(gui._server.get_flask())
  24. # Get the jsx once so that the page will be evaluated -> variable will be registered
  25. sid = helpers.create_scope_and_get_sid(gui)
  26. flask_client.get(f"/taipy-jsx/test?client_id={sid}")
  27. assert gui._bindings()._get_all_scopes()[sid].var == value_before_update
  28. ws_client.emit("message", {"client_id": sid, "type": "U", "name": "tpec_TpExPr_var_TPMDL_0", "payload": payload})
  29. assert gui._bindings()._get_all_scopes()[sid].var == value_after_update
  30. # assert for received message (message that would be sent to the front-end client)
  31. received_message = ws_client.get_received()
  32. assert len(received_message)
  33. helpers.assert_outward_ws_message(received_message[0], "MU", "tpec_TpExPr_var_TPMDL_0", value_after_update)
  34. def test_ws_u_string(gui: Gui, helpers):
  35. value_before_update = "a random string"
  36. value_after_update = "a random string is added"
  37. payload = {"value": value_after_update}
  38. # set gui frame
  39. gui._set_frame(inspect.currentframe())
  40. ws_u_assert_template(gui, helpers, value_before_update, value_after_update, payload)
  41. def test_ws_u_number(gui: Gui, helpers):
  42. value_before_update = 10
  43. value_after_update = "11"
  44. payload = {"value": value_after_update}
  45. # set gui frame
  46. gui._set_frame(inspect.currentframe())
  47. ws_u_assert_template(gui, helpers, value_before_update, value_after_update, payload)