Want to see Parasoft in action? Sign up for our Monthly Demos! See Demos & Events >>

X
BLOG

Best Practices for Using Static Analysis Tools

Best Practices for Using Static Analysis Tools Reading Time: 6 minutes

As any coder and quality assurance tester will tell you, static analysis is a critical part of workflow. In the same way that vaccines require multiple trials, any project requires code quality analysis on multiple fronts.

To that end, Parasoft provides static analysis tools to help automate the process. This also augments best practices to become more agile in response to necessary changes and updates. But having a foundational understanding of static analysis, its tool, and the best practices is critical fundamental knowledge.

Educate or re-familiarize yourself with these concepts here. This blog answers the following questions:

  1. What is static code analysis?
  2. How do you perform static analysis?
  3. What are code quality tools?
  4. How do I check my code quality?
  5. What are static code analysis best practices?
  6. Can you automate static code analysis?

Best Practices for Using Static Analysis Tools

What Is Static Code Analysis?

Simply speaking, the process of static code analysis identifies defects and errors in source code. While the analysis can be automated, code reviewing is generally a joint effort on behalf of developers and QA/QC testers alike.

But static analysis allows for more immediate remediation and is integral to the development process. Regardless of industry, function, or language, static analysis remains a foundational part of any development workflow.

How Do You Perform Static Analysis?

Performing static analysis requires a simple set of steps.

  1. First, of course, there needs to be source code to test the quality of it.
  2. Next, make use of static analysis tools and run a static code analyzer.
  3. Review the flagged sections that don’t meet the prescribed ruleset. This may include false positives or even expected deviations.
  4. Coders address the critical errors first then address lesser issues.
  5. Progress to the testing phase.

But the best thing about static analysis is that it does not require code execution. All one has to do is run the analysis to identify problems to be fixed without undue risks.

Getting Started With Static Analysis Without Overwhelming the Team

When Should We Measure Code Quality?

The general best practice around when to perform static analysis is before code review and after the code has been written. Auditing the source code at that stage reduces wasted time by resolving errors more quickly.

Best Practices for Using Static Analysis Tools

Different Types of Static Code Analysis

One of the most common types of static code analysis is SAST or static application security testing. This is also considered a best practice for application security testing, but can be applied elsewhere. In order to identify all error classes, multiple coding standards (MISRA, AUTOSAR, CERT, CWE, etc.) may need to be used.

As such, it’s best to familiarize yourself with various types of static code analysis and the errors they’re meant to detect.

  • PERFORMANCE: These tests identify errors that will reduce overall performance. They can also be used to ensure that developers stay up-to-date with current best practices.
  • SECURITY: Obviously a critical test, security related source code analysis finds security risks like weak cryptography, configuration problems, and framework-specific command injection errors.
  • RELIABILITY: These tests help prevent issues with functionality. No developer wants to deal with an emergency unresponsive service message at 4 in the morning. This type of static code analysis is especially useful for finding memory leaks or threading problems.
  • STYLE: This style of static analysis encourages teams to adopt uniform coding styles for ease of use, understanding, and bug fixing. It also allows developers not to waste time identifying style violations; the test finds them instead.
Learn how static analysis prevents defects and accelerates delivery.
Read the Blog

Pattern-Based Static Analysis

These methods are some of the most essential when it comes to code quality testing. Engineers may inadvertently cause crashes or memory corruptions with a mistake. Pattern-based static analysis roots out the causes of these problems by patterns in the code that may be errors.

This can be as simple as syntax checkers to something more sophisticated. Another note: these static analysis tests rarely return false positives.

Flow Analysis

This method reviews code for problematic constructions in a ruleset by simulating decision paths. Use it to find buffer overflows, null pointer dereferences, tainted data, and the like.

Metrics Analysis

Though a less complex test, metrics analysis helps to measure the characteristics of code. This includes code complexity, maintainability, testability, and more.

What Errors Can Static Code Analysis Detect?

Each static analysis rule or guideline tackles different issues. Some issues that affect reliability might be resource leaks for C or null pointer exceptions in C++. MISRA C:2012 Directive 4.12 exists to prevent the use of dynamic memory that can lead to out-of-storage run-time failures, which is undesirable.

The guideline states, "The identifiers 'calloc', 'malloc', 'realloc', 'aligned_alloc' and 'free' shall not be used and no macro with one of these names shall be expanded." Therefore, the following code will produce a violation.

int* p1 = (int*)malloc(10); /* Violation */  free(p1); /* Violation */

The recommended solution is to pre-allocate a block of memory and manage it as needed by way of your own defined equivalent of “malloc” and “free”. Similarly in C++, the common solution is to overload the “new” and “delete” operators.

The intent of the software, the language, and the platform all affect the kinds of errors static code analysis can detect.

Best Practices for Using Static Analysis Tools

Static Analysis Best Practices

There are a few myths to dispel before getting into static code analysis best practices. For instance, static analyzers are not single-use products nor is dynamic analysis better or worse than static analysis.

But in general, there are concrete best practices along with emerging best practices developers should adopt when it comes to static analysis for code quality.

  • Identify the scope of the problem.
  • Make the code readable for other developers.
  • Write code with reusability in mind.
  • Keep extensibility available if an application needs new features in the future.
  • Develop code that uses minimal resources while still executing quickly.
  • Utilize dynamic and static analysis.

Writing code with all of these things in mind ensures fewer errors overall. But in tandem with static code analysis, it further simplifies the bug identification and QA/QC process.

How to Choose Modern Static Analysis Tools: Beyond the Bake-Off

Static Code Analysis Deviations

As mentioned earlier, static code analysis identifies errors based on given rulesets. That means that, if any line defies a rule, it will be flagged. Of course, as in real life, there are some exceptions to these rules across different software types.

In situations like these, developers allow for deviations. The rules can adjust to the circumstances and allow for special issues. A team can decide yes or no on whether or not that deviation is acceptable. This also gets documented as it violates the original rules.

Static vs. Dynamic Analysis

Static analysis is what it sounds like: an isolated review of the source code. Dynamic analysis, on the other hand, tests code as it is executed on a virtual or even a real machine/processor.

Think of static analysis as a brush here and dynamic analysis as a fine-toothed comb. It can identify more subtle defects since it reviews how code interacts with other systems, sensors, or peripherals.

The big difference is that dynamic analysis cannot find flaws in an entire codebase. It can only find issues in excerpts of executed code. Another best practice is to make use of both static and dynamic analysis test methods to produce the most effective and efficient code.

Best Practices for Using Static Analysis Tools

How to Choose a Static Code Analysis Tool

Parasoft’s suite of tools to automate software testing works across diverse workflows and team compositions. When it comes to static code analysis, that rings just as true. Doing so can speed up the development cycle, reduce defect rates, and provide continuous improvement. Identifying which tool might work best for your needs starts simply with the base language of the source code.

Not only do we provide C/C++ solutions, but Parasoft also supports Java with Jtest and the .NET language with dotTEST. Why stay stuck doing more work than you have to when you can speed up the process and get enhanced results?

Best Practices for Using Static Analysis Tools

“MISRA”, “MISRA C” and the triangle logo are registered trademarks of The MISRA Consortium Limited. ©The MISRA Consortium Limited, 2021. All rights reserved.

Written by

Ricardo Camacho

A Sr. Technical Product Marketing Manager for Parasoft’s embedded testing solutions, Ricardo has expertise in the SDLC and test automation of embedded real time, safety, and security-critical applications, and software compliance to industry standards.

将最新的软件测试新闻和资源发送到您的电子邮箱。