diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-04-26 10:56:00 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-04-26 16:34:31 +0200 |
commit | 439d0750b2ec547f6829cbeadcb9fed995c6eb05 (patch) | |
tree | ee21937c819fdbe34c5039a399ad80097c9867cf /it/it-plugins | |
parent | 4d9cbe9276073d6b026cbaf8510743aa0b62c4fb (diff) | |
download | sonarqube-439d0750b2ec547f6829cbeadcb9fed995c6eb05.tar.gz sonarqube-439d0750b2ec547f6829cbeadcb9fed995c6eb05.zip |
SONAR-9126 Add ITs
Diffstat (limited to 'it/it-plugins')
-rw-r--r-- | it/it-plugins/billing-plugin/pom.xml | 44 | ||||
-rw-r--r-- | it/it-plugins/billing-plugin/src/main/java/BillingPlugin.java | 42 | ||||
-rw-r--r-- | it/it-plugins/billing-plugin/src/main/java/BillingValidations.java | 44 | ||||
-rw-r--r-- | it/it-plugins/pom.xml | 1 |
4 files changed, 131 insertions, 0 deletions
diff --git a/it/it-plugins/billing-plugin/pom.xml b/it/it-plugins/billing-plugin/pom.xml new file mode 100644 index 00000000000..e3fc4d6ad10 --- /dev/null +++ b/it/it-plugins/billing-plugin/pom.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.sonarsource.sonarqube</groupId> + <artifactId>it-plugins</artifactId> + <version>6.4-SNAPSHOT</version> + </parent> + + <artifactId>billing-plugin</artifactId> + <packaging>sonar-plugin</packaging> + <description>Plugins :: Billing</description> + + <dependencies> + <dependency> + <groupId>org.sonarsource.sonarqube</groupId> + <artifactId>sonar-plugin-api</artifactId> + <version>${apiVersion}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.sonarsource.sonarqube</groupId> + <artifactId>sonar-server</artifactId> + <version>${apiVersion}</version> + <scope>provided</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId> + <artifactId>sonar-packaging-maven-plugin</artifactId> + <version>1.15</version> + <extensions>true</extensions> + <configuration> + <pluginClass>BillingPlugin</pluginClass> + <pluginKey>billing</pluginKey> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/it/it-plugins/billing-plugin/src/main/java/BillingPlugin.java b/it/it-plugins/billing-plugin/src/main/java/BillingPlugin.java new file mode 100644 index 00000000000..95525691a5e --- /dev/null +++ b/it/it-plugins/billing-plugin/src/main/java/BillingPlugin.java @@ -0,0 +1,42 @@ + +/* + * SonarQube + * Copyright (C) 2009-2017 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. + */ + +import org.sonar.api.Plugin; + +public class BillingPlugin implements Plugin { + + @Override + public void define(Context context) { + // Nothing should be loaded when the plugin is running within by the scanner + if (isRunningInSQ()) { + context.addExtension(BillingValidations.class); + } + } + + private static boolean isRunningInSQ() { + try { + Class.forName("org.sonar.plugin.PrivilegedPluginBridge"); + return true; + } catch (ClassNotFoundException e) { + return false; + } + } +} diff --git a/it/it-plugins/billing-plugin/src/main/java/BillingValidations.java b/it/it-plugins/billing-plugin/src/main/java/BillingValidations.java new file mode 100644 index 00000000000..b21d9c64837 --- /dev/null +++ b/it/it-plugins/billing-plugin/src/main/java/BillingValidations.java @@ -0,0 +1,44 @@ + +/* + * SonarQube + * Copyright (C) 2009-2017 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. + */ + +import org.sonar.api.config.Settings; +import org.sonar.server.organization.BillingValidationsExtension; + +import static java.lang.String.format; + +public class BillingValidations implements BillingValidationsExtension { + + private static final String PREVENT_PROJECT_ANALYSIS_SETTING = "sonar.billing.preventProjectAnalysis"; + + private final Settings settings; + + public BillingValidations(Settings settings) { + this.settings = settings; + } + + @Override + public void checkOnProjectAnalysis(Organization organization) { + boolean preventProjectAnalysis = settings.getBoolean(PREVENT_PROJECT_ANALYSIS_SETTING); + if (preventProjectAnalysis) { + throw new BillingValidationsException(format("Organization %s cannot perform analysis", organization.getKey())); + } + } +} diff --git a/it/it-plugins/pom.xml b/it/it-plugins/pom.xml index 3d4bc6f8ad3..a36083c8433 100644 --- a/it/it-plugins/pom.xml +++ b/it/it-plugins/pom.xml @@ -33,6 +33,7 @@ <module>access-secured-props-plugin</module> <module>base-auth-plugin</module> <module>batch-plugin</module> + <module>billing-plugin</module> <module>extension-lifecycle-plugin</module> <module>global-property-change-plugin</module> <module>issue-filter-plugin</module> |