]> source.dussan.org Git - sonarqube.git/blob
616f5918e3af1e8e3035a960bbb07f79bddfc96e
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2016 SonarSource SA
4  * mailto:contact AT sonarsource DOT com
5  *
6  * This program 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  * This program 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.server.computation.task.projectanalysis.issue;
21
22 import org.junit.Before;
23 import org.junit.Test;
24 import org.mockito.Mockito;
25 import org.sonar.api.CoreProperties;
26 import org.sonar.api.config.Settings;
27 import org.sonar.server.computation.task.projectanalysis.component.TreeRootHolderRule;
28 import org.sonar.server.computation.task.projectanalysis.component.Component;
29 import org.sonar.server.computation.task.projectanalysis.component.SettingsRepository;
30 import org.sonar.server.user.index.UserDoc;
31 import org.sonar.server.user.index.UserIndex;
32
33 import static org.assertj.core.api.Assertions.assertThat;
34 import static org.mockito.Mockito.mock;
35 import static org.mockito.Mockito.when;
36
37 public class DefaultAssigneeTest {
38
39   public static final String PROJECT_KEY = "PROJECT_KEY";
40
41   TreeRootHolderRule rootHolder = mock(TreeRootHolderRule.class, Mockito.RETURNS_DEEP_STUBS);
42   UserIndex userIndex = mock(UserIndex.class);
43   Settings settings = new Settings();
44   SettingsRepository settingsRepository = mock(SettingsRepository.class);
45
46   DefaultAssignee underTest = new DefaultAssignee(rootHolder, userIndex, settingsRepository);
47
48   @Before
49   public void before() {
50     when(rootHolder.getRoot()).thenReturn(mock(Component.class));
51     when(settingsRepository.getSettings(rootHolder.getRoot())).thenReturn(settings);
52   }
53
54   @Test
55   public void no_default_assignee() {
56     assertThat(underTest.getLogin()).isNull();
57   }
58
59   @Test
60   public void default_assignee() {
61     settings.setProperty(CoreProperties.DEFAULT_ISSUE_ASSIGNEE, "erik");
62     when(userIndex.getNullableByLogin("erik")).thenReturn(new UserDoc().setLogin("erik").setActive(true));
63
64     assertThat(underTest.getLogin()).isEqualTo("erik");
65   }
66
67   @Test
68   public void configured_login_does_not_exist() {
69     settings.setProperty(CoreProperties.DEFAULT_ISSUE_ASSIGNEE, "erik");
70     when(userIndex.getNullableByLogin("erik")).thenReturn(null);
71
72     assertThat(underTest.getLogin()).isNull();
73   }
74
75   @Test
76   public void configured_login_is_disabled() {
77     settings.setProperty(CoreProperties.DEFAULT_ISSUE_ASSIGNEE, "erik");
78     when(userIndex.getNullableByLogin("erik")).thenReturn(new UserDoc().setLogin("erik").setActive(false));
79
80     assertThat(underTest.getLogin()).isNull();
81   }
82 }