-
Notifications
You must be signed in to change notification settings - Fork 277
JCI: don't load method instructions #3447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
smowton
merged 1 commit into
diffblue:develop
from
smowton:smowton/feature/java-parse-without-instructions
Nov 23, 2018
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
public @interface Annotation { } |
Binary file not shown.
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
public class Trivial { | ||
@Annotation | ||
public class Inner { | ||
@Annotation | ||
private int x; | ||
public Inner() { x = 1; } | ||
@Annotation | ||
public void f() { x++; }; | ||
} | ||
} |
105 changes: 105 additions & 0 deletions
105
jbmc/unit/java_bytecode/java_bytecode_parser/parse_class_without_instructions.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
/*******************************************************************\ | ||
|
||
Module: Unit tests to parse a class without its methods' instructions | ||
|
||
Author: Diffblue Ltd. | ||
|
||
\*******************************************************************/ | ||
|
||
#include <java-testing-utils/load_java_class.h> | ||
#include <java_bytecode/java_bytecode_parse_tree.h> | ||
#include <java_bytecode/java_bytecode_parser.h> | ||
#include <testing-utils/message.h> | ||
#include <util/message.h> | ||
|
||
#include <testing-utils/catch.hpp> | ||
|
||
static void check_class_structure( | ||
const java_bytecode_parse_treet::classt &loaded_class) | ||
{ | ||
REQUIRE(loaded_class.methods.size() == 2); | ||
REQUIRE(loaded_class.is_public); | ||
REQUIRE(loaded_class.annotations.size() == 1); | ||
REQUIRE(loaded_class.fields.size() == 2); | ||
REQUIRE(loaded_class.super_class == "java.lang.Object"); | ||
REQUIRE(loaded_class.is_inner_class); | ||
REQUIRE(loaded_class.outer_class == "Trivial"); | ||
|
||
const auto &fieldone = *loaded_class.fields.begin(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ⛏️ field_one or field1 |
||
const auto &fieldtwo = *std::next(loaded_class.fields.begin()); | ||
const auto &field_x = fieldone.name == "x" ? fieldone : fieldtwo; | ||
REQUIRE(field_x.name == "x"); | ||
REQUIRE(field_x.is_private); | ||
REQUIRE(field_x.annotations.size() == 1); | ||
|
||
const auto &methodone = *loaded_class.methods.begin(); | ||
const auto &methodtwo = *std::next(loaded_class.methods.begin()); | ||
const auto &method_f = | ||
methodone.name == "f" ? methodone : methodtwo; | ||
const auto &method_constructor = | ||
methodone.name == "f" ? methodtwo : methodone; | ||
|
||
REQUIRE(method_f.is_public); | ||
REQUIRE(method_f.annotations.size() == 1); | ||
REQUIRE(method_constructor.is_public); | ||
REQUIRE(method_constructor.annotations.size() == 0); | ||
} | ||
|
||
SCENARIO( | ||
"java_bytecode_parse_class_without_instructions", | ||
"[core][java_bytecode][java_bytecode_parser]") | ||
{ | ||
WHEN("Loading a class without instructions") | ||
{ | ||
auto loaded = | ||
java_bytecode_parse( | ||
"./java_bytecode/java_bytecode_parser/Trivial$Inner.class", | ||
null_message_handler, | ||
true); | ||
THEN("Loading should succeed") | ||
{ | ||
REQUIRE(loaded); | ||
const auto &loaded_class = loaded->parsed_class; | ||
|
||
THEN("It should have the expected structure") | ||
{ | ||
check_class_structure(loaded_class); | ||
const auto &methodone = *loaded_class.methods.begin(); | ||
const auto &methodtwo = *std::next(loaded_class.methods.begin()); | ||
|
||
THEN("Neither method should have instructions") | ||
{ | ||
REQUIRE(methodone.instructions.size() == 0); | ||
REQUIRE(methodtwo.instructions.size() == 0); | ||
} | ||
} | ||
} | ||
} | ||
|
||
WHEN("Loading the same class normally") | ||
{ | ||
auto loaded = | ||
java_bytecode_parse( | ||
"./java_bytecode/java_bytecode_parser/Trivial$Inner.class", | ||
null_message_handler, | ||
false); | ||
THEN("Loading should succeed") | ||
{ | ||
REQUIRE(loaded); | ||
const auto &loaded_class = loaded->parsed_class; | ||
|
||
THEN("It should have the expected structure") | ||
{ | ||
check_class_structure(loaded_class); | ||
const auto &methodone = *loaded_class.methods.begin(); | ||
const auto &methodtwo = *std::next(loaded_class.methods.begin()); | ||
|
||
THEN("Both methods should have instructions") | ||
{ | ||
REQUIRE(methodone.instructions.size() != 0); | ||
REQUIRE(methodtwo.instructions.size() != 0); | ||
} | ||
} | ||
} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
class
keyword seems unnecessary (more occurrences)