]> source.dussan.org Git - sonarqube.git/commitdiff
revert renaming of DebtModelPluginRepository to TechnicalDebtModelRepository as sonar...
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 10 Mar 2014 16:04:45 +0000 (17:04 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 10 Mar 2014 16:04:54 +0000 (17:04 +0100)
sonar-core/src/main/java/org/sonar/core/technicaldebt/CharacteristicsDebtModelSynchronizer.java
sonar-core/src/main/java/org/sonar/core/technicaldebt/DebtModelPluginRepository.java [deleted file]
sonar-core/src/main/java/org/sonar/core/technicaldebt/TechnicalDebtModelRepository.java [new file with mode: 0644]
sonar-core/src/main/java/org/sonar/core/technicaldebt/TechnicalDebtModelSynchronizer.java
sonar-core/src/test/java/org/sonar/core/technicaldebt/CharacteristicsDebtModelSynchronizerTest.java
sonar-core/src/test/java/org/sonar/core/technicaldebt/DebtModelPluginRepositoryTest.java [deleted file]
sonar-core/src/test/java/org/sonar/core/technicaldebt/TechnicalDebtModelRepositoryTest.java [new file with mode: 0644]
sonar-core/src/test/java/org/sonar/core/technicaldebt/TechnicalDebtModelSynchronizerTest.java
sonar-server/src/main/java/org/sonar/server/platform/Platform.java
sonar-server/src/main/java/org/sonar/server/rule/DeprecatedRuleDefinitions.java
sonar-server/src/test/java/org/sonar/server/rule/DeprecatedRuleDefinitionsTest.java

index 9ed88aa60047c3cd29242a0eaf09223774c7d69b..7a8730bc191a826876c78c7bca6704a31061dff3 100644 (file)
@@ -42,10 +42,10 @@ public class CharacteristicsDebtModelSynchronizer implements ServerExtension {
 
   private final MyBatis mybatis;
   private final CharacteristicDao dao;
-  private final DebtModelPluginRepository languageModelFinder;
+  private final TechnicalDebtModelRepository languageModelFinder;
   private final CharacteristicsDebtModelXMLImporter importer;
 
-  public CharacteristicsDebtModelSynchronizer(MyBatis mybatis, CharacteristicDao dao, DebtModelPluginRepository modelRepository, CharacteristicsDebtModelXMLImporter importer) {
+  public CharacteristicsDebtModelSynchronizer(MyBatis mybatis, CharacteristicDao dao, TechnicalDebtModelRepository modelRepository, CharacteristicsDebtModelXMLImporter importer) {
     this.mybatis = mybatis;
     this.dao = dao;
     this.languageModelFinder = modelRepository;
@@ -66,7 +66,7 @@ public class CharacteristicsDebtModelSynchronizer implements ServerExtension {
   }
 
   public List<CharacteristicDto> synchronize(ValidationMessages messages, SqlSession session) {
-    DefaultTechnicalDebtModel defaultModel = loadModelFromXml(DebtModelPluginRepository.DEFAULT_MODEL, messages);
+    DefaultTechnicalDebtModel defaultModel = loadModelFromXml(TechnicalDebtModelRepository.DEFAULT_MODEL, messages);
     List<CharacteristicDto> model = loadOrCreateModelFromDb(defaultModel, session);
     messages.log(LOG);
     return model;
diff --git a/sonar-core/src/main/java/org/sonar/core/technicaldebt/DebtModelPluginRepository.java b/sonar-core/src/main/java/org/sonar/core/technicaldebt/DebtModelPluginRepository.java
deleted file mode 100644 (file)
index d6bf39e..0000000
+++ /dev/null
@@ -1,138 +0,0 @@
-/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2013 SonarSource
- * mailto:contact AT sonarsource DOT com
- *
- * SonarQube is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or (at your option) any later version.
- *
- * SonarQube is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- */
-
-package org.sonar.core.technicaldebt;
-
-import com.google.common.annotations.VisibleForTesting;
-import com.google.common.collect.Maps;
-import org.picocontainer.Startable;
-import org.sonar.api.ServerExtension;
-import org.sonar.api.platform.PluginMetadata;
-import org.sonar.api.platform.PluginRepository;
-
-import java.io.InputStreamReader;
-import java.io.Reader;
-import java.util.Collection;
-import java.util.Collections;
-import java.util.Map;
-
-import static com.google.common.collect.Lists.newArrayList;
-
-/**
- * <p>This class is used to find which technical debt model XML files exist in the Sonar instance.</p>
- * <p>
- * Those XML files are provided by language plugins that embed their own contribution to the definition of the Technical debt model.
- * They must be located in the classpath of those language plugins, more specifically in the "com.sonar.sqale" package, and
- * they must be named "<pluginKey>-model.xml".
- * </p>
- */
-public class DebtModelPluginRepository implements ServerExtension, Startable {
-
-  public static final String DEFAULT_MODEL = "technical-debt";
-
-  private static final String XML_FILE_SUFFIX = "-model.xml";
-  private static final String XML_FILE_PREFIX = "com/sonar/sqale/";
-
-  private String xmlFilePrefix;
-
-  private PluginRepository pluginRepository;
-  private Map<String, ClassLoader> contributingPluginKeyToClassLoader;
-
-  public DebtModelPluginRepository(PluginRepository pluginRepository) {
-    this.pluginRepository = pluginRepository;
-    this.xmlFilePrefix = XML_FILE_PREFIX;
-  }
-
-  @VisibleForTesting
-  DebtModelPluginRepository(PluginRepository pluginRepository, String xmlFilePrefix) {
-    this.pluginRepository = pluginRepository;
-    this.xmlFilePrefix = xmlFilePrefix;
-  }
-
-  @VisibleForTesting
-  DebtModelPluginRepository(Map<String, ClassLoader> contributingPluginKeyToClassLoader, String xmlFilePrefix) {
-    this.contributingPluginKeyToClassLoader = contributingPluginKeyToClassLoader;
-    this.xmlFilePrefix = xmlFilePrefix;
-  }
-
-  /**
-   * {@inheritDoc}
-   */
-  @Override
-  public void start() {
-    findAvailableXMLFiles();
-  }
-
-  protected void findAvailableXMLFiles() {
-    if (contributingPluginKeyToClassLoader == null) {
-      contributingPluginKeyToClassLoader = Maps.newTreeMap();
-      // Add default model
-      contributingPluginKeyToClassLoader.put(DEFAULT_MODEL, getClass().getClassLoader());
-      for (PluginMetadata metadata : pluginRepository.getMetadata()) {
-        String pluginKey = metadata.getKey();
-        ClassLoader classLoader = pluginRepository.getPlugin(pluginKey).getClass().getClassLoader();
-        if (classLoader.getResource(getXMLFilePath(pluginKey)) != null) {
-          contributingPluginKeyToClassLoader.put(pluginKey, classLoader);
-        }
-      }
-    }
-    contributingPluginKeyToClassLoader = Collections.unmodifiableMap(contributingPluginKeyToClassLoader);
-  }
-
-  @VisibleForTesting
-  String getXMLFilePath(String model) {
-    return xmlFilePrefix + model + XML_FILE_SUFFIX;
-  }
-
-  /**
-   * Returns the list of plugins that can contribute to the technical debt model.
-   *
-   * @return the list of plugin keys
-   */
-  public Collection<String> getContributingPluginList() {
-    return newArrayList(contributingPluginKeyToClassLoader.keySet());
-  }
-
-  /**
-   * Creates a new {@link java.io.Reader} for the XML file that contains the model contributed by the given plugin.
-   *
-   * @param pluginKey the key of the plugin that contributes the XML file
-   * @return the reader, that must be closed once its use is finished.
-   */
-  public Reader createReaderForXMLFile(String pluginKey) {
-    ClassLoader classLoader = contributingPluginKeyToClassLoader.get(pluginKey);
-    String xmlFilePath = getXMLFilePath(pluginKey);
-    return new InputStreamReader(classLoader.getResourceAsStream(xmlFilePath));
-  }
-
-  @VisibleForTesting
-  Map<String, ClassLoader> getContributingPluginKeyToClassLoader(){
-    return contributingPluginKeyToClassLoader;
-  }
-
-  /**
-   * {@inheritDoc}
-   */
-  @Override
-  public void stop() {
-    // Nothing to do
-  }
-
-}
diff --git a/sonar-core/src/main/java/org/sonar/core/technicaldebt/TechnicalDebtModelRepository.java b/sonar-core/src/main/java/org/sonar/core/technicaldebt/TechnicalDebtModelRepository.java
new file mode 100644 (file)
index 0000000..d103004
--- /dev/null
@@ -0,0 +1,138 @@
+/*
+ * SonarQube, open source software quality management tool.
+ * Copyright (C) 2008-2013 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * SonarQube is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * SonarQube is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+
+package org.sonar.core.technicaldebt;
+
+import com.google.common.annotations.VisibleForTesting;
+import com.google.common.collect.Maps;
+import org.picocontainer.Startable;
+import org.sonar.api.ServerExtension;
+import org.sonar.api.platform.PluginMetadata;
+import org.sonar.api.platform.PluginRepository;
+
+import java.io.InputStreamReader;
+import java.io.Reader;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.Map;
+
+import static com.google.common.collect.Lists.newArrayList;
+
+/**
+ * <p>This class is used to find which technical debt model XML files exist in the Sonar instance.</p>
+ * <p>
+ * Those XML files are provided by language plugins that embed their own contribution to the definition of the Technical debt model.
+ * They must be located in the classpath of those language plugins, more specifically in the "com.sonar.sqale" package, and
+ * they must be named "<pluginKey>-model.xml".
+ * </p>
+ */
+public class TechnicalDebtModelRepository implements ServerExtension, Startable {
+
+  public static final String DEFAULT_MODEL = "technical-debt";
+
+  private static final String XML_FILE_SUFFIX = "-model.xml";
+  private static final String XML_FILE_PREFIX = "com/sonar/sqale/";
+
+  private String xmlFilePrefix;
+
+  private PluginRepository pluginRepository;
+  private Map<String, ClassLoader> contributingPluginKeyToClassLoader;
+
+  public TechnicalDebtModelRepository(PluginRepository pluginRepository) {
+    this.pluginRepository = pluginRepository;
+    this.xmlFilePrefix = XML_FILE_PREFIX;
+  }
+
+  @VisibleForTesting
+  TechnicalDebtModelRepository(PluginRepository pluginRepository, String xmlFilePrefix) {
+    this.pluginRepository = pluginRepository;
+    this.xmlFilePrefix = xmlFilePrefix;
+  }
+
+  @VisibleForTesting
+  TechnicalDebtModelRepository(Map<String, ClassLoader> contributingPluginKeyToClassLoader, String xmlFilePrefix) {
+    this.contributingPluginKeyToClassLoader = contributingPluginKeyToClassLoader;
+    this.xmlFilePrefix = xmlFilePrefix;
+  }
+
+  /**
+   * {@inheritDoc}
+   */
+  @Override
+  public void start() {
+    findAvailableXMLFiles();
+  }
+
+  protected void findAvailableXMLFiles() {
+    if (contributingPluginKeyToClassLoader == null) {
+      contributingPluginKeyToClassLoader = Maps.newTreeMap();
+      // Add default model
+      contributingPluginKeyToClassLoader.put(DEFAULT_MODEL, getClass().getClassLoader());
+      for (PluginMetadata metadata : pluginRepository.getMetadata()) {
+        String pluginKey = metadata.getKey();
+        ClassLoader classLoader = pluginRepository.getPlugin(pluginKey).getClass().getClassLoader();
+        if (classLoader.getResource(getXMLFilePath(pluginKey)) != null) {
+          contributingPluginKeyToClassLoader.put(pluginKey, classLoader);
+        }
+      }
+    }
+    contributingPluginKeyToClassLoader = Collections.unmodifiableMap(contributingPluginKeyToClassLoader);
+  }
+
+  @VisibleForTesting
+  String getXMLFilePath(String model) {
+    return xmlFilePrefix + model + XML_FILE_SUFFIX;
+  }
+
+  /**
+   * Returns the list of plugins that can contribute to the technical debt model.
+   *
+   * @return the list of plugin keys
+   */
+  public Collection<String> getContributingPluginList() {
+    return newArrayList(contributingPluginKeyToClassLoader.keySet());
+  }
+
+  /**
+   * Creates a new {@link java.io.Reader} for the XML file that contains the model contributed by the given plugin.
+   *
+   * @param pluginKey the key of the plugin that contributes the XML file
+   * @return the reader, that must be closed once its use is finished.
+   */
+  public Reader createReaderForXMLFile(String pluginKey) {
+    ClassLoader classLoader = contributingPluginKeyToClassLoader.get(pluginKey);
+    String xmlFilePath = getXMLFilePath(pluginKey);
+    return new InputStreamReader(classLoader.getResourceAsStream(xmlFilePath));
+  }
+
+  @VisibleForTesting
+  Map<String, ClassLoader> getContributingPluginKeyToClassLoader(){
+    return contributingPluginKeyToClassLoader;
+  }
+
+  /**
+   * {@inheritDoc}
+   */
+  @Override
+  public void stop() {
+    // Nothing to do
+  }
+
+}
index fef9f7b23cd950bc45012930bb75c87b09c39dd8..349a08bc9cb82963516a23b6f1a9ee6de67eb187 100644 (file)
@@ -49,11 +49,11 @@ public class TechnicalDebtModelSynchronizer implements ServerExtension {
 
   private final MyBatis mybatis;
   private final CharacteristicDao dao;
-  private final DebtModelPluginRepository languageModelFinder;
+  private final TechnicalDebtModelRepository languageModelFinder;
   private final TechnicalDebtXMLImporter importer;
 
   public TechnicalDebtModelSynchronizer(MyBatis mybatis, CharacteristicDao dao,
-                                        DebtModelPluginRepository modelRepository, TechnicalDebtXMLImporter importer) {
+                                        TechnicalDebtModelRepository modelRepository, TechnicalDebtXMLImporter importer) {
     this.mybatis = mybatis;
     this.dao = dao;
     this.languageModelFinder = modelRepository;
@@ -74,7 +74,7 @@ public class TechnicalDebtModelSynchronizer implements ServerExtension {
   }
 
   public List<CharacteristicDto> synchronize(ValidationMessages messages, TechnicalDebtRuleCache rulesCache, SqlSession session) {
-    DefaultTechnicalDebtModel defaultModel = loadModelFromXml(DebtModelPluginRepository.DEFAULT_MODEL, messages, rulesCache);
+    DefaultTechnicalDebtModel defaultModel = loadModelFromXml(TechnicalDebtModelRepository.DEFAULT_MODEL, messages, rulesCache);
     List<CharacteristicDto> model = loadOrCreateModelFromDb(defaultModel, session);
     disableRequirementsOnRemovedRules(model, rulesCache, session);
     mergePlugins(model, defaultModel, messages, rulesCache, session);
@@ -169,7 +169,7 @@ public class TechnicalDebtModelSynchronizer implements ServerExtension {
 
   private Collection<String> getContributingPluginListWithoutSqale() {
     Collection<String> pluginList = newArrayList(languageModelFinder.getContributingPluginList());
-    pluginList.remove(DebtModelPluginRepository.DEFAULT_MODEL);
+    pluginList.remove(TechnicalDebtModelRepository.DEFAULT_MODEL);
     return pluginList;
   }
 
index 814e12fa54f4a9d1af6723928ad80f83d7d0b9ef..db3184b7afecac1bc646684c1aba9586a63af136 100644 (file)
@@ -55,7 +55,7 @@ public class CharacteristicsDebtModelSynchronizerTest {
   SqlSession session;
 
   @Mock
-  DebtModelPluginRepository debtModelPluginRepository;
+  TechnicalDebtModelRepository technicalDebtModelRepository;
 
   @Mock
   CharacteristicDao dao;
@@ -75,7 +75,7 @@ public class CharacteristicsDebtModelSynchronizerTest {
 
     defaultModel = new DefaultTechnicalDebtModel();
     Reader defaultModelReader = mock(Reader.class);
-    when(debtModelPluginRepository.createReaderForXMLFile("technical-debt")).thenReturn(defaultModelReader);
+    when(technicalDebtModelRepository.createReaderForXMLFile("technical-debt")).thenReturn(defaultModelReader);
     when(xmlImporter.importXML(eq(defaultModelReader), any(ValidationMessages.class))).thenReturn(defaultModel);
 
     doAnswer(new Answer() {
@@ -88,7 +88,7 @@ public class CharacteristicsDebtModelSynchronizerTest {
     }).when(dao).insert(any(CharacteristicDto.class), any(SqlSession.class));
 
 
-    manager = new CharacteristicsDebtModelSynchronizer(myBatis, dao, debtModelPluginRepository, xmlImporter);
+    manager = new CharacteristicsDebtModelSynchronizer(myBatis, dao, technicalDebtModelRepository, xmlImporter);
   }
 
   @Test
@@ -97,7 +97,7 @@ public class CharacteristicsDebtModelSynchronizerTest {
     new DefaultCharacteristic().setKey("COMPILER_RELATED_PORTABILITY").setParent(rootCharacteristic);
     defaultModel.addRootCharacteristic(rootCharacteristic);
 
-    when(debtModelPluginRepository.getContributingPluginList()).thenReturn(Collections.<String>emptyList());
+    when(technicalDebtModelRepository.getContributingPluginList()).thenReturn(Collections.<String>emptyList());
     when(dao.selectEnabledCharacteristics()).thenReturn(Lists.<CharacteristicDto>newArrayList());
 
     manager.synchronize(ValidationMessages.create());
@@ -118,7 +118,7 @@ public class CharacteristicsDebtModelSynchronizerTest {
     new DefaultCharacteristic().setKey("COMPILER_RELATED_PORTABILITY").setParent(rootCharacteristic);
     defaultModel.addRootCharacteristic(rootCharacteristic);
 
-    when(debtModelPluginRepository.getContributingPluginList()).thenReturn(Collections.<String>emptyList());
+    when(technicalDebtModelRepository.getContributingPluginList()).thenReturn(Collections.<String>emptyList());
     when(dao.selectEnabledCharacteristics()).thenReturn(Lists.newArrayList(new CharacteristicDto()));
 
     manager.synchronize(ValidationMessages.create());
diff --git a/sonar-core/src/test/java/org/sonar/core/technicaldebt/DebtModelPluginRepositoryTest.java b/sonar-core/src/test/java/org/sonar/core/technicaldebt/DebtModelPluginRepositoryTest.java
deleted file mode 100644 (file)
index 822c468..0000000
+++ /dev/null
@@ -1,141 +0,0 @@
-/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2013 SonarSource
- * mailto:contact AT sonarsource DOT com
- *
- * SonarQube is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or (at your option) any later version.
- *
- * SonarQube is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- */
-
-package org.sonar.core.technicaldebt;
-
-import com.google.common.collect.Lists;
-import com.google.common.collect.Maps;
-import com.google.common.io.Resources;
-import org.apache.commons.io.IOUtils;
-import org.junit.Test;
-import org.mockito.invocation.InvocationOnMock;
-import org.mockito.stubbing.Answer;
-import org.sonar.api.SonarPlugin;
-import org.sonar.api.platform.PluginMetadata;
-import org.sonar.api.platform.PluginRepository;
-
-import java.io.FileInputStream;
-import java.io.InputStream;
-import java.io.Reader;
-import java.net.MalformedURLException;
-import java.util.Collection;
-import java.util.List;
-import java.util.Map;
-
-import static org.fest.assertions.Assertions.assertThat;
-import static org.junit.Assert.assertNotNull;
-import static org.junit.Assert.fail;
-import static org.mockito.Matchers.anyString;
-import static org.mockito.Mockito.mock;
-import static org.mockito.Mockito.when;
-
-public class DebtModelPluginRepositoryTest {
-
-  private static final String TEST_XML_PREFIX_PATH = "org/sonar/core/technicaldebt/TechnicalDebtModelRepositoryTest/";
-
-  private DebtModelPluginRepository modelFinder;
-
-  @Test
-  public void test_component_initialization() throws Exception {
-    // we do have the "csharp-model.xml" file in src/test/resources
-    PluginMetadata csharpPluginMetadata = mock(PluginMetadata.class);
-    when(csharpPluginMetadata.getKey()).thenReturn("csharp");
-
-    // but we don' have the "php-model.xml" one
-    PluginMetadata phpPluginMetadata = mock(PluginMetadata.class);
-    when(phpPluginMetadata.getKey()).thenReturn("php");
-
-    PluginRepository repository = mock(PluginRepository.class);
-    when(repository.getMetadata()).thenReturn(Lists.newArrayList(csharpPluginMetadata, phpPluginMetadata));
-    FakePlugin fakePlugin = new FakePlugin();
-    when(repository.getPlugin(anyString())).thenReturn(fakePlugin);
-    modelFinder = new DebtModelPluginRepository(repository, TEST_XML_PREFIX_PATH);
-
-    // when
-    modelFinder.start();
-
-    // assert
-    Collection<String> contributingPluginList = modelFinder.getContributingPluginList();
-    assertThat(contributingPluginList.size()).isEqualTo(2);
-    assertThat(contributingPluginList).containsOnly("technical-debt", "csharp");
-  }
-
-  @Test
-  public void contributing_plugin_list() throws Exception {
-    initModel();
-    Collection<String> contributingPluginList = modelFinder.getContributingPluginList();
-    assertThat(contributingPluginList.size()).isEqualTo(2);
-    assertThat(contributingPluginList).contains("csharp", "java");
-  }
-
-  @Test
-  public void get_content_for_xml_file() throws Exception {
-    initModel();
-    Reader xmlFileReader = null;
-    try {
-      xmlFileReader = modelFinder.createReaderForXMLFile("csharp");
-      assertNotNull(xmlFileReader);
-      List<String> lines = IOUtils.readLines(xmlFileReader);
-      assertThat(lines.size()).isEqualTo(25);
-      assertThat(lines.get(0)).isEqualTo("<sqale>");
-    } catch (Exception e) {
-      fail("Should be able to read the XML file.");
-    } finally {
-      IOUtils.closeQuietly(xmlFileReader);
-    }
-  }
-
-  @Test
-  public void return_xml_file_path_for_plugin() throws Exception {
-    initModel();
-    assertThat(modelFinder.getXMLFilePath("foo")).isEqualTo(TEST_XML_PREFIX_PATH + "foo-model.xml");
-  }
-
-  @Test
-  public void contain_default_model() throws Exception {
-    modelFinder = new DebtModelPluginRepository(mock(PluginRepository.class));
-    modelFinder.start();
-    assertThat(modelFinder.getContributingPluginKeyToClassLoader().keySet()).containsOnly("technical-debt");
-  }
-
-  private void initModel() throws MalformedURLException {
-    Map<String, ClassLoader> contributingPluginKeyToClassLoader = Maps.newHashMap();
-    contributingPluginKeyToClassLoader.put("csharp", newClassLoader());
-    contributingPluginKeyToClassLoader.put("java", newClassLoader());
-    modelFinder = new DebtModelPluginRepository(contributingPluginKeyToClassLoader, TEST_XML_PREFIX_PATH);
-  }
-
-  private ClassLoader newClassLoader() throws MalformedURLException {
-    ClassLoader loader = mock(ClassLoader.class);
-    when(loader.getResourceAsStream(anyString())).thenAnswer(new Answer<InputStream>() {
-      public InputStream answer(InvocationOnMock invocation) throws Throwable {
-        return new FileInputStream(Resources.getResource((String) invocation.getArguments()[0]).getPath());
-      }
-    });
-    return loader;
-  }
-
-  class FakePlugin extends SonarPlugin {
-    public List getExtensions() {
-      return null;
-    }
-  }
-
-}
diff --git a/sonar-core/src/test/java/org/sonar/core/technicaldebt/TechnicalDebtModelRepositoryTest.java b/sonar-core/src/test/java/org/sonar/core/technicaldebt/TechnicalDebtModelRepositoryTest.java
new file mode 100644 (file)
index 0000000..0b69fa8
--- /dev/null
@@ -0,0 +1,141 @@
+/*
+ * SonarQube, open source software quality management tool.
+ * Copyright (C) 2008-2013 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * SonarQube is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * SonarQube is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+
+package org.sonar.core.technicaldebt;
+
+import com.google.common.collect.Lists;
+import com.google.common.collect.Maps;
+import com.google.common.io.Resources;
+import org.apache.commons.io.IOUtils;
+import org.junit.Test;
+import org.mockito.invocation.InvocationOnMock;
+import org.mockito.stubbing.Answer;
+import org.sonar.api.SonarPlugin;
+import org.sonar.api.platform.PluginMetadata;
+import org.sonar.api.platform.PluginRepository;
+
+import java.io.FileInputStream;
+import java.io.InputStream;
+import java.io.Reader;
+import java.net.MalformedURLException;
+import java.util.Collection;
+import java.util.List;
+import java.util.Map;
+
+import static org.fest.assertions.Assertions.assertThat;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.fail;
+import static org.mockito.Matchers.anyString;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+public class TechnicalDebtModelRepositoryTest {
+
+  private static final String TEST_XML_PREFIX_PATH = "org/sonar/core/technicaldebt/TechnicalDebtModelRepositoryTest/";
+
+  private TechnicalDebtModelRepository modelFinder;
+
+  @Test
+  public void test_component_initialization() throws Exception {
+    // we do have the "csharp-model.xml" file in src/test/resources
+    PluginMetadata csharpPluginMetadata = mock(PluginMetadata.class);
+    when(csharpPluginMetadata.getKey()).thenReturn("csharp");
+
+    // but we don' have the "php-model.xml" one
+    PluginMetadata phpPluginMetadata = mock(PluginMetadata.class);
+    when(phpPluginMetadata.getKey()).thenReturn("php");
+
+    PluginRepository repository = mock(PluginRepository.class);
+    when(repository.getMetadata()).thenReturn(Lists.newArrayList(csharpPluginMetadata, phpPluginMetadata));
+    FakePlugin fakePlugin = new FakePlugin();
+    when(repository.getPlugin(anyString())).thenReturn(fakePlugin);
+    modelFinder = new TechnicalDebtModelRepository(repository, TEST_XML_PREFIX_PATH);
+
+    // when
+    modelFinder.start();
+
+    // assert
+    Collection<String> contributingPluginList = modelFinder.getContributingPluginList();
+    assertThat(contributingPluginList.size()).isEqualTo(2);
+    assertThat(contributingPluginList).containsOnly("technical-debt", "csharp");
+  }
+
+  @Test
+  public void contributing_plugin_list() throws Exception {
+    initModel();
+    Collection<String> contributingPluginList = modelFinder.getContributingPluginList();
+    assertThat(contributingPluginList.size()).isEqualTo(2);
+    assertThat(contributingPluginList).contains("csharp", "java");
+  }
+
+  @Test
+  public void get_content_for_xml_file() throws Exception {
+    initModel();
+    Reader xmlFileReader = null;
+    try {
+      xmlFileReader = modelFinder.createReaderForXMLFile("csharp");
+      assertNotNull(xmlFileReader);
+      List<String> lines = IOUtils.readLines(xmlFileReader);
+      assertThat(lines.size()).isEqualTo(25);
+      assertThat(lines.get(0)).isEqualTo("<sqale>");
+    } catch (Exception e) {
+      fail("Should be able to read the XML file.");
+    } finally {
+      IOUtils.closeQuietly(xmlFileReader);
+    }
+  }
+
+  @Test
+  public void return_xml_file_path_for_plugin() throws Exception {
+    initModel();
+    assertThat(modelFinder.getXMLFilePath("foo")).isEqualTo(TEST_XML_PREFIX_PATH + "foo-model.xml");
+  }
+
+  @Test
+  public void contain_default_model() throws Exception {
+    modelFinder = new TechnicalDebtModelRepository(mock(PluginRepository.class));
+    modelFinder.start();
+    assertThat(modelFinder.getContributingPluginKeyToClassLoader().keySet()).containsOnly("technical-debt");
+  }
+
+  private void initModel() throws MalformedURLException {
+    Map<String, ClassLoader> contributingPluginKeyToClassLoader = Maps.newHashMap();
+    contributingPluginKeyToClassLoader.put("csharp", newClassLoader());
+    contributingPluginKeyToClassLoader.put("java", newClassLoader());
+    modelFinder = new TechnicalDebtModelRepository(contributingPluginKeyToClassLoader, TEST_XML_PREFIX_PATH);
+  }
+
+  private ClassLoader newClassLoader() throws MalformedURLException {
+    ClassLoader loader = mock(ClassLoader.class);
+    when(loader.getResourceAsStream(anyString())).thenAnswer(new Answer<InputStream>() {
+      public InputStream answer(InvocationOnMock invocation) throws Throwable {
+        return new FileInputStream(Resources.getResource((String) invocation.getArguments()[0]).getPath());
+      }
+    });
+    return loader;
+  }
+
+  class FakePlugin extends SonarPlugin {
+    public List getExtensions() {
+      return null;
+    }
+  }
+
+}
index b49190b6f2fbf5a1695562b4705b5a98c946a618..5419bb969783cc4405d81d9d6060bfb726ef73a2 100644 (file)
@@ -61,7 +61,7 @@ public class TechnicalDebtModelSynchronizerTest {
   SqlSession session;
 
   @Mock
-  DebtModelPluginRepository debtModelPluginRepository;
+  TechnicalDebtModelRepository technicalDebtModelRepository;
 
   @Mock
   TechnicalDebtRuleCache ruleCache;
@@ -84,7 +84,7 @@ public class TechnicalDebtModelSynchronizerTest {
 
     defaultModel = new DefaultTechnicalDebtModel();
     Reader defaultModelReader = mock(Reader.class);
-    when(debtModelPluginRepository.createReaderForXMLFile("technical-debt")).thenReturn(defaultModelReader);
+    when(technicalDebtModelRepository.createReaderForXMLFile("technical-debt")).thenReturn(defaultModelReader);
     when(xmlImporter.importXML(eq(defaultModelReader), any(ValidationMessages.class), eq(ruleCache))).thenReturn(defaultModel);
 
     doAnswer(new Answer() {
@@ -97,7 +97,7 @@ public class TechnicalDebtModelSynchronizerTest {
     }).when(dao).insert(any(CharacteristicDto.class), any(SqlSession.class));
 
 
-    manager = new TechnicalDebtModelSynchronizer(myBatis, dao, debtModelPluginRepository, xmlImporter);
+    manager = new TechnicalDebtModelSynchronizer(myBatis, dao, technicalDebtModelRepository, xmlImporter);
   }
 
   @Test
@@ -106,7 +106,7 @@ public class TechnicalDebtModelSynchronizerTest {
     new DefaultCharacteristic().setKey("COMPILER_RELATED_PORTABILITY").setParent(rootCharacteristic);
     defaultModel.addRootCharacteristic(rootCharacteristic);
 
-    when(debtModelPluginRepository.getContributingPluginList()).thenReturn(Collections.<String>emptyList());
+    when(technicalDebtModelRepository.getContributingPluginList()).thenReturn(Collections.<String>emptyList());
     when(dao.selectEnabledCharacteristics()).thenReturn(Lists.<CharacteristicDto>newArrayList());
 
     manager.synchronize(ValidationMessages.create(), ruleCache);
@@ -150,8 +150,8 @@ public class TechnicalDebtModelSynchronizerTest {
 
     Reader javaModelReader = mock(Reader.class);
     when(xmlImporter.importXML(eq(javaModelReader), any(ValidationMessages.class), eq(ruleCache))).thenReturn(javaModel);
-    when(debtModelPluginRepository.createReaderForXMLFile("java")).thenReturn(javaModelReader);
-    when(debtModelPluginRepository.getContributingPluginList()).thenReturn(newArrayList("java"));
+    when(technicalDebtModelRepository.createReaderForXMLFile("java")).thenReturn(javaModelReader);
+    when(technicalDebtModelRepository.getContributingPluginList()).thenReturn(newArrayList("java"));
 
     manager.synchronize(ValidationMessages.create(), ruleCache);
 
@@ -206,9 +206,9 @@ public class TechnicalDebtModelSynchronizerTest {
       .setRootCharacteristic(javaRootCharacteristic);
 
     Reader javaModelReader = mock(Reader.class);
-    when(debtModelPluginRepository.createReaderForXMLFile("java")).thenReturn(javaModelReader);
+    when(technicalDebtModelRepository.createReaderForXMLFile("java")).thenReturn(javaModelReader);
     when(xmlImporter.importXML(eq(javaModelReader), any(ValidationMessages.class), eq(ruleCache))).thenReturn(javaModel);
-    when(debtModelPluginRepository.getContributingPluginList()).thenReturn(newArrayList("java"));
+    when(technicalDebtModelRepository.getContributingPluginList()).thenReturn(newArrayList("java"));
 
     manager.synchronize(ValidationMessages.create(), ruleCache);
 
@@ -264,9 +264,9 @@ public class TechnicalDebtModelSynchronizerTest {
       javaModel.addRootCharacteristic(javaRootCharacteristic);
 
       Reader javaModelReader = mock(Reader.class);
-      when(debtModelPluginRepository.createReaderForXMLFile("java")).thenReturn(javaModelReader);
+      when(technicalDebtModelRepository.createReaderForXMLFile("java")).thenReturn(javaModelReader);
       when(xmlImporter.importXML(eq(javaModelReader), any(ValidationMessages.class), eq(ruleCache))).thenReturn(javaModel);
-      when(debtModelPluginRepository.getContributingPluginList()).thenReturn(newArrayList("java"));
+      when(technicalDebtModelRepository.getContributingPluginList()).thenReturn(newArrayList("java"));
 
       manager.synchronize(ValidationMessages.create(), ruleCache);
       fail();
index fbd8d8aad29fc29adf126ed7ab7472eeafe50575..a061f05ad7802edc42d2eeee28df1a5deb02e10e 100644 (file)
@@ -385,7 +385,7 @@ public final class Platform {
     servicesContainer.addSingleton(DebtService.class);
     servicesContainer.addSingleton(TechnicalDebtModelSynchronizer.class);
     servicesContainer.addSingleton(CharacteristicsDebtModelSynchronizer.class);
-    servicesContainer.addSingleton(DebtModelPluginRepository.class);
+    servicesContainer.addSingleton(TechnicalDebtModelRepository.class);
     servicesContainer.addSingleton(TechnicalDebtXMLImporter.class);
     servicesContainer.addSingleton(RulesDebtModelXMLImporter.class);
     servicesContainer.addSingleton(CharacteristicsDebtModelXMLImporter.class);
index 19e65fbe32d34c1fafa8372df34282044acfe7e4..4d49920f0140a9870c6d3924641cad7c0db772ab 100644 (file)
@@ -31,8 +31,8 @@ import org.sonar.api.server.rule.RuleDefinitions;
 import org.sonar.api.server.rule.RuleParamType;
 import org.sonar.check.Cardinality;
 import org.sonar.core.i18n.RuleI18nManager;
-import org.sonar.core.technicaldebt.DebtModelPluginRepository;
 import org.sonar.core.technicaldebt.RulesDebtModelXMLImporter;
+import org.sonar.core.technicaldebt.TechnicalDebtModelRepository;
 
 import javax.annotation.CheckForNull;
 
@@ -52,17 +52,17 @@ public class DeprecatedRuleDefinitions implements RuleDefinitions {
   private final RuleI18nManager i18n;
   private final RuleRepository[] repositories;
 
-  private final DebtModelPluginRepository languageModelFinder;
+  private final TechnicalDebtModelRepository languageModelFinder;
   private final RulesDebtModelXMLImporter importer;
 
-  public DeprecatedRuleDefinitions(RuleI18nManager i18n, RuleRepository[] repositories, DebtModelPluginRepository languageModelFinder, RulesDebtModelXMLImporter importer) {
+  public DeprecatedRuleDefinitions(RuleI18nManager i18n, RuleRepository[] repositories, TechnicalDebtModelRepository languageModelFinder, RulesDebtModelXMLImporter importer) {
     this.i18n = i18n;
     this.repositories = repositories;
     this.languageModelFinder = languageModelFinder;
     this.importer = importer;
   }
 
-  public DeprecatedRuleDefinitions(RuleI18nManager i18n, DebtModelPluginRepository languageModelFinder, RulesDebtModelXMLImporter importer) {
+  public DeprecatedRuleDefinitions(RuleI18nManager i18n, TechnicalDebtModelRepository languageModelFinder, RulesDebtModelXMLImporter importer) {
     this(i18n, new RuleRepository[0], languageModelFinder, importer);
   }
 
@@ -158,7 +158,7 @@ public class DeprecatedRuleDefinitions implements RuleDefinitions {
 
   private Collection<String> getContributingPluginListWithoutSqale() {
     Collection<String> pluginList = newArrayList(languageModelFinder.getContributingPluginList());
-    pluginList.remove(DebtModelPluginRepository.DEFAULT_MODEL);
+    pluginList.remove(TechnicalDebtModelRepository.DEFAULT_MODEL);
     return pluginList;
   }
 
index b5002bb6cc112389f68c6c023e8fc63dadeab2cb..b7db10816981a364d453d5952baee851e0b42e51 100644 (file)
@@ -32,8 +32,8 @@ import org.sonar.api.rules.RulePriority;
 import org.sonar.api.rules.RuleRepository;
 import org.sonar.api.server.rule.RuleDefinitions;
 import org.sonar.core.i18n.RuleI18nManager;
-import org.sonar.core.technicaldebt.DebtModelPluginRepository;
 import org.sonar.core.technicaldebt.RulesDebtModelXMLImporter;
+import org.sonar.core.technicaldebt.TechnicalDebtModelRepository;
 
 import java.io.Reader;
 import java.util.Arrays;
@@ -52,7 +52,7 @@ public class DeprecatedRuleDefinitionsTest {
   RuleI18nManager i18n;
 
   @Mock
-  DebtModelPluginRepository debtModelRepository;
+  TechnicalDebtModelRepository debtModelRepository;
 
   @Mock
   RulesDebtModelXMLImporter importer;