Skip to content
__main__.py 1.35 KiB
Newer Older
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
# Copyright 2021-2023 H2020 TeraFlow (https://www.teraflow-h2020.eu/)
#
# 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, sys
from common.tests.LoadScenario import load_scenario_from_descriptor
from context.client.ContextClient import ContextClient
from device.client.DeviceClient import DeviceClient
from service.client.ServiceClient import ServiceClient
from slice.client.SliceClient import SliceClient

logging.basicConfig(level=logging.INFO)
LOGGER = logging.getLogger(__name__)

def main():
    context_client = ContextClient()
    device_client = DeviceClient()
    service_client = ServiceClient()
    slice_client = SliceClient()

    LOGGER.info('Loading scenario...')
    load_scenario_from_descriptor(sys.argv[1], context_client, device_client, service_client, slice_client)
    LOGGER.info('Done!')
    return 0

if __name__ == '__main__':
    sys.exit(main())