Search in sources :

Example 1 with PhysicalLocation

use of com.contrastsecurity.sarif.PhysicalLocation in project bsl-language-server by 1c-syntax.

the class SarifReporterTest method report.

@Test
void report() throws IOException {
    // given
    configuration.getDiagnosticsOptions().getParameters().put("Typo", Either.forLeft(false));
    configuration.getDiagnosticsOptions().getParameters().put("test", Either.forLeft(true));
    configuration.getDiagnosticsOptions().getParameters().put("some", Either.forRight(Map.of("test", 1)));
    Diagnostic diagnostic = new Diagnostic(Ranges.create(0, 1, 2, 3), "message", DiagnosticSeverity.Error, "test-source", "test");
    DocumentContext documentContext = TestUtils.getDocumentContext("");
    String sourceDir = ".";
    FileInfo fileInfo = new FileInfo(sourceDir, documentContext, Collections.singletonList(diagnostic));
    AnalysisInfo analysisInfo = new AnalysisInfo(LocalDateTime.now(), Collections.singletonList(fileInfo), sourceDir);
    // when
    reporter.report(analysisInfo, Path.of(sourceDir));
    // then
    ObjectMapper mapper = new ObjectMapper();
    var report = mapper.readValue(file, SarifSchema210.class);
    assertThat(report).isNotNull();
    var run = report.getRuns().get(0);
    assertThat(run.getTool().getDriver().getName()).isEqualTo("BSL Language Server");
    assertThat(run.getTool().getDriver().getRules()).hasSize(diagnosticInfos.size());
    var invocation = run.getInvocations().get(0);
    assertThat(invocation.getRuleConfigurationOverrides()).hasSizeGreaterThan(0).anyMatch(configurationOverride -> configurationOverride.getDescriptor().getId().equals("Typo") && !configurationOverride.getConfiguration().getEnabled()).anyMatch(configurationOverride -> configurationOverride.getDescriptor().getId().equals("test") && configurationOverride.getConfiguration().getEnabled()).anyMatch(configurationOverride -> configurationOverride.getDescriptor().getId().equals("some") && configurationOverride.getConfiguration().getParameters().getAdditionalProperties().get("test").equals(1));
    assertThat(run.getResults()).hasSize(1).element(0).matches(result -> result.getRuleId().equals("test")).matches(result -> result.getLevel() == Result.Level.ERROR).matches(result -> result.getMessage().getText().equals("message")).matches(result -> result.getAnalysisTarget().getUri().equals(documentContext.getUri().toString())).extracting(Result::getLocations).extracting(locations -> locations.get(0)).extracting(Location::getPhysicalLocation).extracting(PhysicalLocation::getRegion).matches(region -> region.getStartLine().equals(diagnostic.getRange().getStart().getLine() + 1)).matches(region -> region.getStartColumn().equals(diagnostic.getRange().getStart().getCharacter() + 1)).matches(region -> region.getEndLine().equals(diagnostic.getRange().getEnd().getLine() + 1)).matches(region -> region.getEndColumn().equals(diagnostic.getRange().getEnd().getCharacter() + 1));
}
Also used : BeforeEach(org.junit.jupiter.api.BeforeEach) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) FileInfo(com.github._1c_syntax.bsl.languageserver.reporters.data.FileInfo) LocalDateTime(java.time.LocalDateTime) Autowired(org.springframework.beans.factory.annotation.Autowired) Diagnostic(org.eclipse.lsp4j.Diagnostic) DocumentContext(com.github._1c_syntax.bsl.languageserver.context.DocumentContext) AnalysisInfo(com.github._1c_syntax.bsl.languageserver.reporters.data.AnalysisInfo) LanguageServerConfiguration(com.github._1c_syntax.bsl.languageserver.configuration.LanguageServerConfiguration) Ranges(com.github._1c_syntax.bsl.languageserver.utils.Ranges) Map(java.util.Map) Either(org.eclipse.lsp4j.jsonrpc.messages.Either) TestUtils(com.github._1c_syntax.bsl.languageserver.util.TestUtils) Path(java.nio.file.Path) DiagnosticInfo(com.github._1c_syntax.bsl.languageserver.diagnostics.metadata.DiagnosticInfo) DiagnosticSeverity(org.eclipse.lsp4j.DiagnosticSeverity) Location(com.contrastsecurity.sarif.Location) Collection(java.util.Collection) ObjectMapper(com.fasterxml.jackson.databind.ObjectMapper) FileUtils(org.apache.commons.io.FileUtils) IOException(java.io.IOException) File(java.io.File) Test(org.junit.jupiter.api.Test) AfterEach(org.junit.jupiter.api.AfterEach) SpringBootTest(org.springframework.boot.test.context.SpringBootTest) CleanupContextBeforeClassAndAfterClass(com.github._1c_syntax.bsl.languageserver.util.CleanupContextBeforeClassAndAfterClass) Collections(java.util.Collections) PhysicalLocation(com.contrastsecurity.sarif.PhysicalLocation) Result(com.contrastsecurity.sarif.Result) SarifSchema210(com.contrastsecurity.sarif.SarifSchema210) FileInfo(com.github._1c_syntax.bsl.languageserver.reporters.data.FileInfo) Diagnostic(org.eclipse.lsp4j.Diagnostic) AnalysisInfo(com.github._1c_syntax.bsl.languageserver.reporters.data.AnalysisInfo) DocumentContext(com.github._1c_syntax.bsl.languageserver.context.DocumentContext) ObjectMapper(com.fasterxml.jackson.databind.ObjectMapper) PhysicalLocation(com.contrastsecurity.sarif.PhysicalLocation) Test(org.junit.jupiter.api.Test) SpringBootTest(org.springframework.boot.test.context.SpringBootTest)

