123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- # Copyright 2021-2024 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 datetime import datetime
- from unittest.mock import patch
- import pytest
- from taipy.common.config.common.frequency import Frequency
- from taipy.common.config.common.scope import Scope
- from taipy.core.cycle.cycle import Cycle
- from taipy.core.cycle.cycle_id import CycleId
- from taipy.core.data.in_memory import InMemoryDataNode
- from taipy.core.notification.notifier import Notifier
- from taipy.core.scenario.scenario import Scenario
- from taipy.core.scenario.scenario_id import ScenarioId
- from taipy.core.sequence.sequence import Sequence
- from taipy.core.sequence.sequence_id import SequenceId
- from taipy.core.submission.submission import Submission
- current_time = datetime.now()
- @pytest.fixture(scope="function")
- def current_datetime():
- return current_time
- @pytest.fixture(scope="function")
- def data_node():
- return InMemoryDataNode(
- "data_node",
- Scope.SCENARIO,
- version="random_version_number",
- properties={"default_data": "foo"},
- )
- @pytest.fixture(scope="function")
- def scenario(cycle):
- return Scenario(
- "sc",
- set(),
- {},
- set(),
- ScenarioId("SCENARIO_sc_id"),
- current_time,
- is_primary=False,
- tags={"foo"},
- cycle=None,
- version="random_version_number",
- )
- @pytest.fixture(scope="function")
- def cycle():
- example_date = datetime.fromisoformat("2021-11-11T11:11:01.000001")
- return Cycle(
- Frequency.DAILY,
- {},
- creation_date=example_date,
- start_date=example_date,
- end_date=example_date,
- name="cc",
- id=CycleId("cc_id"),
- )
- @pytest.fixture(scope="function")
- def sequence(scenario):
- return Sequence({}, [], SequenceId(f"SEQUENCE_sequence_{scenario.id}"), version="random_version_number")
- @pytest.fixture(scope="function")
- def submission():
- return Submission("entity_id", "entity_type")
- @pytest.fixture(scope="function", autouse=True)
- def init(init_notifier):
- init_notifier()
- with patch("sys.argv", ["prog"]):
- yield
- init_notifier()
- @pytest.fixture
- def init_notifier():
- def _init_notifier():
- Notifier._topics_registrations_list = {}
- return _init_notifier
|