clean MR codebase
[dmaap/messagerouter/msgrtr.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 import java.io.InputStream;
25 import java.util.Properties;
26 import java.util.Scanner;
27
28 import javax.ws.rs.client.Client;
29 import javax.ws.rs.client.ClientBuilder;
30 import javax.ws.rs.client.Entity;
31 import javax.ws.rs.client.WebTarget;
32 import javax.ws.rs.core.Response;
33
34 import junit.framework.TestCase;
35
36 import org.apache.log4j.Logger;
37 import org.apache.http.HttpStatus;
38 import org.json.JSONObject;
39
40 import com.att.nsa.drumlin.till.data.sha1HmacSigner;
41
42 public class DmaapApiKeyTest {
43         /*
44         private static final Logger LOGGER = Logger.getLogger(DmaapApiKeyTest.class);
45         Client client = ClientBuilder.newClient();
46         Properties prop = LoadPropertyFile.getPropertyFileData();
47         String url = prop.getProperty("url");
48         WebTarget target = client.target(url);
49         String date = prop.getProperty("date");
50
51
52         public JSONObject returnKey(ApiKeyBean apikeybean) {
53                 LOGGER.info("Call to return newly created key");
54                 target = client.target(url);
55                 target = target.path("/apiKeys/create");
56                 Response response = target.request().post(Entity.json(apikeybean));
57                 assertStatus(response);
58                 LOGGER.info("successfully created keys");
59                 InputStream is = (InputStream) response.getEntity();
60                 Scanner s = new Scanner(is);
61                 s.useDelimiter("\\A");
62                 JSONObject dataObj = new JSONObject(s.next());
63                 s.close();
64                 LOGGER.info("key details :" + dataObj.toString());
65                 return dataObj;
66         }
67
68
69         public void assertStatus(Response response) {
70                 assertTrue(response.getStatus() == HttpStatus.SC_OK);
71         }
72
73         // 2. get Allkey details
74         public void testAllKey() {
75                 LOGGER.info("test case get all key");
76                 target = target.path("/apiKeys");
77                 Response response = target.request().get();
78                 assertStatus(response);
79                 LOGGER.info("successfully returned after get all key");
80                 InputStream is = (InputStream) response.getEntity();
81                 Scanner s = new Scanner(is);
82                 s.useDelimiter("\\A");
83                 LOGGER.info("Details of key: " + s.next());
84                 s.close();
85
86         }
87
88
89
90 */
91 }