123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- # 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.
- from unittest.mock import Mock, patch
- from taipy import Scope
- from taipy.core import Job, JobId, Scenario, Task
- from taipy.core.data.pickle import PickleDataNode
- from taipy.gui_core._context import _GuiCoreContext
- a_scenario = Scenario("scenario_config_id", None, {}, sequences={"sequence": {}})
- a_task = Task("task_config_id", {}, print)
- a_job = Job(JobId("JOB_job_id"), a_task, "submit_id", a_scenario.id)
- a_job.isfinished = lambda s: True # type: ignore[attr-defined]
- a_datanode = PickleDataNode("data_node_config_id", Scope.SCENARIO)
- def mock_core_get(entity_id):
- if entity_id == a_scenario.id:
- return a_scenario
- if entity_id == a_job.id:
- return a_job
- if entity_id == a_datanode.id:
- return a_datanode
- return a_task
- def mock_is_deletable_false(entity_id):
- return False
- def mock_is_true(entity_id):
- return True
- class MockState:
- def __init__(self, **kwargs) -> None:
- self.assign = kwargs.get("assign")
- class TestGuiCoreContext_is_deletable:
- def test_crud_scenario(self):
- with (
- patch("taipy.gui_core._context.core_get", side_effect=mock_core_get),
- patch("taipy.gui_core._context.is_deletable", side_effect=mock_is_true),
- ):
- gui_core_context = _GuiCoreContext(Mock())
- assign = Mock()
- gui_core_context.crud_scenario(
- MockState(assign=assign),
- "",
- {
- "args": [
- "",
- "",
- "",
- True,
- True,
- {"name": "name", "id": a_scenario.id},
- ],
- "error_id": "error_var",
- },
- )
- assign.assert_called_once()
- assert assign.call_args.args[0] == "error_var"
- assert str(assign.call_args.args[1]).startswith("Error deleting Scenario.")
- with patch("taipy.gui_core._context.is_deletable", side_effect=mock_is_deletable_false):
- assign.reset_mock()
- gui_core_context.crud_scenario(
- MockState(assign=assign),
- "",
- {
- "args": [
- "",
- "",
- "",
- True,
- True,
- {"name": "name", "id": a_scenario.id},
- ],
- "error_id": "error_var",
- },
- )
- assign.assert_called_once()
- assert assign.call_args.args[0] == "error_var"
- assert "is not deletable" in str(assign.call_args.args[1])
- def test_act_on_jobs(self):
- with (
- patch("taipy.gui_core._context.core_get", side_effect=mock_core_get),
- patch("taipy.gui_core._context.is_deletable", side_effect=mock_is_true),
- ):
- gui_core_context = _GuiCoreContext(Mock())
- assign = Mock()
- gui_core_context.act_on_jobs(
- MockState(assign=assign),
- "",
- {
- "args": [
- {"id": [a_job.id], "action": "delete"},
- ],
- "error_id": "error_var",
- },
- )
- assign.assert_called_once()
- assert assign.call_args.args[0] == "error_var"
- assert str(assign.call_args.args[1]).find("is not deletable.") == -1
- assign.reset_mock()
- with patch("taipy.gui_core._context.is_readable", side_effect=mock_is_deletable_false):
- gui_core_context.act_on_jobs(
- MockState(assign=assign),
- "",
- {
- "args": [
- {"id": [a_job.id], "action": "delete"},
- ],
- "error_id": "error_var",
- },
- )
- assign.assert_called_once()
- assert assign.call_args.args[0] == "error_var"
- assert "is not readable" in str(assign.call_args.args[1])
|