aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/aai/PresetAAIGetModelsByProject.java
blob: 96372abb4a0e0a0f6a0b4c9670f6c0ffa5650f56 (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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
package org.onap.simulator.presetGenerator.presets.aai;

import com.google.common.collect.ImmutableMap;
import org.onap.simulator.presetGenerator.presets.BasePresets.BaseAAIPreset;
import org.springframework.http.HttpMethod;

import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.UUID;

public class PresetAAIGetModelsByProject extends BaseAAIPreset {
    private String projectName;
    private String serviceInstanceId;

    public PresetAAIGetModelsByProject(String projectName) {
        this.projectName = projectName;
        ImmutableMap servicesPerProject = ImmutableMap.of ("x1","7e4f8130-5dee-47c4-8770-1abc5f5ded83",
                "yyy1","13695dfb-db99-4c2f-905e-fe7bf2fc7b9f");
        this.serviceInstanceId = (servicesPerProject.containsKey(projectName)) ? servicesPerProject.get(projectName).toString(): UUID.randomUUID().toString();
    }

    @Override
    public HttpMethod getReqMethod() {
        return HttpMethod.GET;
    }

    @Override
    public String getReqPath() {
        return getRootPath() + "/business/projects";
    }

    @Override
    public Map<String, List> getQueryParams() {
        return ImmutableMap.of(
                "project-name", Collections.singletonList(projectName)
        );
    }

    @Override
    public Object getResponseBody() {
        return "{" +
                "  \"project\": [" +
                "    {" +
                "      \"project-name\": \"" + projectName + "\"," +
                "      \"resource-version\": \"1527026201826\"," +
                "      \"relationship-list\": {" +
                "        \"relationship\": [" +
                "          {" +
                "            \"related-to\": \"service-instance\"," +
                "            \"relationship-label\": \"org.onap.relationships.inventory.Uses\"," +
                "            \"related-link\": \"/aai/v12/business/customers/customer/a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb/service-subscriptions/service-subscription/Mobility/service-instances/service-instance/3f826016-3ac9-4928-9561-beee75fd91d5\"," +
                "            \"relationship-data\": [" +
                "              {" +
                "                \"relationship-key\": \"customer.global-customer-id\"," +
                "                \"relationship-value\": \"a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb\"" +
                "              }," +
                "              {" +
                "                \"relationship-key\": \"service-subscription.service-type\"," +
                "                \"relationship-value\": \"Mobility\"" +
                "              }," +
                "              {" +
                "                \"relationship-key\": \"service-instance.service-instance-id\"," +
                "                \"relationship-value\": \"3f826016-3ac9-4928-9561-beee75fd91d5\"" +
                "              }" +
                "            ]," +
                "            \"related-to-property\": [" +
                "              {" +
                "                \"property-key\": \"service-instance.service-instance-name\"," +
                "                \"property-value\": \"Lital_SRIOV2_001\"" +
                "              }" +
                "            ]" +
                "          }," +
                "          {" +
                "            \"related-to\": \"service-instance\"," +
                "            \"relationship-label\": \"org.onap.relationships.inventory.Uses\"," +
                "            \"related-link\": \"/aai/v12/business/customers/customer/DHV1707-TestSubscriber-2/service-subscriptions/service-subscription/HNGATEWAY/service-instances/service-instance/45713f81-04b8-4fd0-b824-64536d493984\"," +
                "            \"relationship-data\": [" +
                "              {" +
                "                \"relationship-key\": \"customer.global-customer-id\"," +
                "                \"relationship-value\": \"DHV1707-TestSubscriber-2\"" +
                "              }," +
                "              {" +
                "                \"relationship-key\": \"service-subscription.service-type\"," +
                "                \"relationship-value\": \"HNGATEWAY\"" +
                "              }," +
                "              {" +
                "                \"relationship-key\": \"service-instance.service-instance-id\"," +
                "                \"relationship-value\": \"45713f81-04b8-4fd0-b824-64536d493984\"" +
                "              }" +
                "            ]," +
                "            \"related-to-property\": [" +
                "              {" +
                "                \"property-key\": \"service-instance.service-instance-name\"," +
                "                \"property-value\": \"kkkk\"" +
                "              }" +
                "            ]" +
                "          }," +
                "          {" +
                "            \"related-to\": \"service-instance\"," +
                "            \"relationship-label\": \"org.onap.relationships.inventory.BelongsTo\"," +
                "            \"related-link\": \"/aai/v12/business/customers/customer/a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb/service-subscriptions/service-subscription/vMOG/service-instances/service-instance/" + serviceInstanceId + "\"," +
                "            \"relationship-data\": [" +
                "              {" +
                "                \"relationship-key\": \"customer.global-customer-id\"," +
                "                \"relationship-value\": \"a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb\"" +
                "              }," +
                "              {" +
                "                \"relationship-key\": \"service-subscription.service-type\"," +
                "                \"relationship-value\": \"vMOG\"" +
                "              }," +
                "              {" +
                "                \"relationship-key\": \"service-instance.service-instance-id\"," +
                "                \"relationship-value\": \"" + serviceInstanceId + "\"" +
                "              }" +
                "            ]," +
                "            \"related-to-property\": [" +
                "              {" +
                "                \"property-key\": \"service-instance.service-instance-name\"," +
                "                \"property-value\": \"FIRSTNET_DEMO\"" +
                "              }" +
                "            ]" +
                "          }," +
                "          {" +
                "            \"related-to\": \"service-instance\"," +
                "            \"relationship-label\": \"org.onap.relationships.inventory.Uses\"," +
                "            \"related-link\": \"/aai/v12/business/customers/customer/a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb/service-subscriptions/service-subscription/Mobility/service-instances/service-instance/ff2d9326-1ef5-4760-aba0-0eaf372ae675\"," +
                "            \"relationship-data\": [" +
                "              {" +
                "                \"relationship-key\": \"customer.global-customer-id\"," +
                "                \"relationship-value\": \"a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb\"" +
                "              }," +
                "              {" +
                "                \"relationship-key\": \"service-subscription.service-type\"," +
                "                \"relationship-value\": \"Mobility\"" +
                "              }," +
                "              {" +
                "                \"relationship-key\": \"service-instance.service-instance-id\"," +
                "                \"relationship-value\": \"ff2d9326-1ef5-4760-aba0-0eaf372ae675\"" +
                "              }" +
                "            ]," +
                "            \"related-to-property\": [" +
                "              {" +
                "                \"property-key\": \"service-instance.service-instance-name\"," +
                "                \"property-value\": \"VNF_INSTANCE_DEMO_THREE\"" +
                "              }" +
                "            ]" +
                "          }" +
                "        ]" +
                "      }" +
                "    }" +
                "  ]" +
                "}";
    }


}