Search in sources :

Example 1 with SarifSchema210

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

the class SarifReporter method createReport.

private SarifSchema210 createReport(AnalysisInfo analysisInfo) {
    var schema = URI.create("https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.1.0.json");
    var run = createRun(analysisInfo);
    return new SarifSchema210().with$schema(schema).withVersion(SarifSchema210.Version._2_1_0).withRuns(List.of(run));
}
Also used : SarifSchema210(com.contrastsecurity.sarif.SarifSchema210)

Example 2 with SarifSchema210

use of com.contrastsecurity.sarif.SarifSchema210 in project aws-codeguru-cli by aws.

the class ResultsAdapter method createSarifReport.

private static SarifSchema210 createSarifReport(final List<RecommendationSummary> recommendations) throws IOException {
    val docUrl = "https://docs.aws.amazon.com/codeguru/latest/reviewer-ug/how-codeguru-reviewer-works.html";
    val rulesMap = createSarifRuleDescriptions(recommendations);
    val driver = new ToolComponent().withName("CodeGuru Reviewer Scanner").withInformationUri(URI.create(docUrl)).withRules(new HashSet<>(rulesMap.values()));
    val results = recommendations.stream().map(ResultsAdapter::convertToSarif).collect(Collectors.toList());
    val run = new Run().withTool(new Tool().withDriver(driver)).withResults(results);
    return new SarifSchema210().withVersion(SarifSchema210.Version._2_1_0).with$schema(URI.create("http://json.schemastore.org/sarif-2.1.0-rtm.4")).withRuns(Arrays.asList(run));
}
Also used : lombok.val(lombok.val) SarifSchema210(com.contrastsecurity.sarif.SarifSchema210) Run(com.contrastsecurity.sarif.Run) ToolComponent(com.contrastsecurity.sarif.ToolComponent) Tool(com.contrastsecurity.sarif.Tool)

Example 3 with SarifSchema210

use of com.contrastsecurity.sarif.SarifSchema210 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)

Aggregations

SarifSchema210 (com.contrastsecurity.sarif.SarifSchema210)3 Location (com.contrastsecurity.sarif.Location)1 PhysicalLocation (com.contrastsecurity.sarif.PhysicalLocation)1 Result (com.contrastsecurity.sarif.Result)1 Run (com.contrastsecurity.sarif.Run)1 Tool (com.contrastsecurity.sarif.Tool)1 ToolComponent (com.contrastsecurity.sarif.ToolComponent)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