# Copyright 2022-2023 ETSI TeraFlowSDN - TFS OSG (https://tfs.etsi.org/) # # 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 logging, pandas, pytest from typing import Dict, Tuple from common.Constants import DEFAULT_CONTEXT_NAME, DEFAULT_TOPOLOGY_NAME from common.proto.context_pb2 import ContextId, TopologyId from common.proto.forecaster_pb2 import ForecastLinkCapacityRequest, ForecastTopologyCapacityRequest from common.tools.descriptor.Loader import DescriptorLoader, check_descriptor_load_results, validate_empty_scenario from common.tools.object_factory.Context import json_context_id from common.tools.object_factory.Topology import json_topology_id from context.client.ContextClient import ContextClient from forecaster.client.ForecasterClient import ForecasterClient from forecaster.tests.Tools import compose_descriptors, read_csv from .PrepareTestScenario import ( # pylint: disable=unused-import # be careful, order of symbols is important here! mock_service, forecaster_service, context_client, monitoring_client, forecaster_client) LOGGER = logging.getLogger(__name__) LOGGER.setLevel(logging.DEBUG) JSON_ADMIN_CONTEXT_ID = json_context_id(DEFAULT_CONTEXT_NAME) ADMIN_CONTEXT_ID = ContextId(**JSON_ADMIN_CONTEXT_ID) ADMIN_TOPOLOGY_ID = TopologyId(**json_topology_id(DEFAULT_TOPOLOGY_NAME, context_id=JSON_ADMIN_CONTEXT_ID)) CSV_DATA_FILE = 'forecaster/tests/data/dataset.csv' #CSV_DATA_FILE = 'forecaster/tests/data/dataset2.csv' @pytest.fixture(scope='session') def scenario() -> Tuple[pandas.DataFrame, Dict]: df = read_csv(CSV_DATA_FILE) descriptors = compose_descriptors(df) yield df, descriptors def test_prepare_environment( context_client : ContextClient, # pylint: disable=redefined-outer-name scenario : Tuple[pandas.DataFrame, Dict] ) -> None: _, descriptors = scenario validate_empty_scenario(context_client) descriptor_loader = DescriptorLoader(descriptors=descriptors, context_client=context_client) results = descriptor_loader.process() check_descriptor_load_results(results, descriptor_loader) descriptor_loader.validate() # Verify the scenario has no services/slices response = context_client.GetContext(ADMIN_CONTEXT_ID) assert len(response.service_ids) == 0 assert len(response.slice_ids) == 0 def test_forecast_link( context_client : ContextClient, forecaster_client : ForecasterClient, ): # pylint: disable=redefined-outer-name topology = context_client.GetTopology(ADMIN_TOPOLOGY_ID) link_id = topology.link_ids[0] forecast_request = ForecastLinkCapacityRequest() forecast_request.link_id.CopyFrom(link_id) # pylint: disable=no-member forecast_request.forecast_window_seconds = 10 * 24 * 60 * 60 # 10 days in seconds forecast_reply = forecaster_client.ForecastLinkCapacity(forecast_request) assert forecast_reply.link_id == link_id # TODO: validate forecasted values def test_forecast_topology( context_client : ContextClient, forecaster_client : ForecasterClient, ): # pylint: disable=redefined-outer-name forecast_request = ForecastTopologyCapacityRequest() forecast_request.topology_id.CopyFrom(ADMIN_TOPOLOGY_ID) # pylint: disable=no-member forecast_request.forecast_window_seconds = 10 * 24 * 60 * 60 # 10 days in seconds forecast_reply = forecaster_client.ForecastTopologyCapacity(forecast_request) topology = context_client.GetTopology(ADMIN_TOPOLOGY_ID) assert len(forecast_reply.link_capacities) == len(topology.link_ids) reply_link_uuids = { link_capacity.link_id.link_uuid.uuid for link_capacity in forecast_reply.link_capacities } for link_id in topology.link_ids: assert link_id.link_uuid.uuid in reply_link_uuids # TODO: validate forecasted values def test_cleanup_environment( context_client : ContextClient, # pylint: disable=redefined-outer-name scenario : Tuple[pandas.DataFrame, Dict] ) -> None: _, descriptors = scenario # Verify the scenario has no services/slices response = context_client.GetContext(ADMIN_CONTEXT_ID) assert len(response.service_ids) == 0 assert len(response.slice_ids) == 0 # Load descriptors and validate the base scenario descriptor_loader = DescriptorLoader(descriptors=descriptors, context_client=context_client) descriptor_loader.validate() descriptor_loader.unload() validate_empty_scenario(context_client)