Sync Integ to Master
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / utils / rest / ResourceRestUtilsExternalAPI.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.ci.tests.utils.rest;
22
23 import java.util.Map;
24
25 import org.openecomp.sdc.be.model.User;
26 import org.openecomp.sdc.ci.tests.api.Urls;
27 import org.openecomp.sdc.ci.tests.config.Config;
28 import org.openecomp.sdc.ci.tests.datatypes.ResourceExternalReqDetails;
29 import org.openecomp.sdc.ci.tests.datatypes.http.HttpHeaderEnum;
30 import org.openecomp.sdc.ci.tests.datatypes.http.HttpRequest;
31 import org.openecomp.sdc.ci.tests.datatypes.http.RestResponse;
32 import org.openecomp.sdc.ci.tests.utils.Utils;
33 import org.openecomp.sdc.common.util.GeneralUtility;
34
35 import com.google.gson.Gson;
36
37 public class ResourceRestUtilsExternalAPI extends BaseRestUtils {
38         
39         public static RestResponse createResource(ResourceExternalReqDetails resourceDetails, User sdncModifierDetails)
40                         throws Exception {
41
42                 Config config = Utils.getConfig();
43                 String url = String.format(Urls.POST_EXTERNAL_API_CREATE_RESOURCE, config.getCatalogBeHost(), config.getCatalogBePort());
44
45                 String userId = sdncModifierDetails.getUserId();
46                 Map<String, String> headersMap = prepareHeadersMap(userId);
47
48                 Gson gson = new Gson();
49                 String userBodyJson = gson.toJson(resourceDetails);
50                 String calculateMD5 = GeneralUtility.calculateMD5Base64EncodedByString(userBodyJson);
51                 headersMap.put(HttpHeaderEnum.Content_MD5.getValue(), calculateMD5);
52                 headersMap.put(HttpHeaderEnum.AUTHORIZATION.getValue(), authorizationHeader);
53                 headersMap.put(HttpHeaderEnum.X_ECOMP_INSTANCE_ID.getValue(), BaseRestUtils.xEcompInstanceId);
54                 headersMap.put(HttpHeaderEnum.USER_ID.getValue(), sdncModifierDetails.getUserId());
55                 
56                 HttpRequest http = new HttpRequest();
57                 RestResponse createResourceResponse = http.httpSendPost(url, userBodyJson, headersMap);
58                 
59                 return createResourceResponse;
60         }
61         
62         
63 }