[DMAAP-DR] Remove AAF/TLS phase 1
[dmaap/datarouter.git] / datarouter-prov / src / test / java / datarouter / provisioning / IntegrationTestFeedDelete.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 jakarta.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 IntegrationTestFeedDelete extends IntegrationTestBase {
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
73     @Test
74     public void testDeleteNoFeedId() {
75         testCommon(HttpServletResponse.SC_BAD_REQUEST, "/feed/");
76     }
77
78     @Test
79     public void testDeleteNoFeed() {
80         testCommon(HttpServletResponse.SC_NOT_FOUND, "/feed/999999");
81     }
82
83     private void testCommon(int expect, String uri) {
84         String url = props.getProperty("test.host") + uri;
85         HttpDelete del = new HttpDelete(url);
86         try {
87             del.addHeader(FeedServlet.BEHALF_HEADER, "JUnit");
88
89             HttpResponse response = httpclient.execute(del);
90             ckResponse(response, expect);
91
92             HttpEntity entity = response.getEntity();
93             EntityUtils.consume(entity);
94         } catch (IOException e) {
95             fail(e.getMessage());
96         } finally {
97             del.releaseConnection();
98         }
99     }
100 }