]> source.dussan.org Git - sonarqube.git/blob
ed065d1ccee2b5b5d2352b2c8d545605dad61649
[sonarqube.git] /
1 /*
2  * Sonar, open source software quality management tool.
3  * Copyright (C) 2008-2012 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * Sonar 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  * Sonar 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
17  * License along with Sonar; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
19  */
20 package org.sonar.plugins.emailnotifications.newviolations;
21
22 import static org.hamcrest.Matchers.is;
23 import static org.hamcrest.Matchers.nullValue;
24 import static org.junit.Assert.assertThat;
25 import static org.mockito.Mockito.mock;
26 import static org.mockito.Mockito.when;
27
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.sonar.api.notifications.Notification;
31 import org.sonar.plugins.emailnotifications.EmailConfiguration;
32 import org.sonar.plugins.emailnotifications.api.EmailMessage;
33
34 public class NewViolationsTemplateTest {
35
36   private NewViolationsEmailTemplate template;
37
38   @Before
39   public void setUp() {
40     EmailConfiguration configuration = mock(EmailConfiguration.class);
41     when(configuration.getServerBaseURL()).thenReturn("http://nemo.sonarsource.org");
42     template = new NewViolationsEmailTemplate(configuration);
43   }
44
45   @Test
46   public void shouldNotFormatIfNotCorrectNotification() {
47     Notification notification = new Notification("other-notif");
48     EmailMessage message = template.format(notification);
49     assertThat(message, nullValue());
50   }
51
52   /**
53    * <pre>
54    * Subject: Review #1
55    * From: Freddy Mallet
56    * 
57    * Project: Sonar
58    * Resource: org.sonar.server.ui.DefaultPages
59    * 
60    * Utility classes should not have a public or default constructor.
61    * 
62    * Comment:
63    *   This is my first comment
64    * 
65    * --
66    * See it in Sonar: http://nemo.sonarsource.org/review/view/1
67    * </pre>
68    */
69   @Test
70   public void shouldFormatCommentAdded() {
71     Notification notification = new Notification("new-violations")
72         .setFieldValue("count", "32")
73         .setFieldValue("projectName", "Foo")
74         .setFieldValue("projectKey", "org.sonar.foo:foo")
75         .setFieldValue("projectId", "45")
76         .setFieldValue("period", "2");
77
78     EmailMessage message = template.format(notification);
79     assertThat(message.getMessageId(), is("new-violations/45"));
80     assertThat(message.getSubject(), is("New violations for project Foo"));
81     assertThat(message.getMessage(), is("" +
82       "Project: Foo\n" +
83       "New violations on last analysis: 32\n" +
84       "\n" +
85       "--\n" +
86       "See it in Sonar: http://nemo.sonarsource.org/drilldown/measures/org.sonar.foo:foo?metric=new_violations&period=2\n"));
87   }
88
89 }