Skip to content

Commit

Permalink
Adding Yocto Scanner support.
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
  • Loading branch information
panicking committed Sep 10, 2024
1 parent 170224f commit 61e05ca
Show file tree
Hide file tree
Showing 3 changed files with 468 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
package io.jenkins.plugins.analysis.warnings;

import org.kohsuke.stapler.DataBoundConstructor;
import org.jenkinsci.Symbol;
import hudson.Extension;

import io.jenkins.plugins.analysis.core.model.AnalysisModelParser;

/**
* Provides a parser and customized messages for Yocto Scanner CLI (scannercli) reports.
*
* @author Michael Trimarchi
*/
public class YoctoScanner extends AnalysisModelParser {
private static final long serialVersionUID = 1L;
private static final String ID = "yoctocli";

/**
* Creates a new instance of {@link YoctoScanner}.
*/
@DataBoundConstructor
public YoctoScanner() {
super();
// empty constructor required for stapler
}

/** Descriptor for this static analysis tool. */
@Symbol("yoctoScanner")
@Extension
public static class Descriptor extends AnalysisModelParserDescriptor {
/** Creates the descriptor instance. */
public Descriptor() {
super(ID);
}

@Override
public boolean canScanConsoleLog() {
return false;
}

@Override
public boolean isPostProcessingEnabled() {
return false;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,12 @@ void shouldFindAllYamlLintIssues() {
shouldFindIssuesOfTool(4, new YamlLint(), "yamllint.txt");
}

/** Runs the YamlLint parser on an output file that contains 4 issues. */
@Test
void shouldFindAllYoctoIssues() {
shouldFindIssuesOfTool(25, new YoctoScanner(), "yocto_scanner_result.json");
}

/** Runs the Iar parser on an output file that contains 6 issues. */
@Test
void shouldFindAllIarIssues() {
Expand Down
Loading

0 comments on commit 61e05ca

Please sign in to comment.