]> source.dussan.org Git - sonarqube.git/blob
5831af38b1f3ee3a1d6394dff7aeac030e0e4a67
[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
21 package org.sonar.server.permission.ws;
22
23 import java.util.List;
24 import java.util.Set;
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.sonar.api.config.Settings;
28 import org.sonar.api.resources.Qualifiers;
29 import org.sonar.api.resources.ResourceType;
30 import org.sonar.api.resources.ResourceTypes;
31
32 import static java.util.Arrays.asList;
33 import static org.assertj.core.api.Assertions.assertThat;
34 import static org.mockito.Mockito.mock;
35 import static org.mockito.Mockito.when;
36 import static org.sonar.server.permission.DefaultPermissionTemplates.DEFAULT_TEMPLATE_PROPERTY;
37 import static org.sonar.server.permission.DefaultPermissionTemplates.defaultRootQualifierTemplateProperty;
38
39 public class DefaultPermissionTemplateFinderTest {
40
41   ResourceTypes resourceTypes = mock(ResourceTypes.class);
42   Settings settings = new Settings();
43
44   DefaultPermissionTemplateFinder underTest;
45
46   @Before
47   public void setUp() {
48     underTest = new DefaultPermissionTemplateFinder(settings, resourceTypes);
49     settings
50       .setProperty(DEFAULT_TEMPLATE_PROPERTY, "default-template-uuid")
51       .setProperty(defaultRootQualifierTemplateProperty(Qualifiers.PROJECT), "default-project-template-uuid")
52       .setProperty(defaultRootQualifierTemplateProperty("DEV"), "default-dev-template-uuid")
53       .setProperty(defaultRootQualifierTemplateProperty(Qualifiers.VIEW), "default-view-template-uuid");
54     when(resourceTypes.getRoots()).thenReturn(rootResourceTypes());
55   }
56
57   @Test
58   public void get_default_template_uuids_in_settings() {
59     Set<String> result = underTest.getDefaultTemplateUuids();
60
61     assertThat(result).containsOnly("default-project-template-uuid", "default-view-template-uuid", "default-dev-template-uuid");
62   }
63
64   @Test
65   public void get_default_template_uuid_if_no_property() {
66     settings = new Settings();
67     settings.setProperty(DEFAULT_TEMPLATE_PROPERTY, "default-template-uuid");
68     underTest = new DefaultPermissionTemplateFinder(settings, resourceTypes);
69
70     Set<String> result = underTest.getDefaultTemplateUuids();
71
72     assertThat(result).containsOnly("default-template-uuid");
73   }
74
75   private static List<ResourceType> rootResourceTypes() {
76     ResourceType project = ResourceType.builder(Qualifiers.PROJECT).build();
77     ResourceType view = ResourceType.builder(Qualifiers.VIEW).build();
78     ResourceType dev = ResourceType.builder("DEV").build();
79
80     return asList(project, view, dev);
81   }
82 }