]> source.dussan.org Git - sonarqube.git/blob
b772b923e96862ff752569b16245e070ca3ecfc3
[sonarqube.git] /
1 /*
2  * SonarQube, open source software quality management tool.
3  * Copyright (C) 2008-2014 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.emailnotifications.templates.alerts;
21
22 import org.sonar.plugins.emailnotifications.templates.alerts.AlertsEmailTemplate;
23
24 import org.junit.Before;
25 import org.junit.Test;
26 import org.sonar.api.config.EmailSettings;
27 import org.sonar.api.notifications.Notification;
28 import org.sonar.plugins.emailnotifications.api.EmailMessage;
29
30 import static org.hamcrest.Matchers.is;
31 import static org.hamcrest.Matchers.nullValue;
32 import static org.junit.Assert.assertThat;
33 import static org.mockito.Mockito.mock;
34 import static org.mockito.Mockito.when;
35
36 public class AlertsEmailTemplateTest {
37
38   private AlertsEmailTemplate template;
39
40   @Before
41   public void setUp() {
42     EmailSettings configuration = mock(EmailSettings.class);
43     when(configuration.getServerBaseURL()).thenReturn("http://nemo.sonarsource.org");
44     template = new AlertsEmailTemplate(configuration);
45   }
46
47   @Test
48   public void shouldNotFormatIfNotCorrectNotification() {
49     Notification notification = new Notification("other-notif");
50     EmailMessage message = template.format(notification);
51     assertThat(message, nullValue());
52   }
53
54   @Test
55   public void shouldFormatAlertWithSeveralMessages() {
56     Notification notification = createNotification("Orange (was Red)", "violations > 4, coverage < 75%", "WARN", "false");
57
58     EmailMessage message = template.format(notification);
59     assertThat(message.getMessageId(), is("alerts/45"));
60     assertThat(message.getSubject(), is("Alert level changed on \"Foo\""));
61     assertThat(message.getMessage(), is("" +
62       "Project: Foo\n" +
63       "Alert level: Orange (was Red)\n" +
64       "\n" +
65       "Alerts:\n" +
66       "  - violations > 4\n" +
67       "  - coverage < 75%\n" +
68       "\n" +
69       "See it in SonarQube: http://nemo.sonarsource.org/dashboard/index/org.sonar.foo:foo"));
70   }
71
72   @Test
73   public void shouldFormatNewAlertWithSeveralMessages() {
74     Notification notification = createNotification("Orange (was Red)", "violations > 4, coverage < 75%", "WARN", "true");
75
76     EmailMessage message = template.format(notification);
77     assertThat(message.getMessageId(), is("alerts/45"));
78     assertThat(message.getSubject(), is("New alert on \"Foo\""));
79     assertThat(message.getMessage(), is("" +
80       "Project: Foo\n" +
81       "Alert level: Orange (was Red)\n" +
82       "\n" +
83       "New alerts:\n" +
84       "  - violations > 4\n" +
85       "  - coverage < 75%\n" +
86       "\n" +
87       "See it in SonarQube: http://nemo.sonarsource.org/dashboard/index/org.sonar.foo:foo"));
88   }
89
90   @Test
91   public void shouldFormatNewAlertWithOneMessage() {
92     Notification notification = createNotification("Orange (was Red)", "violations > 4", "WARN", "true");
93
94     EmailMessage message = template.format(notification);
95     assertThat(message.getMessageId(), is("alerts/45"));
96     assertThat(message.getSubject(), is("New alert on \"Foo\""));
97     assertThat(message.getMessage(), is("" +
98       "Project: Foo\n" +
99       "Alert level: Orange (was Red)\n" +
100       "\n" +
101       "New alert: violations > 4\n" +
102       "\n" +
103       "See it in SonarQube: http://nemo.sonarsource.org/dashboard/index/org.sonar.foo:foo"));
104   }
105
106   @Test
107   public void shouldFormatBackToGreenMessage() {
108     Notification notification = createNotification("Green (was Red)", "", "OK", "false");
109
110     EmailMessage message = template.format(notification);
111     assertThat(message.getMessageId(), is("alerts/45"));
112     assertThat(message.getSubject(), is("\"Foo\" is back to green"));
113     assertThat(message.getMessage(), is("" +
114       "Project: Foo\n" +
115       "Alert level: Green (was Red)\n" +
116       "\n" +
117       "\n" +
118       "See it in SonarQube: http://nemo.sonarsource.org/dashboard/index/org.sonar.foo:foo"));
119   }
120
121   private Notification createNotification(String alertName, String alertText, String alertLevel, String isNewAlert) {
122     Notification notification = new Notification("alerts")
123         .setFieldValue("projectName", "Foo")
124         .setFieldValue("projectKey", "org.sonar.foo:foo")
125         .setFieldValue("projectId", "45")
126         .setFieldValue("alertName", alertName)
127         .setFieldValue("alertText", alertText)
128         .setFieldValue("alertLevel", alertLevel)
129         .setFieldValue("isNewAlert", isNewAlert);
130     return notification;
131   }
132
133 }