ALM – Use Results of Solution Checker

In my last post, you learned how to use the Solution Checker in an Azure DevOps pipeline. Lars Martin asked a question regarding using the results of this step on LinkedIn. This inspired me to write this article. Thanks to Lars.

Result

The Solution Checker will evaluate a solutions zip file against certain criteria. If a violation or issue is found it will be marked and shown in the result. Those violations will have one of the following severities:

  • Critical
  • High
  • Medium
  • Low
  • Informational

When you use the Solution Checker in your pipeline it will create an artifact that includes the result of the check. Be aware that the result looks different when you execute the Solution Checker manually via the Power Apps maker portal.

Pipeline artifact
Pipeline artifact

It will include a “.sarif”- and a “.md”-file. The “.md”-file includes some kind of summary. It will include one row per checked file. This row includes the number of violations per level.

MD-file
MD-file

The “.sarif”-file will include detailed information about every violation. Including the row of code that is causing the violation.

Sarif-File
Sarif-File

Use the result

Like I mentioned in my response to the comment of Lars are there two different ways of using the result created by the Solution Checker in the pipeline.

Manual use

One way is to use the result manually. That means analyzing the Sarif-file, identifying issues in your solution and fixing those.

View in Visual Studio

You can open the Sarif-File in Visual Studio after installing the “Microsoft SARIF viewer” tool.

Microsoft SARIF Viewer Tool
Microsoft SARIF Viewer Tool

If you then open the file, either via File -> Open -> File… or Tool -> Import Static Analysis Log File to Error List -> Import SARIF file…, Visual Studio will show the errors in the Error List.

SARIF result in VS
SARIF result in VS

View in Azure DevOps

Lars has suggested another Plugin (Sarif Viewer Build Tab) in the comments. Thanks again for that!

This Plugin will be installed to your Azure DevOps organization. It will add a “Scan” tab to your pipeline run. When you open this tab it will show the results of the SARIF-File.

Result in Pipeline Scan-Tab
Result in Pipeline Scan-Tab

I would say this might be the best solution. It is easy to use, you don’t have to download something or install an additional plugin to your Visual Studio. Important to mention is that it is still under development.

View in Power Apps Checker in the XrmToolBox

Jonas Rapp mentioned in an answer to my tweet that it is even possible with his XrmToolBox tool “Power Apps Checker“. Thanks for the tip!

If you open the “Power Apps Checker” (PAC) in the XrmToolBox you could choose to not connect to any environment. If you then go to the “SARIF File” tab you can open your local SARIF-File.

Opening the SARIF-File in PAC
Opening the SARIF-File in PAC

After the tool has analyzed the File it will show the result under the “Result” tab. By selecting a row the details will be shown at the right side.

Viewing the result in PAC
Viewing the result in PAC

View JSON

Since a SARIF-File basically is a JSON you could open it with any text editor and view the issues there if you feel comfortable with JSON.

Use in the pipeline

Another way, how I think a lot more interesting, would be to use the result directly in your pipeline.

When you open the advanced settings of your Power Apps Checker step in your pipeline you do have some configuration to use the result of the checker to effect the further processing of the pipeline.

With the “Error level” field you can configure which violation severity should be handled as an error. The “Error threshold” lets you define a number of violations that still are acceptable and should not break the build. The last checkbox hasn’t had any effect on my tests (which does not have to mean that it does not not have any at all).

With those configurations you could, for example, configure that medium or higher violations should be considered as an error but until a certain number of errors the check should still be considered as a success.

Example

I have deployed a not strict JS-file to my solution. The result of a manual run of the Solution Checker looked like this.

Solution Checker result
Solution Checker result

Like you can see I do have one violation with medium severity.

I do configure my Power apps Checker step to handle “medium” as the lowest error severity.

Checker without threshold
Checker without threshold

After running the pipeline it will break since the Solution Checker gets a violation it handles as an error.

Error job run
Error job run

Here is the console output of the Power Apps Checker step.

Power Apps Checker step output
Power Apps Checker step output

If I then configure the step slightly different, introduce a threshold of 1, the pipeline will work again, since the Checker step will succeed.

Configuration with threshold
Configuration with threshold
Success job run
Success job run
This is just 1 of 60 articles. You can browse through all of them by going to the main page. Another possibility is to view the categories page to find more related content.
You can also subscribe and get new blog posts emailed to you directly.
Enter your email address to receive notifications of new posts by email.

Loading
2 Comments
  1. Avatar
    • Avatar

Add a Comment

Your email address will not be published. Required fields are marked *