Unit-tests in notification, validation, VLM
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / notifications-rest / notifications-rest-services / src / test / java / org / openecomp / sdcrests / notifications / rest / mapping / MapNotificationsStatusToDtoTest.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdcrests.notifications.rest.mapping;
18
19 import static org.junit.Assert.assertEquals;
20
21 import java.util.Collections;
22 import java.util.List;
23 import java.util.UUID;
24 import org.junit.Test;
25 import org.mockito.Mockito;
26 import org.openecomp.sdc.notification.dtos.NotificationsStatus;
27 import org.openecomp.sdcrests.notifications.types.NotificationsStatusDto;
28
29 public class MapNotificationsStatusToDtoTest {
30
31     @Test()
32     public void testConversion() {
33
34         final NotificationsStatus source = Mockito.mock(NotificationsStatus.class);
35
36         final UUID lastScanned = UUID.randomUUID();
37         Mockito.when(source.getLastScanned()).thenReturn(lastScanned);
38
39         final List<UUID> newEntries = Collections.singletonList(UUID.randomUUID());
40         Mockito.when(source.getNewEntries()).thenReturn(newEntries);
41
42         final UUID endOfPage = UUID.randomUUID();
43         Mockito.when(source.getEndOfPage()).thenReturn(endOfPage);
44
45         final long numOfNotSeenNotifications = 499436903074L;
46         Mockito.when(source.getNumOfNotSeenNotifications()).thenReturn(numOfNotSeenNotifications);
47
48         final NotificationsStatusDto target = new NotificationsStatusDto();
49         final MapNotificationsStatusToDto mapper = new MapNotificationsStatusToDto();
50         mapper.doMapping(source, target);
51
52         assertEquals(lastScanned, target.getLastScanned());
53         assertEquals(newEntries, target.getNewEntries());
54         assertEquals(endOfPage, target.getEndOfPage());
55         assertEquals(numOfNotSeenNotifications, target.getNumOfNotSeenNotifications());
56     }
57 }