]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-10690 move deprecated views task to public scanner
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 8 Jun 2018 16:13:19 +0000 (18:13 +0200)
committerSonarTech <sonartech@sonarsource.com>
Tue, 12 Jun 2018 18:21:04 +0000 (20:21 +0200)
sonar-scanner-engine/src/main/java/org/sonar/scanner/bootstrap/BatchComponents.java
sonar-scanner-engine/src/main/java/org/sonar/scanner/task/ViewsTask.java [new file with mode: 0644]
sonar-scanner-engine/src/test/java/org/sonar/scanner/task/ViewsTaskTest.java [new file with mode: 0644]

index da7fd41b87407639b6b887e286d54ac556cd4f77..9331e3cf5f842657022efad7eb193ac4e9451dca 100644 (file)
@@ -38,6 +38,7 @@ import org.sonar.scanner.source.ZeroCoverageSensor;
 import org.sonar.scanner.task.ListTask;
 import org.sonar.scanner.task.ScanTask;
 import org.sonar.scanner.task.Tasks;
+import org.sonar.scanner.task.ViewsTask;
 
 public class BatchComponents {
   private BatchComponents() {
@@ -53,7 +54,9 @@ public class BatchComponents {
       ListTask.DEFINITION,
       ListTask.class,
       ScanTask.DEFINITION,
-      ScanTask.class);
+      ScanTask.class,
+      ViewsTask.DEFINITION,
+      ViewsTask.class);
     components.addAll(CorePropertyDefinitions.all());
     if (!analysisMode.isIssues()) {
       // SCM
diff --git a/sonar-scanner-engine/src/main/java/org/sonar/scanner/task/ViewsTask.java b/sonar-scanner-engine/src/main/java/org/sonar/scanner/task/ViewsTask.java
new file mode 100644 (file)
index 0000000..3fed02f
--- /dev/null
@@ -0,0 +1,47 @@
+/*
+ * SonarQube
+ * Copyright (C) 2009-2018 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program 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.
+ *
+ * This program 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.scanner.task;
+
+import org.sonar.api.task.Task;
+import org.sonar.api.task.TaskDefinition;
+import org.sonar.api.utils.MessageException;
+
+/**
+ * This task is deprecated since the refresh of portfolios and application is now automatic
+ * This task does nothing
+ *
+ * @deprecated since 7.1
+ */
+@Deprecated
+public class ViewsTask implements Task {
+
+  private static final String KEY = "views";
+
+  public static final TaskDefinition DEFINITION = TaskDefinition.builder()
+    .key(KEY)
+    .description("Removed - was used to trigger portfolios refresh")
+    .taskClass(ViewsTask.class)
+    .build();
+
+  @Override
+  public void execute() {
+    throw MessageException.of("The task 'views' was removed with SonarQube 7.1. You can safely remove this call since portfolios and applications are automatically re-calculated.");
+  }
+}
diff --git a/sonar-scanner-engine/src/test/java/org/sonar/scanner/task/ViewsTaskTest.java b/sonar-scanner-engine/src/test/java/org/sonar/scanner/task/ViewsTaskTest.java
new file mode 100644 (file)
index 0000000..8eb2ffd
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+ * SonarQube
+ * Copyright (C) 2009-2018 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program 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.
+ *
+ * This program 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.scanner.task;
+
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.ExpectedException;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.mockito.Mockito.mock;
+
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.ExpectedException;
+import org.sonar.api.utils.MessageException;
+import org.sonar.api.utils.log.LogTester;
+
+public class ViewsTaskTest {
+
+  @Rule
+  public LogTester logTester = new LogTester();
+  @Rule
+  public ExpectedException expectedException = ExpectedException.none();
+
+  private ViewsTask underTest = new ViewsTask();
+
+  @Test
+  public void triggerShowError() {
+    expectedException.expect(MessageException.class);
+    expectedException.expectMessage(
+      "The task 'views' was removed with SonarQube 7.1. You can safely remove this call since portfolios and applications are automatically re-calculated.");
+
+    underTest.execute();
+  }
+}