Example 2 with PhysicalLocation

use of com.contrastsecurity.sarif.PhysicalLocation in project bsl-language-server by 1c-syntax.

the class SarifReporter method createLocation.

private static Location createLocation(String messageString, String uri, Range range) {
    var message = new Message().withText(messageString);
    var artifactLocation = new ArtifactLocation().withUri(uri);
    var region = new Region().withStartLine(range.getStart().getLine() + 1).withStartColumn(range.getStart().getCharacter() + 1).withEndLine(range.getEnd().getLine() + 1).withEndColumn(range.getEnd().getCharacter() + 1);
    var physicalLocation = new PhysicalLocation().withArtifactLocation(artifactLocation).withRegion(region);
    return new Location().withMessage(message).withPhysicalLocation(physicalLocation);
}
Also used : Message(com.contrastsecurity.sarif.Message) ArtifactLocation(com.contrastsecurity.sarif.ArtifactLocation) Region(com.contrastsecurity.sarif.Region) PhysicalLocation(com.contrastsecurity.sarif.PhysicalLocation) ArtifactLocation(com.contrastsecurity.sarif.ArtifactLocation) Location(com.contrastsecurity.sarif.Location) PhysicalLocation(com.contrastsecurity.sarif.PhysicalLocation)

Aggregations

Location (com.contrastsecurity.sarif.Location)2 PhysicalLocation (com.contrastsecurity.sarif.PhysicalLocation)2 ArtifactLocation (com.contrastsecurity.sarif.ArtifactLocation)1 Message (com.contrastsecurity.sarif.Message)1 Region (com.contrastsecurity.sarif.Region)1 Result (com.contrastsecurity.sarif.Result)1 SarifSchema210 (com.contrastsecurity.sarif.SarifSchema210)1 ObjectMapper (com.fasterxml.jackson.databind.ObjectMapper)1 LanguageServerConfiguration (com.github._1c_syntax.bsl.languageserver.configuration.LanguageServerConfiguration)1 DocumentContext (com.github._1c_syntax.bsl.languageserver.context.DocumentContext)1 DiagnosticInfo (com.github._1c_syntax.bsl.languageserver.diagnostics.metadata.DiagnosticInfo)1 AnalysisInfo (com.github._1c_syntax.bsl.languageserver.reporters.data.AnalysisInfo)1 FileInfo (com.github._1c_syntax.bsl.languageserver.reporters.data.FileInfo)1 CleanupContextBeforeClassAndAfterClass (com.github._1c_syntax.bsl.languageserver.util.CleanupContextBeforeClassAndAfterClass)1 TestUtils (com.github._1c_syntax.bsl.languageserver.util.TestUtils)1 Ranges (com.github._1c_syntax.bsl.languageserver.utils.Ranges)1 File (java.io.File)1 IOException (java.io.IOException)1 Path (java.nio.file.Path)1 LocalDateTime (java.time.LocalDateTime)1