DMAAP-MR - Merge MR repos
[dmaap/messagerouter/messageservice.git] / src / test / java / org / onap / dmaap / mr / test / dmaap / DmaapApiKeyTest.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 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  *        http://www.apache.org/licenses/LICENSE-2.0
11  *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package org.onap.dmaap.mr.test.dmaap;
23
24 public class DmaapApiKeyTest {
25         /*
26         private static final Logger LOGGER = Logger.getLogger(DmaapApiKeyTest.class);
27         Client client = ClientBuilder.newClient();
28         Properties prop = LoadPropertyFile.getPropertyFileData();
29         String url = prop.getProperty("url");
30         WebTarget target = client.target(url);
31         String date = prop.getProperty("date");
32
33
34         public JSONObject returnKey(ApiKeyBean apikeybean) {
35                 LOGGER.info("Call to return newly created key");
36                 target = client.target(url);
37                 target = target.path("/apiKeys/create");
38                 Response response = target.request().post(Entity.json(apikeybean));
39                 assertStatus(response);
40                 LOGGER.info("successfully created keys");
41                 InputStream is = (InputStream) response.getEntity();
42                 Scanner s = new Scanner(is);
43                 s.useDelimiter("\\A");
44                 JSONObject dataObj = new JSONObject(s.next());
45                 s.close();
46                 LOGGER.info("key details :" + dataObj.toString());
47                 return dataObj;
48         }
49
50
51         public void assertStatus(Response response) {
52                 assertTrue(response.getStatus() == HttpStatus.SC_OK);
53         }
54
55         // 2. get Allkey details
56         public void testAllKey() {
57                 LOGGER.info("test case get all key");
58                 target = target.path("/apiKeys");
59                 Response response = target.request().get();
60                 assertStatus(response);
61                 LOGGER.info("successfully returned after get all key");
62                 InputStream is = (InputStream) response.getEntity();
63                 Scanner s = new Scanner(is);
64                 s.useDelimiter("\\A");
65                 LOGGER.info("Details of key: " + s.next());
66                 s.close();
67
68         }
69
70
71
72 */
73 }