JEP 235: Test Class-File Attributes Generated by javac

AuthorMikhail Kondratyev
OwnerAndrei Eremeev
TypeFeature
ScopeImplementation
StatusClosed / Delivered
Release9
Componenttools / javac
Discussioncompiler dash dev at openjdk dot java dot net
EffortM
DurationM
Reviewed byAleksandre Iline, Jonathan Gibbons
Endorsed byAleksandre Iline
Created2014/05/28 13:40
Updated2016/10/10 16:16
Issue8044127

Summary

Write tests to verify the correctness of class-file attributes generated by javac.

Goals

Create tests that check that all class-file attributes are generated correctly even if such attributes are not used in a regular compile-and-run scenario. Additionally, document any existing such tests.

Motivation

Class-file attributes have insufficient test coverage. Optional attributes and attributes which are not checked by the VM cannot be tested by compiling input sources, running them, and verifying that the compiled program behaves as expected. Lack of coverage leads to possible bugs which only might be detected by external tools, such as debuggers. A special test suite which will analyze class files and test class-file attributes for correctness by some other means is needed.

Description

The common way to test files generated by javac is to run the compiled classes and verify that the generated program behaves as expected. This approach does not work for optional class-file attributes, nor for attributes that are not verified by VM, so these two kinds of attributes must be tested by some other means. Tests will be developed which will accept Java source code as input, compile the source, read the class-file attributes of the compiled class files, and verify their correctness.

Class-file attributes are divided into three groups, according to the JVMS.

Optional attributes

These attributes are not critical to the correct operation of javac, the JVM, or the class libraries, but they are used by tools. Testing these attributes is a high priority since they are not consumed by any component of the JDK.

Attributes not used by the JVM

These attributes are not used by the JVM but they are used by javac or by the class libraries. Testing these attributes is a medium priority.

Attributes are used by the JVM

These attributes are checked by the JVM's byte-code verifier. No further testing needed.

Testing

To test these new tests we will check that the tests fail, with an appropriate error message, when run against intentionally-corrupted class files.