Update project structure to org.onap
[dmaap/datarouter.git] / datarouter-prov / src / test / java / datarouter / provisioning / testFeedPut.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.Header;
33 import org.apache.http.HttpEntity;
34 import org.apache.http.HttpResponse;
35 import org.apache.http.client.methods.HttpPut;
36 import org.apache.http.entity.ByteArrayEntity;
37 import org.apache.http.entity.ContentType;
38 import org.apache.http.util.EntityUtils;
39 import org.json.JSONArray;
40 import org.json.JSONException;
41 import org.json.JSONObject;
42 import org.json.JSONTokener;
43 import org.junit.AfterClass;
44 import org.junit.Before;
45 import org.junit.BeforeClass;
46 import org.junit.Test;
47 import org.onap.dmaap.datarouter.provisioning.FeedServlet;
48
49 public class testFeedPut extends testBase {
50         @BeforeClass
51         public static void setUpBeforeClass() throws Exception {
52         }
53
54         @AfterClass
55         public static void tearDownAfterClass() throws Exception {
56         }
57
58         @Before
59         public void setUp() throws Exception {
60                 super.setUp();
61                 getDBstate();
62         }
63
64         @Test
65         public void testPutNoFeedID() {
66                 JSONObject jo = buildFeedRequest();
67                 testCommon(jo, HttpServletResponse.SC_BAD_REQUEST, "/feed/");
68         }
69         @Test
70         public void testPutNoFeed() {
71                 JSONObject jo = buildFeedRequest();
72                 testCommon(jo, HttpServletResponse.SC_NOT_FOUND, "/feed/999999");
73         }
74         @Test
75         public void testBadContentType() {
76                 JSONObject jo = buildFeedRequest();
77                 testCommon(jo, HttpServletResponse.SC_UNSUPPORTED_MEDIA_TYPE, "bad/bad", "JUnit");
78         }
79         @Test
80         public void testChangeName() {
81                 JSONObject jo = buildFeedRequest();
82                 jo.put("name", "badname");
83                 testCommon(jo, HttpServletResponse.SC_BAD_REQUEST, FeedServlet.FEED_CONTENT_TYPE, "JUnit");
84         }
85         @Test
86         public void testChangeVersion() {
87                 JSONObject jo = buildFeedRequest();
88                 jo.put("version", "badvers");
89                 testCommon(jo, HttpServletResponse.SC_BAD_REQUEST, FeedServlet.FEED_CONTENT_TYPE, "JUnit");
90         }
91         @Test
92         public void testBadPublisher() {
93                 JSONObject jo = buildFeedRequest();
94                 testCommon(jo, HttpServletResponse.SC_BAD_REQUEST, FeedServlet.FEED_CONTENT_TYPE, "BadBadBad");
95         }
96         @Test
97         public void testChangeDescription() {
98                 JSONObject jo = buildFeedRequest();
99                 // change descr
100                 jo.put("description", "This description HAS BEEN CHANGED!!!");
101                 testCommon(jo, HttpServletResponse.SC_OK, FeedServlet.FEED_CONTENT_TYPE, "JUnit");
102         }
103
104         private void testCommon(JSONObject jo, int expect, String uri) {
105                 testCommon(jo, expect, FeedServlet.FEED_CONTENT_TYPE, "Junit", uri);
106         }
107         private void testCommon(JSONObject jo, int expect, String ctype, String bhdr) {
108                 JSONArray ja = db_state.getJSONArray("feeds");
109                 for (int i = 0; i < ja.length(); i++) {
110                         JSONObject feed0 = ja.getJSONObject(i);
111                         if (!feed0.getBoolean("deleted") && feed0.getString("publisher").equals(bhdr)) {
112                                 int feedid = feed0.getInt("feedid");
113                                 testCommon(jo, expect, ctype, bhdr, "/feed/"+feedid);
114                                 return;
115                         }
116                 }
117         }
118         private void testCommon(JSONObject jo, int expect, String ctype, String bhdr, String uri) {
119                 String url   = props.getProperty("test.host") + uri;
120                 HttpPut put = new HttpPut(url);
121                 try {
122                         if (bhdr != null)
123                                 put.addHeader(FeedServlet.BEHALF_HEADER, bhdr);
124                         String t = jo.toString();
125                         HttpEntity body = new ByteArrayEntity(t.getBytes(), ContentType.create(ctype));
126                         put.setEntity(body);
127
128                         HttpResponse response = httpclient.execute(put);
129                     ckResponse(response, expect);
130
131                         HttpEntity entity = response.getEntity();
132                         ctype = entity.getContentType().getValue().trim();
133                         int code = response.getStatusLine().getStatusCode();
134                         if (code == HttpServletResponse.SC_CREATED && !ctype.equals(FeedServlet.FEEDFULL_CONTENT_TYPE))
135                                 fail("Got wrong content type: "+ctype);
136
137                         if (code == HttpServletResponse.SC_CREATED) {
138                                 Header[] loc = response.getHeaders("Location");
139                                 if (loc == null)
140                                         fail("Missing Location header.");
141                         }
142
143                         // do something useful with the response body and ensure it is fully consumed
144                         if (ctype.equals(FeedServlet.FEEDFULL_CONTENT_TYPE)) {
145                                 // ck Location header!
146                                 JSONObject jo2 = null;
147                                 try {
148                                         jo2 = new JSONObject(new JSONTokener(entity.getContent()));
149         System.err.println(jo2.toString());
150                                 } catch (Exception e) {
151                                         fail("Bad JSON: "+e.getMessage());
152                                 }
153                                 try {
154                                         jo2.getString("publisher");
155                                         JSONObject jo3 = jo2.getJSONObject("links");
156                                         jo3.getString("self");
157                                         jo3.getString("publish");
158                                         jo3.getString("subscribe");
159                                         jo3.getString("log");
160                                 } catch (JSONException e) {
161                                         fail("required field missing from result: "+e.getMessage());
162                                 }
163                         } else {
164                                 EntityUtils.consume(entity);
165                         }
166                 } catch (IOException e) {
167                         fail(e.getMessage());
168                 } finally {
169                         put.releaseConnection();
170                 }
171         }
172         private JSONObject buildFeedRequest() {
173                 JSONObject jo = new JSONObject();
174                 jo.put("name", "feed");
175                 jo.put("version", "1.0.0");
176                 jo.put("description", "Sample feed used by JUnit to test");
177
178                         JSONObject jo2 = new JSONObject();
179                         jo2.put("classification", "unrestricted");
180
181                         JSONArray ja = new JSONArray();
182                                 JSONObject jo3 = new JSONObject();
183                                 jo3.put("id", "id001");
184                                 jo3.put("password", "re1kwelj");
185                                 JSONObject jo4 = new JSONObject();
186                                 jo4.put("id", "id002");
187                                 jo4.put("password", "o9eqlmbd");
188                                 ja.put(jo3);
189                                 ja.put(jo4);
190                         jo2.put("endpoint_ids", ja);
191
192                         ja = new JSONArray();
193                                 ja.put("20.0.0.1");
194                                 ja.put("195.68.12.15");
195                                 ja.put("135.207.136.128/25");
196                         jo2.put("endpoint_addrs", ja);
197
198                 jo.put("authorization", jo2);
199                 return jo;
200         }
201 }