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