[DMAAP-48] Initial code import
[dmaap/datarouter.git] / datarouter-prov / src / test / java / datarouter / provisioning / testDRFeedsDelete.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.junit.Test;
37
38 import com.att.research.datarouter.provisioning.FeedServlet;
39
40 public class testDRFeedsDelete extends testBase {
41         @Test
42         public void testNotAllowed() {
43                 String url = props.getProperty("test.host") + "/";
44                 HttpDelete del = new HttpDelete(url);
45                 try {
46                         del.addHeader(FeedServlet.BEHALF_HEADER, "JUnit");
47
48                         HttpResponse response = httpclient.execute(del);
49                     ckResponse(response, HttpServletResponse.SC_METHOD_NOT_ALLOWED);
50
51                         HttpEntity entity = response.getEntity();
52                         EntityUtils.consume(entity);
53                 } catch (IOException e) {
54                         fail(e.getMessage());
55                 } finally {
56                         del.releaseConnection();
57                 }
58         }
59 }