Skip to content
Snippets Groups Projects
test_backend.py 2.02 KiB
Newer Older
  • Learn to ignore specific revisions
  • Waleed Akbar's avatar
    Waleed Akbar committed
    # Copyright 2022-2024 ETSI OSG/SDG TeraFlowSDN (TFS) (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
    
    from typing import Dict
    from .messages import create_collector_request
    
    Waleed Akbar's avatar
    Waleed Akbar committed
    from common.tools.kafka.Variables import KafkaTopic
    
    from telemetry.backend.service.TelemetryBackendService import TelemetryBackendService
    
    import time
    
    Waleed Akbar's avatar
    Waleed Akbar committed
    
    LOGGER = logging.getLogger(__name__)
    
    
    ###########################
    # Tests Implementation of Telemetry Backend
    ###########################
    
    # --- "test_validate_kafka_topics" should be run before the functionality tests ---
    
    def test_validate_kafka_topics():
        LOGGER.debug(" >>> test_validate_kafka_topics: START <<< ")
        response = KafkaTopic.create_all_topics()
        assert isinstance(response, bool)
    
    Waleed Akbar's avatar
    Waleed Akbar committed
    
    
    # def test_RunRequestListener():
    #     LOGGER.info('test_RunRequestListener')
    #     TelemetryBackendServiceObj = TelemetryBackendService()
    
    #     threading.Thread(target=TelemetryBackendServiceObj.RequestListener).start()
    
    def test_RunInitiateCollectorBackend():
        LOGGER.debug(">>> RunInitiateCollectorBackend <<<")
        collector_obj = create_collector_request()
        collector_id = collector_obj.collector_id.collector_id.uuid
        collector_dict :  Dict = {
            "kpi_id"  : collector_obj.kpi_id.kpi_id.uuid,
            "duration": collector_obj.duration_s,
            "interval": collector_obj.interval_s
        }
        TeleObj = TelemetryBackendService()
        TeleObj.InitiateCollectorBackend(collector_id, collector_dict)
        time.sleep(20)
    
        LOGGER.debug("--- Execution Finished Sucessfully---")