]> source.dussan.org Git - sonarqube.git/blob
721e4a7af6b52735ce18a29ab252334e5f2894ce
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.scanner.mediumtest.fs;
21
22 import java.io.File;
23 import org.apache.commons.io.FileUtils;
24 import org.apache.commons.io.filefilter.FileFilterUtils;
25 import org.junit.After;
26 import org.junit.Before;
27 import org.junit.Rule;
28 import org.junit.Test;
29 import org.junit.rules.ExpectedException;
30 import org.junit.rules.TemporaryFolder;
31 import org.sonar.scanner.mediumtest.ScannerMediumTester;
32 import org.sonar.scanner.mediumtest.issuesmode.IssueModeAndReportsMediumTest;
33
34 public class NoLanguagesPluginsMediumTest {
35   @Rule
36   public TemporaryFolder temp = new TemporaryFolder();
37
38   @Rule
39   public ExpectedException exception = ExpectedException.none();
40
41   public ScannerMediumTester tester = ScannerMediumTester.builder()
42     .setPreviousAnalysisDate(null)
43     .build();
44
45   @Before
46   public void prepare() {
47     tester.start();
48   }
49
50   @After
51   public void stop() {
52     tester.stop();
53   }
54
55   @Test
56   public void testNoLanguagePluginsInstalled() throws Exception {
57     File projectDir = copyProject("/mediumtest/xoo/sample");
58
59     exception.expect(IllegalStateException.class);
60     exception.expectMessage("No language plugins are installed");
61
62     tester
63       .newScanTask(new File(projectDir, "sonar-project.properties"))
64       .start();
65   }
66
67   private File copyProject(String path) throws Exception {
68     File projectDir = temp.newFolder();
69     File originalProjectDir = new File(IssueModeAndReportsMediumTest.class.getResource(path).toURI());
70     FileUtils.copyDirectory(originalProjectDir, projectDir, FileFilterUtils.notFileFilter(FileFilterUtils.nameFileFilter(".sonar")));
71     return projectDir;
72   }
73 }