blob: 502c92dc3b1c419c6f010cdd1e2d07289cefb925 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/usr/bin/env python
"""Simple CDS blueprint erichment test scenario."""
import logging
import time
from onapsdk.configuration import settings
from xtesting.core import testcase
from onaptests.steps.onboard.cds import CbaEnrichStep
class CDSBlueprintEnrichment(testcase.TestCase):
"""Enrich simple blueprint using CDS blueprintprocessor."""
__logger = logging.getLogger(__name__)
def __init__(self, **kwargs):
"""Init CDS blueprint enrichment use case."""
if "case_name" not in kwargs:
kwargs["case_name"] = 'basic_cds'
super(CDSBlueprintEnrichment, self).__init__(**kwargs)
self.__logger.debug("CDS blueprint enrichment initialization")
self.test = CbaEnrichStep(
cleanup=settings.CLEANUP_FLAG)
self.start_time = None
self.stop_time = None
self.result = 0
def run(self):
self.__logger.debug("CDS blueprint enrichment run")
self.start_time = time.time()
self.test.execute()
self.result = 100
self.stop_time = time.time()
def clean(self):
"""Clean Additional resources if needed."""
self.__logger.info("Generate Test report")
self.test.reports_collection.generate_report()
|