aboutsummaryrefslogtreecommitdiffstats
path: root/integration_tests/test_10_msb_k8s.py
blob: 5b2c0ee5eee534d8197eab735ab7d3af4ff6a8b2 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#   Copyright 2022 Orange, Deutsche Telekom AG
#
#   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
import os

import pytest

from onapsdk.msb.k8s import (
    Definition,
    Instance,
    ConnectivityInfo)

logger = logging.getLogger("")
logger.setLevel(logging.DEBUG)
fh = logging.StreamHandler()
fh_formatter = logging.Formatter('%(asctime)s %(levelname)s %(lineno)d:%(filename)s(%(process)d) - %(message)s')
fh.setFormatter(fh_formatter)
logger.addHandler(fh)

RB_NAME = "test_definition"
RB_VERSION = "ver_1"
PROFILE_NAME = "test-profile"
PROFILE_NAMESPACE = "test"
PROFILE_K8S_VERSION = "1.0"
PROFILE_ARTIFACT_PATH = "artifacts\\profile.tar.gz"  # FILL ME
TEMPLATE_NAME = "test_template"
TEMPLATE_DESCRIPTION = "test description"
CLOUD_REGION_ID = "k8s_region_test"  # FILL ME
CLOUD_OWNER = "CloudOwner"
KUBECONFIG_PATH = "artifacts\\kubeconfig"  # FILL ME
MYPATH = os.path.dirname(os.path.realpath(__file__))

pytest.INSTANCE_ID = ""


@pytest.mark.integration
def test_definition_create_upload_artifact():
    definition = Definition.create(RB_NAME, RB_VERSION)
    definition.upload_artifact(b'definition_artifact_file')


@pytest.mark.integration
def test_definition_get_all():
    definitions = list(Definition.get_all())


@pytest.mark.integration
def test_configuration_template():
    definition = Definition.get_definition_by_name_version(RB_NAME,
                                                           RB_VERSION)
    definition.create_configuration_template(TEMPLATE_NAME, TEMPLATE_DESCRIPTION)
    definition.get_all_configuration_templates()
    definition.get_configuration_template_by_name(TEMPLATE_NAME)


@pytest.mark.integration
def test_profile_create_upload_artifact():
    definition = Definition.get_definition_by_name_version(RB_NAME,
                                                           RB_VERSION)
    profile = definition.create_profile(PROFILE_NAME,
                                        PROFILE_NAMESPACE,
                                        PROFILE_K8S_VERSION)
    profile.upload_artifact(b'profile_artifact_file')


@pytest.mark.integration
def test_profile_get_all():
    definition = Definition.get_definition_by_name_version(RB_NAME,
                                                           RB_VERSION)
    profiles = list(definition.get_all_profiles())


@pytest.mark.integration
def test_connectivity_info_create():
    conninfo = ConnectivityInfo.create(CLOUD_REGION_ID,
                                       CLOUD_OWNER,
                                       b'kubeconfig_content_test')


@pytest.mark.integration
def test_instance_create():
    definition = Definition.get_definition_by_name_version(RB_NAME,
                                                           RB_VERSION)
    profile = definition.get_profile_by_name(PROFILE_NAME)
    instance = Instance.create(CLOUD_REGION_ID,
                               profile.profile_name,
                               definition.rb_name,
                               definition.rb_version)
    pytest.INSTANCE_ID = instance.instance_id


@pytest.mark.integration
def test_instance_get_all():
    instances = list(Instance.get_all())


@pytest.mark.integration
def test_instance_delete():
    instance = Instance.get_by_id(pytest.INSTANCE_ID)
    instance.delete()


@pytest.mark.integration
def test_connectivity_info_delete():
    conninfo = ConnectivityInfo.get_connectivity_info_by_region_id(CLOUD_REGION_ID)
    conninfo.delete()


@pytest.mark.integration
def test_definition_profile_get_delete():
    definition = Definition.get_definition_by_name_version(RB_NAME, RB_VERSION)
    profile = definition.get_profile_by_name(PROFILE_NAME)
    profile.delete()
    definition.delete()