Update project structure to org.onap
[dmaap/datarouter.git] / datarouter-prov / src / test / java / datarouter / provisioning / testFeedDelete.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 javax.servlet.http.HttpServletResponse;
31
32 import org.apache.http.HttpEntity;
33 import org.apache.http.HttpResponse;
34 import org.apache.http.client.methods.HttpDelete;
35 import org.apache.http.util.EntityUtils;
36 import org.json.JSONArray;
37 import org.json.JSONObject;
38 import org.junit.AfterClass;
39 import org.junit.Before;
40 import org.junit.BeforeClass;
41 import org.junit.Test;
42 import org.onap.dmaap.datarouter.provisioning.FeedServlet;
43
44 public class testFeedDelete extends testBase {
45         @BeforeClass
46         public static void setUpBeforeClass() throws Exception {
47         }
48
49         @AfterClass
50         public static void tearDownAfterClass() throws Exception {
51         }
52
53         @Before
54         public void setUp() throws Exception {
55                 super.setUp();
56                 getDBstate();
57         }
58
59         @Test
60         public void testDeleteNormal() {
61                 // Delete the first non-deleted feed in the DB
62                 JSONArray ja = db_state.getJSONArray("feeds");
63                 for (int i = ja.length()-1; i >= 0; i--) {
64                         JSONObject feed = ja.getJSONObject(i);
65                         if (!feed.getBoolean("deleted")) {
66                                 int feedid = feed.getInt("feedid");
67                                 testCommon(HttpServletResponse.SC_NO_CONTENT, "/feed/"+feedid);
68                                 return;
69                         }
70                 }
71         }
72         @Test
73         public void testDeleteNoFeedID() {
74                 testCommon(HttpServletResponse.SC_BAD_REQUEST, "/feed/");
75         }
76         @Test
77         public void testDeleteNoFeed() {
78                 testCommon(HttpServletResponse.SC_NOT_FOUND, "/feed/999999");
79         }
80         private void testCommon(int expect, String uri) {
81                 String url = props.getProperty("test.host") + uri;
82                 HttpDelete del = new HttpDelete(url);
83                 try {
84                         del.addHeader(FeedServlet.BEHALF_HEADER, "JUnit");
85
86                         HttpResponse response = httpclient.execute(del);
87                     ckResponse(response, expect);
88
89                         HttpEntity entity = response.getEntity();
90                         EntityUtils.consume(entity);
91                 } catch (IOException e) {
92                         fail(e.getMessage());
93                 } finally {
94                         del.releaseConnection();
95                 }
96         }
97 }