aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/configuration/basic_cnf_macro_settings.py
blob: 56bbd81129bfc129d3a7add7f9f73ca6a4e37b85 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import os
from pathlib import Path
from uuid import uuid4
from yaml import load, SafeLoader

from onaptests.utils.resources import get_resource_location
import onaptests.utils.exceptions as onap_test_exceptions
from .settings import *  # noqa

""" Specific basic_cnf_macro with multicloud-k8s and yaml config scenario."""
SERVICE_DETAILS = ("Onboarding, distribution and instantiation of a Apache CNF " +
                   "using macro and native CNF path: cnf-adapter + K8sPlugin")
SERVICE_COMPONENTS = "SDC, DMAAP, AAI, SO, SDNC, CDS, Multicloud K8S"

CLEANUP_FLAG = True

# CDS_DD_FILE = Path(get_resource_location("templates/artifacts/dd.json"))
CDS_CBA_UNENRICHED = Path("no_such_file")
CDS_CBA_ENRICHED = Path(get_resource_location("templates/artifacts/basic_cnf_cba_enriched.zip"))

# This scenario uses multicloud-k8s and not multicloud
# (no registration requested)
USE_MULTICLOUD = False
# Set ONLY_INSTANTIATE to true to run an instantiation without repeating
# onboarding and related AAI configuration (Cloud config)
ONLY_INSTANTIATE = False

# Relative path to config file to set k8s connectivity information
K8S_CONFIG = get_resource_location("templates/artifacts/config")

VENDOR_NAME = "basiccnf_macro_vendor"

CLOUD_REGION_CLOUD_OWNER = "basiccnf-cloud-owner"  # must not contain _
CLOUD_REGION_ID = "k8sregion-cnf-macro"
CLOUD_REGION_TYPE = "k8s"
CLOUD_REGION_VERSION = "1.0"
CLOUD_DOMAIN = "Default"
CLOUD_OWNER_DEFINED_TYPE = "t1"

COMPLEX_PHYSICAL_LOCATION_ID = "lannion"
COMPLEX_DATA_CENTER_CODE = "1234-5"
AVAILABILITY_ZONE_NAME = "basiccnf-availability-zone"
AVAILABILITY_ZONE_TYPE = "nova"

GLOBAL_CUSTOMER_ID = "basiccnf-macro-customer"

OWNING_ENTITY = "basicnf_macro_owning_entity"
PROJECT = "basicnf_macro_project"
LINE_OF_BUSINESS = "basicnf_macro_lob"
PLATFORM = "basicnf_macro_platform"

# The cloud Part
# Assuming a cloud.yaml is available, use the openstack client
# to retrieve cloud info and avoid data duplication
# For basic_cnf, no tenant information is required but some dummy
# information shall be provided by default
# So it is not requested to set OS_TEST_CLOUD
TEST_CLOUD = os.getenv('OS_TEST_CLOUD')
VIM_USERNAME = 'dummy'
VIM_PASSWORD = 'dummy123'
VIM_SERVICE_URL = 'http://10.12.25.2:5000/v3'
TENANT_ID = '123456'
TENANT_NAME = 'dummy_test'


SERVICE_YAML_TEMPLATE = Path(get_resource_location(
    "templates/vnf-services/basic_cnf_macro-service.yaml"))

try:
    # Try to retrieve the SERVICE NAME from the yaml file
    with open(SERVICE_YAML_TEMPLATE, "r") as yaml_template:
        yaml_config_file = load(yaml_template, SafeLoader)
        SERVICE_NAME = next(iter(yaml_config_file.keys()))
except (FileNotFoundError, ValueError):
    raise onap_test_exceptions.TestConfigurationException

SERVICE_INSTANCE_NAME = f"basic_cnf_macro_{str(uuid4())}"

MODEL_YAML_TEMPLATE = None