re base code
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / utils / rest / GroupRestUtils.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.datatypes.enums.ComponentTypeEnum;
25 import org.openecomp.sdc.be.model.Component;
26 import org.openecomp.sdc.be.model.User;
27 import org.openecomp.sdc.ci.tests.api.Urls;
28 import org.openecomp.sdc.ci.tests.config.Config;
29 import org.openecomp.sdc.ci.tests.datatypes.http.HttpHeaderEnum;
30 import org.openecomp.sdc.ci.tests.datatypes.http.RestResponse;
31 import org.openecomp.sdc.ci.tests.utils.Utils;
32
33 import java.io.IOException;
34 import java.util.HashMap;
35 import java.util.Map;
36
37 public class GroupRestUtils extends BaseRestUtils {
38         static Config config = Config.instance();
39         public static Gson gson = new Gson();
40
41         public static RestResponse getGroupById(Component component, String groupId, User user) throws IOException {
42
43                 Config config = Utils.getConfig();
44
45                 Map<String, String> headersMap = new HashMap<>();
46                 headersMap.put(HttpHeaderEnum.CONTENT_TYPE.getValue(), contentTypeHeaderData);
47                 headersMap.put(HttpHeaderEnum.ACCEPT.getValue(), acceptHeaderData);
48                 headersMap.put(HttpHeaderEnum.USER_ID.getValue(), user.getUserId());
49
50                 String url = String.format(Urls.GET_GROUP_BY_ID, config.getCatalogBeHost(), config.getCatalogBePort(),
51                                 ComponentTypeEnum.findParamByType(component.getComponentType()), component.getUniqueId(), groupId);
52
53                 RestResponse sendGetServerRequest = sendGet(url, user.getUserId(), headersMap);
54
55                 return sendGetServerRequest;
56
57         }
58
59 }