summaryrefslogtreecommitdiffstats
path: root/nokiav2/driver/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/nokia/ct/CTDirectReal.java
blob: 2bd0820cd5d1090c41f17d717ed4cb6600ccd25c (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
/*
 * Copyright 2016-2017, Nokia Corporation
 *
 * 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.
 */

package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.ct;

import com.google.gson.JsonObject;
import com.nokia.cbam.lcm.v32.model.*;
import java.util.ArrayList;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.NokiaSvnfmApplication;
import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.AAIExternalSystemInfoProvider;
import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.notification.AAINotificationProcessor;
import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util.SystemFunctions;
import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.ReportedAffectedConnectionPoints;
import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.ReportedAffectedCp;
import org.onap.vnfmdriver.model.VimInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.junit4.SpringRunner;

import static java.util.Optional.of;

@RunWith(value = SpringRunner.class)
@SpringBootTest(classes = NokiaSvnfmApplication.class, webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT)
@ActiveProfiles("direct")
public class CTDirectReal {
    @Autowired
    private AAIExternalSystemInfoProvider externalSystemInfoProvider;
    @Autowired
    private AAINotificationProcessor notificationProcessor;

    /**
     * The following is not a real test, but only start the driver locally.
     * It takes parameters from application-real.properties
     */
    @Test
    public void testBasicWorkflow() throws Exception {
        VimInfo nokia_regionOne = externalSystemInfoProvider.getVimInfo("Nokia_RegionOne");

        VnfLifecycleChangeNotification recievedNot = new VnfLifecycleChangeNotification();
        recievedNot.setVnfInstanceId("CBAM-d8deb02a7a51449dba576ac9eabb55b8");
        ReportedAffectedConnectionPoints affectedConnectionPoints = new ReportedAffectedConnectionPoints();
        recievedNot.setAffectedVirtualLinks(new ArrayList<>());
        AffectedVirtualLink link = new AffectedVirtualLink();
        recievedNot.getAffectedVirtualLinks().add(link);
        link.setId("vlid1");
        link.setChangeType(ChangeType.REMOVED);
        link.setVirtualLinkDescId("vldId1");
        link.setResource(new ResourceHandle());
        link.getResource().setResourceId("netProviderId1");
        link.getResource().setAdditionalData(additionalData("name", "networkName"));
        recievedNot.setAffectedVnfcs(new ArrayList<>());
        AffectedVnfc vnfc = new AffectedVnfc();
        vnfc.setId("myVnfcId1");
        vnfc.setChangeType(ChangeType.ADDED);
        vnfc.setVduId("myVduId");
        vnfc.setStorageResourceIds(new ArrayList<>());
        vnfc.setComputeResource(new ResourceHandle());
        vnfc.getComputeResource().setResourceId("serverProvId1");
        JsonObject additionalData = additionalData("name", "serverName");
        additionalData.addProperty("tenantId", "de8fd0d1d5874503a47b920c10f4322a");
        vnfc.getComputeResource().setAdditionalData(additionalData);
        recievedNot.getAffectedVnfcs().add(vnfc);
        ReportedAffectedCp addedCp = new ReportedAffectedCp();
        addedCp.setCpId("cpId");
        addedCp.setIpAddress("1.2.3.4");
        addedCp.setMacAddress("a:b:c:d:e:f");
        addedCp.setNetworkProviderId("netProviderId1");
        addedCp.setServerProviderId("serverProvId1");
        addedCp.setProviderId("portId");
        addedCp.setTenantId("de8fd0d1d5874503a47b920c10f4322a");
        addedCp.setCpdId("cpdId");
        affectedConnectionPoints.getPost().add(addedCp);
        notificationProcessor.processNotification(recievedNot, null, of(affectedConnectionPoints), "Nokia_RegionOne");
        SystemFunctions.systemFunctions().sleep(10000000 * 1000L);
    }

    JsonObject additionalData(String key, String value) {
        JsonObject jsonObject = new JsonObject();
        jsonObject.addProperty(key, value);
        return jsonObject;
    }


}
)) return True def blueprints_upload(file, name, url): try: run("cfy blueprints upload -n {0} -b {1} {2}".format(file, name, url)) except Exception as e: raise NonRecoverableError(str(e)) return True def create(private_ip, public_ip, rpm, secrets, blueprints, config_path=CONFIG_PATH, password=None, **_): ctx.logger.info("Installing Cloudify Manager components.") try: run("echo Hello") except Exception as e: raise RecoverableError(str(e)) if not ctx.instance.runtime_properties.get('installed_rpm'): install_requirements() ctx.instance.runtime_properties['installed_rpm'] = install_rpm(rpm) if not ctx.instance.runtime_properties.get('updated_config'): ctx.instance.runtime_properties['updated_config'] = \ update_config(private_ip, public_ip, config_path) if 'cfy_installed' not in ctx.instance.runtime_properties: cfy_install_output = cfy_install(password) else: cfy_install_output = cfy_install(password, old=True) ctx.instance.runtime_properties['cfy_installed'] = cfy_install_output if not cfy_install_output: raise RecoverableError('cfy install failed.') if not ctx.instance.runtime_properties.get('plugins_uploaded'): try: run( "cfy plugins upload https://nexus.onap.org/content/sites/raw/org.onap.ccsdk.platform.plugins/plugins/helm-3.0.0-py27-none-linux_x86_64.wgn -y https://nexus.onap.org/content/sites/raw/org.onap.ccsdk.platform.plugins/type_files/helm/3.0.0/helm-type.yaml") except Exception as e: raise NonRecoverableError(str(e)) ctx.instance.runtime_properties['plugins_uploaded'] = plugins_upload() more_secrets = [ {'key': 'cfy_user', 'value': 'admin'}, {'key': 'kubernetes_master_port', 'value': 'kubernetes_master_port'}, {'key': 'kubernetes-admin_client_certificate_data', 'value': 'kubernetes-admin_client_certificate_data'}, {'key': 'kubernetes_master_ip', 'value': 'kubernetes_master_ip'}, {'key': 'kubernetes_certificate_authority_data', 'value': 'kubernetes_certificate_authority_data'}, {'key': 'kubernetes-admin_client_key_data', 'value': 'kubernetes-admin_client_key_data'}, {'key': 'cfy_password', 'value': password or 'cfy_password'}, {'key': 'cfy_tenant', 'value': 'default_tenant'}, {'key': 'kubernetes_token', 'value': 'kubernetes_token'} ] for ms in more_secrets: secrets.append(ms) for secret in secrets: secrets_create( secret.get('key'), secret.get('value')) for blueprint in blueprints: blueprints_upload( blueprint.get('file'), blueprint.get('name'), blueprint.get('url')) ctx.logger.info( "Initialize your CLI profile: " "`cfy profiles use " "{0} -u admin -p {1} -t default_tenant`".format(public_ip, password or "_")) if not password: ctx.logger.info( "Since you did not provide a password, scroll up though " "the execution log and search for \"Manager password is\".")