Update project structure to org.onap
[dmaap/datarouter.git] / datarouter-prov / src / test / java / datarouter / provisioning / testCleanup.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  * * 
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  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  * *
22  ******************************************************************************/
23
24 package datarouter.provisioning;
25
26 import static org.junit.Assert.fail;
27
28 import java.io.IOException;
29
30 import org.apache.http.HttpEntity;
31 import org.apache.http.HttpResponse;
32 import org.apache.http.client.methods.HttpDelete;
33 import org.apache.http.util.EntityUtils;
34 import org.json.JSONArray;
35 import org.json.JSONObject;
36 import org.junit.Before;
37 import org.junit.Test;
38 import org.onap.dmaap.datarouter.provisioning.FeedServlet;
39
40 public class testCleanup extends testBase {
41         @Before
42         public void setUp() throws Exception {
43                 super.setUp();
44                 getDBstate();
45         }
46
47         @Test
48         public void testNormal() {
49                 // Delete all feeds w/JUnit as publisher
50                 JSONArray ja = db_state.getJSONArray("feeds");
51                 for (int i = 0; i < ja.length(); i++) {
52                         JSONObject feed = ja.getJSONObject(i);
53                         if (feed != null && !feed.getBoolean("deleted")) {
54                                 if (feed.getString("publisher").equals("JUnit")) {
55                                         int feedid = feed.getInt("feedid");
56                                         delete("/feed/"+feedid);
57                                 }
58                         }
59                 }
60                 // Delete all subscriptions w/JUnit as subscriber
61                 ja = db_state.getJSONArray("subscriptions");
62                 for (int i = 0; i < ja.length(); i++) {
63                         JSONObject sub = ja.getJSONObject(i);
64                         if (sub != null && sub.getString("subscriber").equals("JUnit")) {
65                                 int subid = sub.getInt("subid");
66                                 delete("/subs/"+subid);
67                         }
68                 }
69         }
70         private void delete(String uri) {
71                 String url = props.getProperty("test.host") + uri;;
72                 HttpDelete del = new HttpDelete(url);
73                 try {
74                         del.addHeader(FeedServlet.BEHALF_HEADER, "JUnit");
75                         HttpResponse response = httpclient.execute(del);
76                         HttpEntity entity = response.getEntity();
77                         EntityUtils.consume(entity);
78                 } catch (IOException e) {
79                         fail(e.getMessage());
80                 } finally {
81                         del.releaseConnection();
82                 }
83         }
84 }