Tests coverage up and some minor bug fixes
[portal.git] / portal-BE / src / test / java / org / onap / portal / service / ep / EpWidgetCatalogParameterServiceTest.java
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ===================================================================
9  *
10  * Unless otherwise specified, all software contained herein is licensed
11  * under the Apache License, Version 2.0 (the "License");
12  * you may not use this software except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *             http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  *
23  * Unless otherwise specified, all documentation contained herein is licensed
24  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25  * you may not use this documentation except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *             https://creativecommons.org/licenses/by/4.0/
29  *
30  * Unless required by applicable law or agreed to in writing, documentation
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  *
36  * ============LICENSE_END============================================
37  *
38  *
39  */
40
41 package org.onap.portal.service.ep;
42
43 import static org.junit.jupiter.api.Assertions.assertEquals;
44
45 import java.time.LocalDateTime;
46 import java.util.Collections;
47 import java.util.HashSet;
48 import org.junit.jupiter.api.Test;
49 import org.junit.runner.RunWith;
50 import org.onap.portal.controller.WidgetsCatalogController;
51 import org.onap.portal.domain.db.ep.EpMicroserviceParameter;
52 import org.onap.portal.domain.db.ep.EpWidgetCatalog;
53 import org.onap.portal.domain.db.ep.EpWidgetCatalogParameter;
54 import org.onap.portal.domain.db.fn.FnLanguage;
55 import org.onap.portal.domain.db.fn.FnUser;
56 import org.onap.portal.service.fn.FnLanguageService;
57 import org.springframework.beans.factory.annotation.Autowired;
58 import org.springframework.boot.test.context.SpringBootTest;
59 import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
60 import org.springframework.test.context.TestPropertySource;
61 import org.springframework.test.context.junit4.SpringRunner;
62 import org.springframework.transaction.annotation.Transactional;
63
64 @RunWith(SpringRunner.class)
65 @SpringBootTest
66 @Transactional
67 @TestPropertySource(locations = "classpath:test.properties")
68 class EpWidgetCatalogParameterServiceTest {
69
70        private UsernamePasswordAuthenticationToken principal = new UsernamePasswordAuthenticationToken("demo",
71                "demo123");
72
73        private EpWidgetCatalogParameterService epWidgetCatalogParameterService;
74        private WidgetsCatalogController widgetsCatalogController;
75        private FnLanguageService fnLanguageService;
76        private EpMicroserviceParameterService epMicroserviceParameterService;
77        private EpWidgetCatalogService epWidgetCatalogService;
78
79        @Autowired
80        public EpWidgetCatalogParameterServiceTest(
81                EpWidgetCatalogParameterService epWidgetCatalogParameterService,
82                WidgetsCatalogController widgetsCatalogController,
83                FnLanguageService fnLanguageService,
84                EpMicroserviceParameterService epMicroserviceParameterService,
85                EpWidgetCatalogService epWidgetCatalogService) {
86               this.epWidgetCatalogParameterService = epWidgetCatalogParameterService;
87               this.widgetsCatalogController = widgetsCatalogController;
88               this.fnLanguageService = fnLanguageService;
89               this.epMicroserviceParameterService = epMicroserviceParameterService;
90               this.epWidgetCatalogService = epWidgetCatalogService;
91        }
92
93        @Test
94        void deleteUserParameterById() {
95        }
96
97        @Test
98        void deleteByParamId() {
99               //Given
100               EpWidgetCatalog widget = EpWidgetCatalog.builder()
101                       .wdgName("Name")
102                       .wdgFileLoc("loc")
103                       .allUserFlag(true)
104                       .build();
105               epWidgetCatalogService.save(widget);
106               EpMicroserviceParameter parameter = new EpMicroserviceParameter();
107               epMicroserviceParameterService.save(parameter);
108               FnLanguage language = FnLanguage.builder().languageAlias("TS").languageName("TEST").build();
109               fnLanguageService.save(principal, language);
110               FnUser user = buildFnUser();
111               language.setFnUsers(new HashSet<>(Collections.singleton(user)));
112               user.setLanguageId(language);
113               EpWidgetCatalogParameter data = EpWidgetCatalogParameter.builder()
114                       .widgetId(widget).userId(user).paramId(parameter).userValue("TestData").build();
115               //When
116               assertEquals(0, widgetsCatalogController.getUserParameterById(parameter.getId()).size());
117               epWidgetCatalogParameterService.saveUserParameter(data);
118               //Then
119               assertEquals(1, epWidgetCatalogParameterService.getUserParameterById(parameter.getId()).size());
120               epWidgetCatalogParameterService.deleteByParamId(parameter.getId());
121               assertEquals(0, epWidgetCatalogParameterService.getUserParameterById(parameter.getId()).size());
122               //Clean
123
124        }
125
126        @Test
127        void getUserParamById() {
128               //Given
129               EpWidgetCatalog widget = EpWidgetCatalog.builder()
130                       .wdgName("Name")
131                       .wdgFileLoc("loc")
132                       .allUserFlag(true)
133                       .build();
134               epWidgetCatalogService.save(widget);
135               EpMicroserviceParameter parameter = new EpMicroserviceParameter();
136               epMicroserviceParameterService.save(parameter);
137               FnLanguage language = FnLanguage.builder().languageAlias("TS").languageName("TEST").build();
138               fnLanguageService.save(principal, language);
139               FnUser user = buildFnUser();
140               language.setFnUsers(new HashSet<>(Collections.singleton(user)));
141               user.setLanguageId(language);
142               EpWidgetCatalogParameter data = EpWidgetCatalogParameter.builder()
143                       .widgetId(widget).userId(user).paramId(parameter).userValue("TestData").build();
144               //When
145               assertEquals(0, widgetsCatalogController.getUserParameterById(parameter.getId()).size());
146               epWidgetCatalogParameterService.saveUserParameter(data);
147               Long id = data.getId();
148               assertEquals(1, epWidgetCatalogParameterService.getUserParameterById(parameter.getId()).size());
149               EpWidgetCatalogParameter actual = epWidgetCatalogParameterService.getUserParamById(widget.getWidgetId(), user.getUserId(), parameter.getId());
150               //Then
151               assertEquals(id, actual.getId());
152               assertEquals(data.getUserValue(), actual.getUserValue());
153               assertEquals(data.getWidgetId().getWidgetId(), actual.getWidgetId().getWidgetId());
154               assertEquals(data.getParamId().getId(), actual.getParamId().getId());
155
156        }
157
158        private FnUser buildFnUser() {
159               return FnUser.builder()
160                       .lastLoginDate(LocalDateTime.now())
161                       .activeYn(true)
162                       .modifiedDate(LocalDateTime.now())
163                       .createdDate(LocalDateTime.now())
164                       .isInternalYn(true)
165                       .guest(false)
166                       .build();
167        }
168 }