79bf624a9255929917f383a3b0864c7d750fb1fd
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / aai-simulator / src / test / java / org / onap / so / aaisimulator / utils / TestConstants.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.aaisimulator.utils;
21
22 import static org.onap.so.aaisimulator.utils.Constants.EXTERNAL_SYSTEM_ESR_VNFM_LIST_URL;
23 import org.onap.so.aaisimulator.utils.Constants;
24
25 /**
26  * @author waqas.ikram@ericsson.com
27  *
28  */
29 public class TestConstants {
30
31     public static final String SERVICE_INSTANCES_URL = "/service-instances";
32
33     public static final String SERVICE_NAME = "ServiceTest";
34
35     public static final String SERVICE_INSTANCE_ID = "ccece8fe-13da-456a-baf6-41b3a4a2bc2b";
36
37     public static final String SERVICE_INSTANCE_URL =
38             SERVICE_INSTANCES_URL + "/service-instance/" + SERVICE_INSTANCE_ID;
39
40     public static final String SERVICE_TYPE = "vCPE";
41
42     public static final String SERVICE_SUBSCRIPTIONS_URL =
43             "/service-subscriptions/service-subscription/" + SERVICE_TYPE;
44
45     public static final String GLOBAL_CUSTOMER_ID = "DemoCustomer";
46
47     public static final String CUSTOMERS_URL = Constants.CUSTOMER_URL + GLOBAL_CUSTOMER_ID;
48
49     public static final String VNF_ID = "dfd02fb5-d7fb-4aac-b3c4-cd6b60058701";
50
51     public static final String GENERIC_VNF_NAME = "EsyVnfInstantiationTest2";
52
53     public static final String GENERIC_VNF_URL = Constants.GENERIC_VNFS_URL + "/generic-vnf/";
54
55     public static final String GENERIC_VNFS_URL = "/generic-vnfs";
56
57     public static final String RELATED_TO_URL = "/related-to" + GENERIC_VNFS_URL;
58
59     public static final String PLATFORM_NAME = "PLATFORM_APP_ID_1";
60
61     public static final String LINE_OF_BUSINESS_NAME = "LINE_OF_BUSINESS_1";
62
63     public static final String CLOUD_OWNER_NAME = "CloudOwner";
64
65     public static final String CLOUD_REGION_NAME = "EtsiCloudRegion";
66
67     public static final String TENANT_ID = "693c7729b2364a26a3ca602e6f66187d";
68
69     public static final String TENANTS_TENANT = "/tenants/tenant/";
70
71     public static final String ESR_VNFM_URL = EXTERNAL_SYSTEM_ESR_VNFM_LIST_URL + "/esr-vnfm/";
72
73     public static final String ESR_VNFM_ID = "c5e99cee-1996-4606-b697-838d51d4e1a3";
74
75     public static final String ESR_VIM_ID = "EtsiVimId";
76
77     public static final String ESR_SYSTEM_INFO_LIST_URL = "/esr-system-info-list";
78
79     public static final String ESR_SYSTEM_INFO_ID = "5c067098-f2e3-40f7-a7ba-155e7c61e916";
80
81     public static final String ESR_SYSTEM_TYPE = "VNFM";
82
83     public static final String ESR_PASSWORD = "123456";
84
85     public static final String ESR_USERNAME = "vnfmadapter";
86
87     public static final String ESR_SERVICE_URL = "https://so-vnfm-simulator.onap:9095/vnflcm/v1";
88
89     public static final String ESR_VENDOR = "EST";
90
91     public static final String ESR_TYEP = "simulator";
92
93     public static final String SYSTEM_NAME = "vnfmSimulator";
94
95     public static final String VSERVER_URL = "/vservers/vserver/";
96
97     public static final String VSERVER_NAME = "CsitVServer";
98
99     public static final String VSERVER_ID = "f84fdb9b-ad7c-49db-a08f-e443b4cbd033";
100
101     private TestConstants() {}
102
103 }