summaryrefslogtreecommitdiffstats
path: root/portal-BE/src/test/java/org/onap/portal/controller/WidgetsControllerTest.java
blob: 48035908c7aeff250ab895e67e89610550fd0ab5 (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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
/*
 * ============LICENSE_START==========================================
 * ONAP Portal
 * ===================================================================
 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
 * ===================================================================
 * Modifications Copyright (c) 2019 Samsung
 * ===================================================================
 *
 * Unless otherwise specified, all software contained herein is licensed
 * under the Apache License, Version 2.0 (the "License");
 * you may not use this software 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.
 *
 * Unless otherwise specified, all documentation contained herein is licensed
 * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
 * you may not use this documentation except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *             https://creativecommons.org/licenses/by/4.0/
 *
 * Unless required by applicable law or agreed to in writing, documentation
 * 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============================================
 *
 *
 */

package org.onap.portal.controller;

import static junit.framework.TestCase.assertEquals;
import static junit.framework.TestCase.assertNull;
import static org.mockito.Mockito.when;

import java.io.IOException;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.onap.portal.dao.fn.FnLanguageDao;
import org.onap.portal.dao.fn.FnUserDao;
import org.onap.portal.domain.db.fn.FnLanguage;
import org.onap.portal.domain.db.fn.FnUser;
import org.onap.portal.domain.db.fn.FnWidget;
import org.onap.portal.domain.dto.transport.FieldsValidator;
import org.onap.portal.domain.dto.transport.OnboardingWidget;
import org.onap.portal.domain.dto.transport.WidgetCatalogPersonalization;
import org.onap.portal.framework.MockitoTestSuite;
import org.onap.portal.service.WidgetService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
import org.springframework.test.context.TestPropertySource;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.transaction.annotation.Transactional;

@RunWith(SpringRunner.class)
@SpringBootTest
@TestPropertySource(locations = "classpath:test.properties")
@Transactional
public class WidgetsControllerTest {

       private UsernamePasswordAuthenticationToken principal = new UsernamePasswordAuthenticationToken("demo",
               "demo123");

       MockitoTestSuite mockitoTestSuite = new MockitoTestSuite();

       HttpServletRequest request = mockitoTestSuite.getMockedRequest();
       HttpServletResponse response = mockitoTestSuite.getMockedResponse();

       @Autowired
       private WidgetsController widgetsController;
       @Autowired
       private FnUserDao fnUserDao;
       @Autowired
       private FnLanguageDao fnLanguageDao;
       @Autowired
       private WidgetService widgetService;

       private FnLanguage language = getFnLanguage();
       private FnUser questUser = getQuestUser();
       private FnUser notQuestUser = getNotQuestUser();

       @Test(expected = UsernameNotFoundException.class)
       public void getOnboardingWidgetsNullUserTest() {
              UsernamePasswordAuthenticationToken nullPrincipal = new UsernamePasswordAuthenticationToken("nulluser",
                      "demo123");
              widgetsController.getOnboardingWidgets(nullPrincipal, request, response);
       }

       @Test
       public void getOnboardingWidgetsQuestUserTest() {
              UsernamePasswordAuthenticationToken questPrincipal = new UsernamePasswordAuthenticationToken("questUser",
                      "demo123");
              fnUserDao.save(questUser);
              List<OnboardingWidget> onboardingWidgets = widgetsController
                      .getOnboardingWidgets(questPrincipal, request, response);
              assertNull(onboardingWidgets);

              //Clean up
              fnUserDao.delete(questUser);
              fnLanguageDao.delete(language);
       }

       @Test
       public void getOnboardingWidgetsUserTest() {
              UsernamePasswordAuthenticationToken notQuestprincipal = new UsernamePasswordAuthenticationToken(
                      "notQuestUser",
                      "demo123");
              fnUserDao.save(notQuestUser);
              List<OnboardingWidget> expected = new ArrayList<>();
              when(request.getHeader("X-Widgets-Type")).thenReturn("managed");

              List<OnboardingWidget> actual = widgetsController
                      .getOnboardingWidgets(notQuestprincipal, request, response);

              assertEquals(expected, actual);
              fnUserDao.delete(notQuestUser);
       }

       @Test
       public void getOnboardingWidgetsWrongHeaderTest() {
              UsernamePasswordAuthenticationToken notQuestprincipal = new UsernamePasswordAuthenticationToken(
                      "notQuestUser",
                      "demo123");
              fnUserDao.save(notQuestUser);
              when(request.getHeader("X-Widgets-Type")).thenReturn("test");
              List<OnboardingWidget> actual = widgetsController
                      .getOnboardingWidgets(notQuestprincipal, request, response);

              assertNull(actual);
              fnUserDao.delete(notQuestUser);
       }

       @Test
       public void putOnboardingWidgetSameWidget() {
              //Given
              fnUserDao.save(notQuestUser);
              when(request.getHeader("X-Widgets-Type")).thenReturn("managed");

              OnboardingWidget onboardingWidget = OnboardingWidget.builder()
                      .id(123L)
                      .name("Application")
                      .appId(1421L)
                      .appName("Application name")
                      .width(123)
                      .height(45)
                      .url("testurl")
                      .build();

              FnWidget fnWidget = FnWidget.builder()
                      .name("Application")
                      .appId(453L)
                      .width(123)
                      .height(45)
                      .url("testurl")
                      .build();

              widgetService.saveOne(fnWidget);

              FieldsValidator expected = new FieldsValidator();
              //When
              FieldsValidator actual = widgetsController
                      .putOnboardingWidget(principal, fnWidget.getWidgetId(), onboardingWidget, response);
              //Then
              assertEquals(expected.getErrorCode(), actual.getErrorCode());
              assertEquals(expected.getHttpStatusCode(), actual.getHttpStatusCode());
              assertEquals(expected.getFields(), actual.getFields());
       }

       @Test
       public void putOnboardingWidgetAOP() {
              //Given
              fnUserDao.save(notQuestUser);
              when(request.getHeader("X-Widgets-Type")).thenReturn("managed");

              OnboardingWidget onboardingWidget = OnboardingWidget.builder()
                      .id(123L)
                      .name("")
                      .appId(1L)
                      .appName("")
                      .width(123)
                      .height(45)
                      .url("testurl")
                      .build();

              FnWidget fnWidget = FnWidget.builder()
                      .name("Application")
                      .appId(1421L)
                      .width(123)
                      .height(45)
                      .url("testurl")
                      .build();

              widgetService.saveOne(fnWidget);

              FieldsValidator expected = new FieldsValidator();
              expected.setHttpStatusCode(406L);
              expected.addProblematicFieldName("appName can't be blank, appId value must be higher than 1");
              //When
              FieldsValidator actual = widgetsController
                      .putOnboardingWidget(principal, fnWidget.getWidgetId(), onboardingWidget, response);
              //Then
              assertEquals(expected.getHttpStatusCode(), actual.getHttpStatusCode());
              assertEquals(expected.getFields().size(), actual.getFields().size());
       }

       @Test
       public void putOnboardingWidgetAOPXSSTest() {
              //Given
              fnUserDao.save(notQuestUser);
              when(request.getHeader("X-Widgets-Type")).thenReturn("managed");

              OnboardingWidget onboardingWidget = OnboardingWidget.builder()
                      .id(123L)
                      .name("<script>alert(“XSS”);</script>\n")
                      .appId(34L)
                      .appName("<ScRipT>alert(\"XSS\");</ScRipT>")
                      .width(123)
                      .height(45)
                      .url("testurl")
                      .build();

              FieldsValidator expected = new FieldsValidator();
              expected.setHttpStatusCode(406L);
              expected.addProblematicFieldName(
                      "appName may have unsafe html content, name may have unsafe html content");
              //When
              FieldsValidator actual = widgetsController
                      .putOnboardingWidget(principal, 15L, onboardingWidget, response);
              //Then
              assertEquals(expected.getHttpStatusCode(), actual.getHttpStatusCode());
              assertEquals(expected.getFields().size(), actual.getFields().size());
       }

       @Test
       public void postOnboardingWidgetXSS() {
              //Given
              fnUserDao.save(notQuestUser);
              when(request.getHeader("X-Widgets-Type")).thenReturn("managed");

              OnboardingWidget onboardingWidget = OnboardingWidget.builder()
                      .id(123L)
                      .name("<script>alert(“XSS”);</script>\n")
                      .appId(34L)
                      .appName("<ScRipT>alert(\"XSS\");</ScRipT>")
                      .width(123)
                      .height(45)
                      .url("testurl")
                      .build();

              FieldsValidator expected = new FieldsValidator();
              expected.setHttpStatusCode(406L);
              expected.addProblematicFieldName("appName may have unse html content, name may have unsafe html content");
              //When
              FieldsValidator actual = widgetsController.postOnboardingWidget(principal, response, onboardingWidget);
              //Then
              assertEquals(expected.getHttpStatusCode(), actual.getHttpStatusCode());
              assertEquals(expected.getFields().size(), actual.getFields().size());
       }

       @Test
       public void postOnboardingWidget() {
              //Given
              fnUserDao.save(notQuestUser);
              when(request.getHeader("X-Widgets-Type")).thenReturn("managed");

              OnboardingWidget onboardingWidget = OnboardingWidget.builder()
                      .id(123L)
                      .name("appname")
                      .appId(34L)
                      .appName("appname")
                      .width(123)
                      .height(45)
                      .url("testurl")
                      .build();

              FieldsValidator expected = new FieldsValidator();
              expected.setHttpStatusCode(200L);
              //When
              FieldsValidator actual = widgetsController.postOnboardingWidget(principal, response, onboardingWidget);
              //Then
              assertEquals(expected.getHttpStatusCode(), actual.getHttpStatusCode());
              assertEquals(expected.getFields().size(), actual.getFields().size());
       }

       @Test
       public void deleteOnboardingWidgetSCFORBIDDEN() {
              //Given
              fnUserDao.save(notQuestUser);
              when(request.getHeader("X-Widgets-Type")).thenReturn("managed");

              OnboardingWidget onboardingWidget = OnboardingWidget.builder()
                      .id(123L)
                      .name("")
                      .appId(1L)
                      .appName("rtyrty")
                      .width(123)
                      .height(45)
                      .url("testurl")
                      .build();

              FnWidget fnWidget = FnWidget.builder()
                      .name("Application")
                      .appId(1421L)
                      .width(123)
                      .height(45)
                      .url("testurl")
                      .build();

              widgetService.saveOne(fnWidget);



              FieldsValidator expected = new FieldsValidator();
              expected.setHttpStatusCode(403L);
              expected.addProblematicFieldName("appName can't be blank, appId value must be higher than 1");

              //When
              widgetsController.putOnboardingWidget(principal, fnWidget.getWidgetId(), onboardingWidget, response);

              FieldsValidator actual = widgetsController.deleteOnboardingWidget(principal, response, fnWidget.getWidgetId());
              //Then
              assertEquals(expected.getHttpStatusCode(), actual.getHttpStatusCode());
       }

       @Test
       public void putWidgetCatalogSelection() throws IOException {
              //Give
              WidgetCatalogPersonalization personalization = new WidgetCatalogPersonalization(7L, true);

              FieldsValidator expected = new FieldsValidator();
              expected.setHttpStatusCode(200L);
              expected.addProblematicFieldName("");
              //When
              FieldsValidator actual = widgetsController.putWidgetCatalogSelection(principal, personalization, response);
              //Then
              assertEquals(expected.getHttpStatusCode(), actual.getHttpStatusCode());
       }

       private FnUser getQuestUser() {
              return FnUser.builder()
                      .loginId("questUser")
                      .loginPwd("demo123")
                      .lastLoginDate(LocalDateTime.now())
                      .activeYn(true)
                      .createdDate(LocalDateTime.now())
                      .modifiedDate(LocalDateTime.now())
                      .isInternalYn(true)
                      .languageId(language)
                      .guest(true)
                      .build();
       }

       private FnUser getNotQuestUser() {
              return FnUser.builder()
                      .loginId("notQuestUser")
                      .loginPwd("demo123")
                      .lastLoginDate(LocalDateTime.now())
                      .activeYn(true)
                      .createdDate(LocalDateTime.now())
                      .modifiedDate(LocalDateTime.now())
                      .isInternalYn(true)
                      .languageId(language)
                      .guest(false)
                      .build();
       }

       private FnLanguage getFnLanguage() {
              return FnLanguage.builder().languageName("Polish").languageAlias("Pl").build();
       }
}