+++ /dev/null
-class Fake {}
+++ /dev/null
-class Fake {}
+++ /dev/null
-sonar.projectKey=com.foo.project
-sonar.projectName=Foo Project
-sonar.projectVersion=1.0-SNAPSHOT
-sonar.projectDescription=Description of Foo Project
-
-sonar.sources=sources
-sonar.tests=tests
-sonar.binaries=target/classes
-
-sonar.modules=module1
-
-module1.sonar.projectBaseDir=modules/module1
-module1.sonar.projectKey=com.foo.project.module1
-module1.sonar.projectName=Foo Module 1
-module1.sonar.modules=module1
-
-module1.module1.sonar.projectBaseDir=module1
-module1.module1.sonar.projectKey=com.foo.project.module1.module1
-module1.module1.sonar.projectName=Foo Sub Module 1
*/
package batch.suite;
-import static org.assertj.core.api.Assertions.assertThat;
-
-import com.sonar.orchestrator.build.BuildFailureException;
-
-import com.sonar.orchestrator.build.SonarRunner;
-import util.ItUtils;
import com.sonar.orchestrator.Orchestrator;
import com.sonar.orchestrator.build.MavenBuild;
import org.junit.ClassRule;
import org.junit.Test;
import org.sonar.wsclient.services.Resource;
import org.sonar.wsclient.services.ResourceQuery;
+import util.ItUtils;
+
+import static org.assertj.core.api.Assertions.assertThat;
/**
* Test the extension point org.sonar.api.batch.bootstrap.ProjectBuilder
assertThat(getResource("com.sonarsource.it.projects.batch:project-builder-module-b:src/IgnoredFile.java")).isNull();
}
- @Test
- // SONAR-6665
- public void errorSubModuleSameName() {
- SonarRunner build = SonarRunner.create(ItUtils.projectDir("batch/multi-module-repeated-names"));
-
- try {
- orchestrator.executeBuild(build);
- } catch (BuildFailureException e) {
- assertThat(e.getResult().getLogs()).contains("Two modules have the same id: module1");
- }
- }
-
private void checkProject() {
Resource project = getResource("com.sonarsource.it.projects.batch:project-builder");
public ProjectReactor execute() {
Profiler profiler = Profiler.create(LOG).startInfo("Process project properties");
- Map<String, Map<String, String>> propertiesByModuleId = new HashMap<>();
- extractPropertiesByModule(propertiesByModuleId, "", taskProps.properties());
- ProjectDefinition rootProject = defineRootProject(propertiesByModuleId.get(""), null);
+ Map<String, Map<String, String>> propertiesByModuleIdPath = new HashMap<>();
+ extractPropertiesByModule(propertiesByModuleIdPath, "", "", taskProps.properties());
+ ProjectDefinition rootProject = defineRootProject(propertiesByModuleIdPath.get(""), null);
rootProjectWorkDir = rootProject.getWorkDir();
- defineChildren(rootProject, propertiesByModuleId);
+ defineChildren(rootProject, propertiesByModuleIdPath, "");
cleanAndCheckProjectDefinitions(rootProject);
// Since task properties are now empty we should add root module properties
- taskProps.properties().putAll(propertiesByModuleId.get(""));
+ taskProps.properties().putAll(propertiesByModuleIdPath.get(""));
profiler.stopDebug();
return new ProjectReactor(rootProject);
}
- private static void extractPropertiesByModule(Map<String, Map<String, String>> propertiesByModuleId, String currentModuleId, Map<String, String> parentProperties) {
- if (propertiesByModuleId.containsKey(currentModuleId)) {
- throw new IllegalStateException(String.format("Two modules have the same id: %s. Each module must have a unique id.", currentModuleId));
+ private static void extractPropertiesByModule(Map<String, Map<String, String>> propertiesByModuleIdPath, String currentModuleId, String currentModuleIdPath,
+ Map<String, String> parentProperties) {
+ if (propertiesByModuleIdPath.containsKey(currentModuleIdPath)) {
+ throw new IllegalStateException(String.format("Two modules have the same id: '%s'. Each module must have a unique id.", currentModuleId));
}
Map<String, String> currentModuleProperties = new HashMap<>();
Arrays.sort(moduleIds);
ArrayUtils.reverse(moduleIds);
- propertiesByModuleId.put(currentModuleId, currentModuleProperties);
+ propertiesByModuleIdPath.put(currentModuleIdPath, currentModuleProperties);
for (String moduleId : moduleIds) {
- extractPropertiesByModule(propertiesByModuleId, moduleId, currentModuleProperties);
+ String subModuleIdPath = currentModuleIdPath.isEmpty() ? moduleId : (currentModuleIdPath + "." + moduleId);
+ extractPropertiesByModule(propertiesByModuleIdPath, moduleId, subModuleIdPath, currentModuleProperties);
}
}
return new File(moduleBaseDir, customBuildDir.getPath());
}
- private void defineChildren(ProjectDefinition parentProject, Map<String, Map<String, String>> propertiesByModuleId) {
+ private void defineChildren(ProjectDefinition parentProject, Map<String, Map<String, String>> propertiesByModuleIdPath, String parentModuleIdPath) {
Map<String, String> parentProps = parentProject.properties();
if (parentProps.containsKey(PROPERTY_MODULES)) {
for (String moduleId : getListFromProperty(parentProps, PROPERTY_MODULES)) {
- Map<String, String> moduleProps = propertiesByModuleId.get(moduleId);
+ String moduleIdPath = parentModuleIdPath.isEmpty() ? moduleId : (parentModuleIdPath + "." + moduleId);
+ Map<String, String> moduleProps = propertiesByModuleIdPath.get(moduleIdPath);
ProjectDefinition childProject = loadChildProject(parentProject, moduleProps, moduleId);
// check the uniqueness of the child key
checkUniquenessOfChildKey(childProject, parentProject);
// the child project may have children as well
- defineChildren(childProject, propertiesByModuleId);
+ defineChildren(childProject, propertiesByModuleIdPath, moduleIdPath);
// and finally add this child project to its parent
parentProject.addSubProject(childProject);
}
*/
package org.sonar.batch.scan;
-import org.apache.commons.lang.StringUtils;
-import org.junit.Before;
-import org.sonar.api.batch.AnalysisMode;
-import org.sonar.batch.analysis.AnalysisProperties;
import com.google.common.collect.Maps;
-import org.junit.Rule;
-import org.junit.Test;
-import org.junit.rules.ExpectedException;
-import org.sonar.api.batch.bootstrap.ProjectDefinition;
-import org.sonar.api.batch.bootstrap.ProjectReactor;
-import org.sonar.test.TestUtils;
-
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.Properties;
+import org.apache.commons.lang.StringUtils;
+import org.junit.Before;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.ExpectedException;
+import org.sonar.api.batch.AnalysisMode;
+import org.sonar.api.batch.bootstrap.ProjectDefinition;
+import org.sonar.api.batch.bootstrap.ProjectReactor;
+import org.sonar.batch.analysis.AnalysisProperties;
+import org.sonar.test.TestUtils;
-import static org.mockito.Mockito.when;
-
-import static org.mockito.Mockito.mock;
import static org.assertj.core.api.Assertions.assertThat;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
public class ProjectReactorBuilderTest {
public ExpectedException thrown = ExpectedException.none();
private AnalysisMode mode;
-
+
@Before
public void setUp() {
mode = mock(AnalysisMode.class);
}
-
+
@Test
public void shouldDefineSimpleProject() {
ProjectDefinition projectDefinition = loadProjectDefinition("simple-project");
}
@Test
- public void modulesRepeatedIds() {
+ public void modulesDuplicateIds() {
thrown.expect(IllegalStateException.class);
- thrown.expectMessage("Two modules have the same id: module1");
- loadProjectDefinition("multi-module-repeated-id");
+ thrown.expectMessage("Two modules have the same id: 'module1'. Each module must have a unique id.");
+
+ loadProjectDefinition("multi-module-duplicate-id");
+ }
+
+ @Test
+ public void modulesRepeatedIds() {
+ ProjectDefinition rootProject = loadProjectDefinition("multi-module-repeated-id");
+
+ List<ProjectDefinition> modules = rootProject.getSubProjects();
+ assertThat(modules.size()).isEqualTo(1);
+ // Module 1
+ ProjectDefinition module1 = modules.get(0);
+ assertThat(module1.getKey()).isEqualTo("com.foo.project:module1");
+ assertThat(module1.getName()).isEqualTo("Foo Module 1");
+
+ // Module 1 -> Module 1
+ ProjectDefinition module1_module1 = module1.getSubProjects().get(0);
+ assertThat(module1_module1.getKey()).isEqualTo("com.foo.project:module1:module1");
+ assertThat(module1_module1.getName()).isEqualTo("Foo Sub Module 1");
}
@Test
assertThat(workDir).isEqualTo(new File(baseDir, ".sonar"));
}
-
+
@Test
public void nonAssociatedMode() {
when(mode.isIssues()).thenReturn(true);
ProjectDefinition project = loadProjectDefinition("multi-module-with-basedir-not-associated");
-
+
assertThat(project.getKey()).isEqualTo("project");
}
private ProjectDefinition loadProjectDefinition(String projectFolder) {
Map<String, String> props = loadProps(projectFolder);
AnalysisProperties bootstrapProps = new AnalysisProperties(props, null);
- ProjectReactor projectReactor = new ProjectReactorBuilder(bootstrapProps,mode).execute();
+ ProjectReactor projectReactor = new ProjectReactorBuilder(bootstrapProps, mode).execute();
return projectReactor.getRoot();
}
-
+
protected static Properties toProperties(File propertyFile) {
Properties propsFromFile = new Properties();
try (FileInputStream fileInputStream = new FileInputStream(propertyFile)) {
--- /dev/null
+sonar.projectKey=com.foo.project
+sonar.projectName=Foo Project
+sonar.projectVersion=1.0-SNAPSHOT
+sonar.projectDescription=Description of Foo Project
+
+sonar.sources=sources
+sonar.tests=tests
+sonar.binaries=target/classes
+
+sonar.modules=module1,module1
+
+module1.sonar.sources=src
sonar.modules=module1
module1.sonar.projectBaseDir=modules/module1
-module1.sonar.projectKey=com.foo.project.module1
module1.sonar.projectName=Foo Module 1
module1.sonar.modules=module1
module1.module1.sonar.projectBaseDir=module1
-module1.module1.sonar.projectKey=com.foo.project.module1.module1
module1.module1.sonar.projectName=Foo Sub Module 1