re base code
[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 com.google.gson.Gson;
24 import org.openecomp.sdc.be.model.User;
25 import org.openecomp.sdc.ci.tests.api.Urls;
26 import org.openecomp.sdc.ci.tests.config.Config;
27 import org.openecomp.sdc.ci.tests.datatypes.ResourceExternalReqDetails;
28 import org.openecomp.sdc.ci.tests.datatypes.http.HttpHeaderEnum;
29 import org.openecomp.sdc.ci.tests.datatypes.http.HttpRequest;
30 import org.openecomp.sdc.ci.tests.datatypes.http.RestResponse;
31 import org.openecomp.sdc.ci.tests.utils.Utils;
32 import org.openecomp.sdc.common.util.GeneralUtility;
33
34 import java.util.Map;
35
36 public class ResourceRestUtilsExternalAPI extends BaseRestUtils {
37         
38         public static RestResponse createResource(ResourceExternalReqDetails resourceDetails, User sdncModifierDetails)
39                         throws Exception {
40
41                 Config config = Utils.getConfig();
42                 String url = String.format(Urls.POST_EXTERNAL_API_CREATE_RESOURCE, config.getCatalogBeHost(), config.getCatalogBePort());
43
44                 String userId = sdncModifierDetails.getUserId();
45                 Map<String, String> headersMap = prepareHeadersMap(userId);
46
47                 Gson gson = new Gson();
48                 String userBodyJson = gson.toJson(resourceDetails);
49                 String calculateMD5 = GeneralUtility.calculateMD5Base64EncodedByString(userBodyJson);
50                 headersMap.put(HttpHeaderEnum.Content_MD5.getValue(), calculateMD5);
51                 headersMap.put(HttpHeaderEnum.AUTHORIZATION.getValue(), authorizationHeader);
52                 headersMap.put(HttpHeaderEnum.X_ECOMP_INSTANCE_ID.getValue(), BaseRestUtils.xEcompInstanceId);
53                 headersMap.put(HttpHeaderEnum.USER_ID.getValue(), sdncModifierDetails.getUserId());
54                 
55                 HttpRequest http = new HttpRequest();
56                 RestResponse createResourceResponse = http.httpSendPost(url, userBodyJson, headersMap);
57                 
58                 return createResourceResponse;
59         }
60         
61         
62 }