]> source.dussan.org Git - sonarqube.git/commitdiff
Fix some minor violations
authorsimonbrandhof <simon.brandhof@gmail.com>
Fri, 10 Jun 2011 19:24:42 +0000 (21:24 +0200)
committersimonbrandhof <simon.brandhof@gmail.com>
Fri, 10 Jun 2011 19:24:42 +0000 (21:24 +0200)
sonar-batch/src/main/java/org/sonar/batch/bootstrap/ArtifactDownloader.java
sonar-batch/src/test/java/org/sonar/batch/bootstrap/BatchModuleTest.java [deleted file]
sonar-batch/src/test/java/org/sonar/batch/bootstrap/BootstrapClassLoaderTest.java
sonar-batch/src/test/java/org/sonar/batch/bootstrap/ModuleTest.java
sonar-batch/src/test/java/org/sonar/batch/bootstrap/ProjectExtensionInstallerTest.java

index 946df51833ea220bf8920ec1fb7f5c9f26e6f472..aeb872d3a245e540434f341a3481adc98affe4b0 100644 (file)
@@ -54,7 +54,7 @@ public class ArtifactDownloader implements BatchComponent {
     String url = baseUrl + "/deploy/jdbc-driver.jar";
     try {
       File jdbcDriver = new File(workingDirectories.getRoot(), "jdbc-driver.jar");
-      LOG.info("Download JDBC driver to " + jdbcDriver);
+      LOG.debug("Downloading JDBC driver to " + jdbcDriver);
       httpDownloader.download(new URI(url), jdbcDriver);
       return jdbcDriver;
 
@@ -67,7 +67,7 @@ public class ArtifactDownloader implements BatchComponent {
     try {
       File targetDir = workingDirectories.getDir("plugins/" + remote.getKey());
       FileUtils.forceMkdir(targetDir);
-      LOG.info("Downloading plugin " + remote.getKey() + " into " + targetDir);
+      LOG.debug("Downloading plugin " + remote.getKey() + " into " + targetDir);
 
       List<File> files = Lists.newArrayList();
       for (String filename : remote.getFilenames()) {
@@ -88,6 +88,7 @@ public class ArtifactDownloader implements BatchComponent {
   public List<RemotePlugin> downloadPluginIndex() {
     String url = baseUrl + "/deploy/plugins/index.txt";
     try {
+      LOG.debug("Downloading index of plugins");
       String indexContent = httpDownloader.downloadPlainText(new URI(url), "UTF-8");
       String[] rows = StringUtils.split(indexContent, CharUtils.LF);
       List<RemotePlugin> remoteLocations = Lists.newArrayList();
diff --git a/sonar-batch/src/test/java/org/sonar/batch/bootstrap/BatchModuleTest.java b/sonar-batch/src/test/java/org/sonar/batch/bootstrap/BatchModuleTest.java
deleted file mode 100644 (file)
index 6b6c14a..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Sonar, open source software quality management tool.
- * Copyright (C) 2008-2011 SonarSource
- * mailto:contact AT sonarsource DOT com
- *
- * Sonar 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.
- *
- * Sonar 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 Sonar; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
- */
-package org.sonar.batch.bootstrap;
-
-import org.junit.Ignore;
-
-@Ignore
-public class BatchModuleTest {
-
-}
index dfee29db76149274ac461083d56a2c5db548ec05..81790aeb18968d6e7a574c84bbf28101498ac6be 100644 (file)
@@ -24,7 +24,6 @@ import org.junit.Test;
 import java.io.File;
 import java.net.URISyntaxException;
 import java.net.URL;
-import java.util.Arrays;
 
 import static junit.framework.Assert.assertNotNull;
 import static junit.framework.Assert.assertNull;
@@ -40,6 +39,6 @@ public class BootstrapClassLoaderTest {
     JdbcDriverHolder classloader = new JdbcDriverHolder(new File(url.toURI()));
     assertNotNull(classloader.getClassLoader());
     assertNotNull(classloader.getClassLoader().getResource("foo/foo.txt"));
-    
+
   }
 }
index e85a72ecfad5a0d5d4d982a3f937cd0f2325cc5a..60fc585dd0b0ff336e06583b9e6656632de224d8 100644 (file)
@@ -21,7 +21,6 @@ package org.sonar.batch.bootstrap;
 
 import org.hamcrest.Matchers;
 import org.junit.Test;
-import org.sonar.batch.bootstrap.Module;
 
 import static org.hamcrest.Matchers.not;
 import static org.hamcrest.Matchers.nullValue;
@@ -69,7 +68,7 @@ public class ModuleTest {
   public void componentsShouldBeSingletons() {
     Module module = new FakeModule(FakeService.class).init();
 
-    assertThat(module.getComponent(FakeService.class)==module.getComponent(FakeService.class), is(true));
+    assertThat(module.getComponent(FakeService.class) == module.getComponent(FakeService.class), is(true));
   }
 
   @Test
index 12915c409d9680d10eb370d8774ba2f86a82f6ef..b8020422a1535a74b6b078a1efbbbb2116d3416f 100644 (file)
@@ -25,7 +25,6 @@ import org.apache.commons.configuration.PropertiesConfiguration;
 import org.apache.maven.project.MavenProject;
 import org.junit.Test;
 import org.sonar.api.*;
-import org.sonar.api.batch.AbstractCoverageExtension;
 import org.sonar.api.batch.CoverageExtension;
 import org.sonar.api.batch.InstantiationStrategy;
 import org.sonar.api.batch.SupportedEnvironment;
@@ -104,7 +103,7 @@ public class ProjectExtensionInstallerTest {
 
   private static Project newJavaProject(Configuration conf) {
     Project project = new Project("foo").setLanguageKey(Java.KEY).setAnalysisType(Project.AnalysisType.DYNAMIC);
-    project.setConfiguration(conf!=null ? conf : new PropertiesConfiguration());
+    project.setConfiguration(conf != null ? conf : new PropertiesConfiguration());
     return project;
   }