use of org.sonar.api.batch.fs.internal.DefaultFileSystem in project sonar-java by SonarSource.
the class XmlAnalyzerTest method should_not_run_xml_check_when_no_xml_file_provided.
@Test
public void should_not_run_xml_check_when_no_xml_file_provided() {
DefaultFileSystem fs = new DefaultFileSystem(new File(""));
SonarComponents sonarComponents = createSonarComponentsMock(fs, XML_CHECK, POM_CHECK);
XmlAnalyzer analyzer = new XmlAnalyzer(sonarComponents, XML_CHECK, POM_CHECK);
analyzer.scan(Lists.<File>newArrayList());
verify(sonarComponents, never()).addIssue(any(File.class), eq(POM_CHECK), any(Integer.class), anyString(), isNull());
verify(sonarComponents, never()).addIssue(any(File.class), eq(XML_CHECK), any(Integer.class), anyString(), isNull());
verify(sonarComponents, never()).reportIssue(any(AnalyzerMessage.class));
}
use of org.sonar.api.batch.fs.internal.DefaultFileSystem in project sonar-java by SonarSource.
the class XmlAnalyzerTest method should_scan_pom_file_with_xml_check.
@Test
public void should_scan_pom_file_with_xml_check() {
DefaultFileSystem fs = new DefaultFileSystem(new File(""));
File xmlFile = new File(VALID_POM);
fs.add(new TestInputFileBuilder("", xmlFile.getAbsolutePath()).build());
SonarComponents sonarComponents = createSonarComponentsMock(fs, XML_CHECK);
XmlAnalyzer analyzer = new XmlAnalyzer(sonarComponents, XML_CHECK);
analyzer.scan(Lists.newArrayList(xmlFile));
verify(sonarComponents, times(1)).addIssue(any(File.class), any(JavaCheck.class), any(Integer.class), anyString(), isNull());
verify(sonarComponents, never()).reportIssue(any(AnalyzerMessage.class));
}
use of org.sonar.api.batch.fs.internal.DefaultFileSystem in project sonar-java by SonarSource.
the class XmlAnalyzerTest method should_scan_pom_file_with_pom_check.
@Test
public void should_scan_pom_file_with_pom_check() {
DefaultFileSystem fs = new DefaultFileSystem(new File(""));
File xmlFile = new File(VALID_POM);
fs.add(new TestInputFileBuilder("", xmlFile.getAbsolutePath()).build());
SonarComponents sonarComponents = createSonarComponentsMock(fs, POM_CHECK);
XmlAnalyzer analyzer = new XmlAnalyzer(sonarComponents, POM_CHECK);
analyzer.scan(Lists.newArrayList(xmlFile));
verify(sonarComponents, times(1)).addIssue(any(File.class), any(JavaCheck.class), any(Integer.class), anyString(), isNull());
verify(sonarComponents, never()).reportIssue(any(AnalyzerMessage.class));
}
use of org.sonar.api.batch.fs.internal.DefaultFileSystem in project sonar-java by SonarSource.
the class XmlAnalyzerTest method should_scan_xml_file__when_no_check_provided.
@Test
public void should_scan_xml_file__when_no_check_provided() {
DefaultFileSystem fs = new DefaultFileSystem(new File(""));
File xmlFile = new File(VALID_POM);
fs.add(new TestInputFileBuilder("", xmlFile.getAbsolutePath()).build());
SonarComponents sonarComponents = createSonarComponentsMock(fs, XML_CHECK, POM_CHECK);
XmlAnalyzer analyzer = new XmlAnalyzer(sonarComponents);
analyzer.scan(Lists.newArrayList(xmlFile));
verify(sonarComponents, never()).addIssue(any(File.class), any(JavaCheck.class), any(Integer.class), anyString(), isNull());
verify(sonarComponents, never()).reportIssue(any(AnalyzerMessage.class));
}
use of org.sonar.api.batch.fs.internal.DefaultFileSystem in project sonar-java by SonarSource.
the class XmlAnalyzerTest method should_not_run_xml_check_when_no_check_provided.
@Test
public void should_not_run_xml_check_when_no_check_provided() {
DefaultFileSystem fs = new DefaultFileSystem(new File(""));
SonarComponents sonarComponents = createSonarComponentsMock(fs, JAVA_CHECK);
XmlAnalyzer analyzer = new XmlAnalyzer(sonarComponents);
analyzer.scan(Lists.newArrayList());
verify(sonarComponents, never()).addIssue(any(File.class), eq(POM_CHECK), any(Integer.class), anyString(), isNull());
verify(sonarComponents, never()).addIssue(any(File.class), eq(XML_CHECK), any(Integer.class), anyString(), isNull());
verify(sonarComponents, never()).reportIssue(any(AnalyzerMessage.class));
}
Aggregations