1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
/*******************************************************************\
Module: Unit tests for converting constructors and static initializers
Author: Diffblue Limited.
\*******************************************************************/
#include <testing-utils/use_catch.h>
#include <util/symbol_table.h>
#include <java-testing-utils/load_java_class.h>
#include <java-testing-utils/require_type.h>
struct test_datat
{
symbol_tablet symbol_table;
std::string constructor_descriptor;
};
/// Verify that a given descriptor is marked as a constructor in the symbol
/// table
/// \param test_data: The data to run the test on
void require_is_constructor(const test_datat &test_data)
{
const symbolt &constructor =
test_data.symbol_table.lookup_ref(test_data.constructor_descriptor);
THEN("The constructor should be marked as a constructor")
{
java_method_typet constructor_type =
require_type::require_java_method(constructor.type);
REQUIRE(constructor_type.get_is_constructor());
}
}
/// Verify that a given descriptor is not marked as a constructor in the symbol
/// table
/// \param test_data: The data to run the test on
void require_is_static_initializer(const test_datat &test_data)
{
REQUIRE(
test_data.constructor_descriptor.find("<clinit>") != std::string::npos);
const symbolt &constructor =
test_data.symbol_table.lookup_ref(test_data.constructor_descriptor);
THEN("The constructor should be marked as a constructor")
{
java_method_typet constructor_type =
require_type::require_java_method(constructor.type);
REQUIRE_FALSE(constructor_type.get_is_constructor());
}
}
SCENARIO(
"java_bytecode_convert_initalizers",
"[core][java_bytecode][java_bytecode_convert_method]")
{
GIVEN("A class with some constructors")
{
const symbol_tablet symbol_table = load_java_class(
"ClassWithConstructors", "./java_bytecode/java_bytecode_convert_method");
std::string base_constructor_name = "java::ClassWithConstructors.<init>";
WHEN("Looking at the parameterless constructor")
{
test_datat data;
data.constructor_descriptor = base_constructor_name + ":()V";
data.symbol_table = symbol_table;
require_is_constructor(data);
}
WHEN("Looking at the parametered constructor")
{
test_datat data;
data.constructor_descriptor =
base_constructor_name + ":(ILjava/lang/Object;LOpaqueClass;)V";
data.symbol_table = symbol_table;
require_is_constructor(data);
}
}
GIVEN("A class without any constructors")
{
const symbol_tablet symbol_table = load_java_class(
"ClassWithoutConstructors",
"./java_bytecode/java_bytecode_convert_method");
std::string base_constructor_name = "java::ClassWithoutConstructors.<init>";
WHEN("Looking at the default constructor")
{
test_datat data;
data.constructor_descriptor = base_constructor_name + ":()V";
data.symbol_table = symbol_table;
require_is_constructor(data);
}
}
GIVEN("A class with both constructors and static initalisers")
{
const symbol_tablet symbol_table = load_java_class(
"ClassWithStaticConstructor",
"./java_bytecode/java_bytecode_convert_method");
std::string base_class_name = "java::ClassWithStaticConstructor.";
std::string base_constructor_name = base_class_name + "<init>";
WHEN("Looking at the parameterless constructor")
{
test_datat data;
data.constructor_descriptor = base_constructor_name + ":()V";
data.symbol_table = symbol_table;
require_is_constructor(data);
}
WHEN("Looking at the parametered constructor")
{
test_datat data;
data.constructor_descriptor =
base_constructor_name + ":(ILjava/lang/Object;LOpaqueClass;)V";
data.symbol_table = symbol_table;
require_is_constructor(data);
}
WHEN("Looking at the static initalizer")
{
THEN("The static init should not be marked as a constructor")
{
test_datat data;
data.constructor_descriptor = base_class_name + "<clinit>:()V";
data.symbol_table = symbol_table;
require_is_static_initializer(data);
}
}
}
GIVEN("A class with a static initalizer calling an opaque static initalizer")
{
const symbol_tablet symbol_table = load_java_class(
"StaticClassUsingOpaqueStaticConstructor",
"./java_bytecode/java_bytecode_convert_method");
std::string base_class_name =
"java::StaticClassUsingOpaqueStaticConstructor.";
std::string base_constructor_name = base_class_name + "<init>";
WHEN("Looking at the default constructor")
{
test_datat data;
data.constructor_descriptor = base_constructor_name + ":()V";
data.symbol_table = symbol_table;
require_is_constructor(data);
}
WHEN("Looking at the static initalizer")
{
THEN("The static init should not be marked as a constructor")
{
test_datat data;
data.constructor_descriptor = base_class_name + "<clinit>:()V";
data.symbol_table = symbol_table;
require_is_static_initializer(data);
}
}
}
GIVEN("A class with a constructor calling opaque static initalizer")
{
const symbol_tablet symbol_table = load_java_class(
"ClassUsingOpaqueStaticConstructor",
"./java_bytecode/java_bytecode_convert_method");
std::string base_class_name = "java::ClassUsingOpaqueStaticConstructor.";
std::string base_constructor_name = base_class_name + "<init>";
WHEN("Looking at the parameterless constructor")
{
test_datat data;
data.constructor_descriptor = base_constructor_name + ":()V";
data.symbol_table = symbol_table;
require_is_constructor(data);
}
WHEN("Looking at the static initalizer for the opaque class")
{
THEN("The static init should not be marked as a constructor")
{
test_datat data;
data.constructor_descriptor = "java::OpaqueClass.<clinit>:()V";
data.symbol_table = symbol_table;
require_is_static_initializer(data);
}
}
}
GIVEN("A class with a constructor calling opaque constructor")
{
const symbol_tablet symbol_table = load_java_class(
"DummyClassLoadingOpaqueClass",
"./java_bytecode/java_bytecode_convert_method");
std::string base_class_name = "java::DummyClassLoadingOpaqueClass.";
std::string base_constructor_name = base_class_name + "<init>";
const symbolt &opaque_class_symbol =
symbol_table.lookup_ref("java::OpaqueClass");
REQUIRE(to_java_class_type(opaque_class_symbol.type).get_is_stub());
WHEN("Looking at the parameterless constructor")
{
test_datat data;
data.constructor_descriptor = base_constructor_name + ":()V";
data.symbol_table = symbol_table;
require_is_constructor(data);
}
WHEN("Looking at the static initalizer for the opaque class")
{
THEN("The static init should not be marked as a constructor")
{
test_datat data;
data.constructor_descriptor = "java::OpaqueClass.<clinit>:()V";
data.symbol_table = symbol_table;
require_is_static_initializer(data);
}
}
WHEN("Looking at the constructor for the opaque class")
{
THEN("The static init should not be marked as a constructor")
{
test_datat data;
data.constructor_descriptor = "java::OpaqueClass.<init>:()V";
data.symbol_table = symbol_table;
require_is_constructor(data);
}
}
}
}
|