You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 36 Next »

The assert() statement is a convenient mechanism for incorporating diagnostic tests in code. Expressions used with the standard assert statement should not contain side effects. Typically, the behavior of the assert statement depends on the status of a runtime property. If enabled, the assert statement is designed to evaluate its expression argument and throw an AssertionError if the result of the expression is convertible to false. If disabled, assert is defined to be a no-operation. Consequently, any side effects resulting from evaluation of the expression in the assertion are lost in production quality code.

Noncompliant Code Example

This noncompliant code example demonstrates an action being carried out in an assertion. The idea is to delete all the null names from the list, however, the boolean expression is unexpectedly not evaluated.

void process(int index) {
  assert names.remove(null); // side effect 
  // ...
}

Compliant Solution

Avoid the possibility of side effects in assertions. This can be achieved by decoupling the boolean expression from the assertion.

void process(int index) {
  boolean nullsRemoved = names.remove(null);
  assert nullsRemoved; // no side effect 
  // ... 
}

Risk Assessment

Side effects in assertions can lead to unexpected and erroneous behavior.

Guideline

Severity

Likelihood

Remediation Cost

Priority

Level

EXP10-J

low

unlikely

low

P3

L3

Related Vulnerabilities

Search for vulnerabilities resulting from the violation of this guideline on the CERT website.

Other Languages

This guideline appears in the C Coding Standard as EXP31-C. Avoid side effects in assertions.

This guideline appears in the C++ Coding Standard as EXP31-CPP. Avoid side effects in assertions.

Bibliography

[Tutorials 2008] Programming With Assertions


EXP09-J. Do not depend on operator precedence while using expressions containing side-effects      04. Expressions (EXP)      EXP11-J. Be careful of autoboxing when removing elements from a Collection

  • No labels