aboutsummaryrefslogtreecommitdiffstats
path: root/datarouter-prov/src/test/java/datarouter/provisioning/IntegrationTestDrFeedsGet.java
blob: 2cc5febac65c12d79df5f473d94db85d4e9ddbe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*******************************************************************************
 * ============LICENSE_START==================================================
 * * org.onap.dmaap
 * * ===========================================================================
 * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * * ===========================================================================
 * * Licensed under the Apache License, Version 2.0 (the "License");
 * * you may not use this file except in compliance with the License.
 * * You may obtain a copy of the License at
 * *
 *  *      http://www.apache.org/licenses/LICENSE-2.0
 * *
 *  * Unless required by applicable law or agreed to in writing, software
 * * distributed under the License is distributed on an "AS IS" BASIS,
 * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * * See the License for the specific language governing permissions and
 * * limitations under the License.
 * * ============LICENSE_END====================================================
 * *
 * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * *
 ******************************************************************************/

package datarouter.provisioning;

import static org.junit.Assert.fail;

import java.io.IOException;

import jakarta.servlet.http.HttpServletResponse;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.util.EntityUtils;
import org.json.JSONArray;
import org.json.JSONObject;
import org.json.JSONTokener;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.onap.dmaap.datarouter.provisioning.FeedServlet;

public class IntegrationTestDrFeedsGet extends IntegrationTestBase {
    private JSONArray returnedlist;

    @BeforeClass
    public static void setUpBeforeClass() throws Exception {
    }

    @AfterClass
    public static void tearDownAfterClass() throws Exception {
    }

    @Before
    public void setUp() throws Exception {
        super.setUp();
        getDBstate();
    }

    @Test
    public void testNormal() {
        testCommon(HttpServletResponse.SC_OK);
        int expect = 0;
        JSONArray ja = db_state.getJSONArray("feeds");
        for (int i = 0; i < ja.length(); i++) {
            JSONObject jo = ja.getJSONObject(i);
            if (!jo.getBoolean("deleted")) {
                expect++;
            }
        }
        if (returnedlist.length() != expect) {
            fail("bad length, got " + returnedlist.length() + " expect " + expect);
        }
    }

    @Test
    public void testNormalGoodName() {
        JSONArray ja = db_state.getJSONArray("feeds");
        JSONObject feed0 = ja.getJSONObject(0);
        String name = feed0.getString("name");
        String query = "?name=" + name;
        int expect = 0;
        for (int n = 0; n < ja.length(); n++) {
            JSONObject jo = ja.getJSONObject(n);
            if (!jo.getBoolean("deleted") && jo.getString("name").equals(name)) {
                expect++;
            }
        }
        testCommon(HttpServletResponse.SC_OK, query, FeedServlet.FEEDLIST_CONTENT_TYPE, "JUnit");
        if (returnedlist.length() != expect) {
            fail("bad length, got " + returnedlist.length() + " expect " + expect);
        }
    }

    @Test
    public void testNormalBadName() {
        String query = "?name=ZZTOP123456";
        testCommon(HttpServletResponse.SC_OK, query, FeedServlet.FEEDLIST_CONTENT_TYPE, "JUnit");
        if (returnedlist.length() != 0) {
            fail("bad length, got " + returnedlist.length() + " expect 0");
        }
    }

    @Test
    public void testNormalBadPath() {
        String query = "flarg/?publisher=JUnit";
        testCommon(HttpServletResponse.SC_NOT_FOUND, query, "text/html;charset=ISO-8859-1", "JUnit");
    }

    @Test
    public void testNormalGoodPublisher() {
        JSONArray ja = db_state.getJSONArray("feeds");
        JSONObject feed0 = ja.getJSONObject(0);
        String query = "?publisher=" + feed0.getString("publisher");
        testCommon(HttpServletResponse.SC_OK, query, FeedServlet.FEEDLIST_CONTENT_TYPE, "JUnit");
        int expect = 0;
        for (int i = 0; i < ja.length(); i++) {
            JSONObject jo = ja.getJSONObject(i);
            if (jo.getString("publisher").equals(feed0.getString("publisher")) && !jo.getBoolean("deleted")) {
                expect++;
            }
        }
        if (returnedlist.length() != expect) {
            fail("bad length, got " + returnedlist.length() + " expected " + expect);
        }
    }

    @Test
    public void testNormalBadPublisher() {
        String query = "?publisher=ZZTOP123456";
        testCommon(HttpServletResponse.SC_OK, query, FeedServlet.FEEDLIST_CONTENT_TYPE, "JUnit");
        if (returnedlist.length() != 0) {
            fail("bad length");
        }
    }

    @Test
    public void testNormalGoodSubscriber() {
        JSONArray ja = db_state.getJSONArray("subscriptions");
        if (ja.length() > 0) {
            JSONObject sub0 = ja.getJSONObject(0);
            String query = "?subscriber=" + sub0.getString("subscriber");
            testCommon(HttpServletResponse.SC_OK, query, FeedServlet.FEEDLIST_CONTENT_TYPE, "JUnit");
// aarg! - this is complicated!
//        int expect = 0;
//        for (int i = 0; i < ja.length(); i++) {
//            JSONObject jo = ja.getJSONObject(i);
//            if (jo.getString("subscriber").equals(sub0.getString("subscriber")))
//                expect++;
//        }
//        if (returnedlist.length() != 1)
//            fail("bad length " + returnedlist.toString());
        } else {
            // There are no subscriptions yet, so use a made up name
            testCommon(HttpServletResponse.SC_OK, "?subscriber=foo", FeedServlet.FEEDLIST_CONTENT_TYPE, "JUnit");
        }
    }

    @Test
    public void testNormalBadSubscriber() {
        String query = "?subscriber=ZZTOP123456";
        testCommon(HttpServletResponse.SC_OK, query, FeedServlet.FEEDLIST_CONTENT_TYPE, "JUnit");
        if (returnedlist.length() != 0) {
            fail("bad length");
        }
    }

    private void testCommon(int expect) {
        testCommon(expect, "", FeedServlet.FEEDLIST_CONTENT_TYPE, "JUnit");
    }

    private void testCommon(int expect, String query, String ectype, String bhdr) {
        String url = props.getProperty("test.host") + "/" + query;
        HttpGet httpGet = new HttpGet(url);
        try {
            if (bhdr != null) {
                httpGet.addHeader(FeedServlet.BEHALF_HEADER, bhdr);
            }

            HttpResponse response = httpclient.execute(httpGet);
            ckResponse(response, expect);

            HttpEntity entity = response.getEntity();
            String ctype = entity.getContentType().getValue().trim();
            if (!ctype.equals(ectype)) {
                fail("Got wrong content type: " + ctype);
            }

            // do something useful with the response body and ensure it is fully consumed
            if (ctype.equals(FeedServlet.FEEDLIST_CONTENT_TYPE)) {
                try {
                    returnedlist = new JSONArray(new JSONTokener(entity.getContent()));
                } catch (Exception e) {
                    fail("Bad JSON: " + e.getMessage());
                }
            } else {
                EntityUtils.consume(entity);
            }
        } catch (IOException e) {
            fail(e.getMessage());
        } finally {
            httpGet.releaseConnection();
        }
    }
}