summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-core/src/test/java/org/openecomp/sdc/notification/services/impl/NotificationPropagationManagerImplTest.java
blob: 2a98953408b7d03eb5d305043e3b763782f963c4 (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
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2019 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=========================================================
 */

package org.openecomp.sdc.notification.services.impl;

import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.mockito.*;
import org.openecomp.sdc.destinationprovider.DestinationProvider;
import org.openecomp.sdc.destinationprovider.impl.MulticastDestination;
import org.openecomp.sdc.destinationprovider.impl.UnicastDestination;
import org.openecomp.sdc.notification.dtos.Event;
import org.openecomp.sdc.notification.services.PropagationService;
import org.openecomp.sdc.notification.services.SubscriptionService;

import static org.mockito.Mockito.verify;


/**
 * @author avrahamg
 * @since July 13, 2017
 */
public class NotificationPropagationManagerImplTest {
    @Mock
    private PropagationService propagationServiceMock;
    @Mock
    private SubscriptionService subscriptionServiceMock;
    @Mock
    private Event eventMock;
    @Captor
    private ArgumentCaptor<DestinationProvider> destinationProviderCaptor;

    @Spy
    @InjectMocks
    private NotificationPropagationManagerImpl notificationPropagationManager;

    @Before
    public void setUp() throws Exception {
        MockitoAnnotations.openMocks(this);
    }

    @Test
    public void shouldCallPropagationServiceNotifyWithMulticastDestinationWhenNotifySubscribers()
        throws Exception {
        notificationPropagationManager.notifySubscribers(eventMock);
        verify(propagationServiceMock).notify(Matchers.eq(eventMock), destinationProviderCaptor
            .capture());
        Assert.assertTrue(destinationProviderCaptor.getValue() instanceof MulticastDestination);

    }

    @Test
    public void shouldCallPropagationServiceNotifyWithUnicastDestinationWhenDirectNotification()
        throws Exception {
        notificationPropagationManager.directNotification(eventMock, "aaa");
        verify(propagationServiceMock).notify(Matchers.eq(eventMock), destinationProviderCaptor
            .capture());
        Assert.assertTrue(destinationProviderCaptor.getValue() instanceof UnicastDestination);
    }
}