]> source.dussan.org Git - sonarqube.git/blob
b1fa5976b2e27a960f73da94a74e6081e1867089
[sonarqube.git] /
1 /*
2  * SonarQube, open source software quality management tool.
3  * Copyright (C) 2008-2013 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * SonarQube is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * SonarQube is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.plugins.core.notifications.alerts;
21
22 import com.google.common.collect.HashMultimap;
23 import com.google.common.collect.Multimap;
24 import org.junit.Before;
25 import org.junit.Test;
26 import org.mockito.Mock;
27 import org.mockito.MockitoAnnotations;
28 import org.sonar.api.notifications.Notification;
29 import org.sonar.api.notifications.NotificationChannel;
30 import org.sonar.api.notifications.NotificationDispatcher;
31 import org.sonar.api.notifications.NotificationManager;
32
33 import static org.mockito.Matchers.any;
34 import static org.mockito.Mockito.never;
35 import static org.mockito.Mockito.verify;
36 import static org.mockito.Mockito.verifyNoMoreInteractions;
37 import static org.mockito.Mockito.when;
38
39 public class NewAlertsTest {
40
41   @Mock
42   private NotificationManager notificationManager;
43
44   @Mock
45   private NotificationDispatcher.Context context;
46
47   @Mock
48   private NotificationChannel emailChannel;
49
50   @Mock
51   private NotificationChannel twitterChannel;
52
53   private NewAlerts dispatcher;
54
55   @Before
56   public void init() {
57     MockitoAnnotations.initMocks(this);
58     dispatcher = new NewAlerts(notificationManager);
59   }
60
61   @Test
62   public void should_not_dispatch_if_not_alerts_notification() throws Exception {
63     Notification notification = new Notification("other-notif");
64     dispatcher.performDispatch(notification, context);
65
66     verify(context, never()).addUser(any(String.class), any(NotificationChannel.class));
67   }
68
69   @Test
70   public void should_dispatch_to_users_who_have_subscribed() {
71     Multimap<String, NotificationChannel> recipients = HashMultimap.create();
72     recipients.put("user1", emailChannel);
73     recipients.put("user2", twitterChannel);
74     when(notificationManager.findSubscribedRecipientsForDispatcher(dispatcher, 34)).thenReturn(recipients);
75
76     Notification notification = new Notification("alerts").setFieldValue("projectId", "34");
77     dispatcher.performDispatch(notification, context);
78
79     verify(context).addUser("user1", emailChannel);
80     verify(context).addUser("user2", twitterChannel);
81     verifyNoMoreInteractions(context);
82   }
83
84 }