2019-08-06 17:33:27 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
2019-10-03 19:55:41 +02:00
|
|
|
module SlotMachine
|
2019-08-06 17:33:27 +02:00
|
|
|
class TestMethodCompiler < MiniTest::Test
|
2019-08-07 14:08:45 +02:00
|
|
|
include ScopeHelper
|
2019-08-06 17:33:27 +02:00
|
|
|
|
|
|
|
def setup
|
|
|
|
end
|
|
|
|
|
2019-10-03 23:36:49 +02:00
|
|
|
def in_test_sol(str)
|
|
|
|
sol = RubyX::RubyXCompiler.new(RubyX.default_test_options).ruby_to_sol(in_Test(str))
|
|
|
|
sol.to_parfait
|
|
|
|
sol.to_slot(nil)
|
|
|
|
sol
|
2019-09-28 14:34:09 +02:00
|
|
|
end
|
|
|
|
def create_method(body = "@ivar = 5;return")
|
2019-10-03 23:36:49 +02:00
|
|
|
in_test_sol("def meth; #{body};end")
|
2019-09-28 14:34:09 +02:00
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
test.get_instance_method(:meth)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_method_has_source
|
|
|
|
method = create_method
|
2019-10-03 23:36:49 +02:00
|
|
|
assert_equal Sol::Statements , method.source.class
|
2019-08-06 17:33:27 +02:00
|
|
|
end
|
2019-08-07 14:08:45 +02:00
|
|
|
|
2019-09-28 14:34:09 +02:00
|
|
|
def test_method_has_no_locals
|
|
|
|
method = create_method
|
|
|
|
assert_equal 1 , method.frame_type.instance_length
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_method_has_no_args
|
|
|
|
method = create_method
|
|
|
|
assert_equal 1 , method.args_type.instance_length
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_creates_method_in_class
|
|
|
|
method = create_method
|
|
|
|
assert method , "No method created"
|
2019-10-03 23:36:49 +02:00
|
|
|
assert_equal Parfait::SolMethod , method.class
|
2019-08-10 11:42:47 +02:00
|
|
|
end
|
2019-09-28 14:34:09 +02:00
|
|
|
|
|
|
|
def test_creates_method_statement_in_class
|
2019-10-03 23:36:49 +02:00
|
|
|
clazz = in_test_sol("def meth; @ivar = 5 ;return;end")
|
|
|
|
assert_equal Sol::Statements , clazz.body.class
|
|
|
|
assert_equal Sol::MethodExpression , clazz.body.first.class
|
2019-09-28 14:34:09 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_callable_method_instance_type
|
2019-10-03 23:36:49 +02:00
|
|
|
in_test_sol("def meth; @ivar = 5; @ibar = 4;return;end")
|
2019-09-28 14:34:09 +02:00
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
method = test.instance_type.get_method(:meth)
|
|
|
|
assert_equal 1, method.self_type.variable_index(:ivar)
|
|
|
|
assert_equal 2, method.self_type.variable_index(:ibar)
|
|
|
|
end
|
|
|
|
def test_callable_method_has_one_local
|
2019-10-03 23:36:49 +02:00
|
|
|
in_test_sol("def meth; local = 5 ; a = 6;return;end")
|
2019-09-28 14:34:09 +02:00
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
method = test.get_instance_method(:meth)
|
|
|
|
assert_equal 3 , method.frame_type.instance_length
|
|
|
|
assert_equal 1 , method.frame_type.variable_index(:local)
|
|
|
|
assert_equal 2 , method.frame_type.variable_index(:a)
|
2019-08-10 11:42:47 +02:00
|
|
|
end
|
2019-09-28 14:34:09 +02:00
|
|
|
def constant_setup(input)
|
2019-10-03 20:07:55 +02:00
|
|
|
slot = RubyX::RubyXCompiler.new(RubyX.default_test_options).ruby_to_slot(in_Test(input))
|
|
|
|
assert_equal SlotMachine::SlotCollection , slot.class
|
|
|
|
compiler = slot.method_compilers
|
2019-10-03 19:55:41 +02:00
|
|
|
assert_equal SlotMachine::MethodCompiler , compiler.class
|
2019-09-28 14:34:09 +02:00
|
|
|
compiler
|
2019-08-10 11:42:47 +02:00
|
|
|
end
|
2019-09-28 14:34:09 +02:00
|
|
|
def test_return_label
|
|
|
|
compiler = constant_setup("def meth; return 'Hi';end")
|
|
|
|
assert_equal "return_label", compiler.return_label.name
|
2019-08-06 17:33:27 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|