/* * SonarSource :: IT :: SonarScanner CLI * Copyright (C) 2009-2022 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 com.sonarsource.scanner.it; import com.sonar.orchestrator.build.BuildFailureException; import com.sonar.orchestrator.build.SonarScanner; import java.io.File; import java.io.IOException; import java.util.Map; import org.junit.Test; import org.sonarqube.ws.Measures.Measure; import static java.lang.Integer.parseInt; import static org.assertj.core.api.Assertions.assertThat; public class DistributionTest extends ScannerTestCase { @Test public void should_succeed_with_self_contained_jre_despite_rubbish_java_home() throws IOException, InterruptedException { String projectKey = "basedir-with-source"; File projectDir = new File("projects/basedir-with-source"); SonarScanner build = newScanner(projectDir, "sonar.projectKey", projectKey) .setEnvironmentVariable("JAVA_HOME", "nonexistent") .useNative(); orchestrator.executeBuild(build, true); Map projectMeasures = getMeasures(projectKey, "files", "ncloc"); assertThat(parseInt(projectMeasures.get("files").getValue())).isEqualTo(1); assertThat(parseInt(projectMeasures.get("ncloc").getValue())) .isGreaterThan(1); } @Test(expected = BuildFailureException.class) public void should_fail_without_self_contained_jre_when_rubbish_java_home() throws IOException, InterruptedException { String projectKey = "basedir-with-source"; File projectDir = new File("projects/basedir-with-source"); SonarScanner build = newScanner(projectDir, "sonar.projectKey", projectKey) .setEnvironmentVariable("JAVA_HOME", "nonexistent"); orchestrator.executeBuild(build, true); } }