2017-04-08 11:10:42 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
2018-06-29 21:56:49 +02:00
|
|
|
module Risc
|
2018-06-30 22:26:28 +02:00
|
|
|
class TestMethodCompiler < MiniTest::Test
|
2018-06-29 22:04:50 +02:00
|
|
|
include ScopeHelper
|
2017-04-08 11:10:42 +02:00
|
|
|
|
|
|
|
def setup
|
|
|
|
end
|
|
|
|
|
2018-07-01 10:59:52 +02:00
|
|
|
def in_test_vool(str)
|
2019-02-08 22:03:23 +01:00
|
|
|
vool = RubyX::RubyXCompiler.new(RubyX.default_test_options).ruby_to_vool(in_Test(str))
|
2018-06-29 13:57:48 +02:00
|
|
|
vool.to_mom(nil)
|
2018-07-01 10:59:52 +02:00
|
|
|
vool
|
|
|
|
end
|
2019-08-17 22:29:42 +02:00
|
|
|
def create_method(body = "@ivar = 5;return")
|
2018-07-03 09:12:40 +02:00
|
|
|
in_test_vool("def meth; #{body};end")
|
2017-04-08 11:10:42 +02:00
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
test.get_method(:meth)
|
|
|
|
end
|
|
|
|
|
2017-04-08 16:29:53 +02:00
|
|
|
def test_method_has_source
|
2017-04-08 11:10:42 +02:00
|
|
|
method = create_method
|
2019-08-19 14:56:15 +02:00
|
|
|
assert_equal Vool::Statements , method.source.class
|
2017-04-08 11:10:42 +02:00
|
|
|
end
|
|
|
|
|
2017-04-09 09:14:28 +02:00
|
|
|
def test_method_has_no_locals
|
|
|
|
method = create_method
|
2018-03-14 15:54:47 +01:00
|
|
|
assert_equal 1 , method.frame_type.instance_length
|
2017-04-09 09:14:28 +02:00
|
|
|
end
|
|
|
|
|
2017-04-08 16:29:53 +02:00
|
|
|
def test_method_has_no_args
|
2017-04-08 11:10:42 +02:00
|
|
|
method = create_method
|
|
|
|
assert_equal 1 , method.args_type.instance_length
|
|
|
|
end
|
|
|
|
|
2017-04-09 09:14:28 +02:00
|
|
|
def test_creates_method_in_class
|
2017-04-08 11:10:42 +02:00
|
|
|
method = create_method
|
2017-04-09 09:14:28 +02:00
|
|
|
assert method , "No method created"
|
2017-12-10 19:47:26 +01:00
|
|
|
assert_equal Parfait::VoolMethod , method.class
|
2017-04-08 11:10:42 +02:00
|
|
|
end
|
2017-04-09 09:14:28 +02:00
|
|
|
|
2017-04-12 10:51:29 +02:00
|
|
|
def test_creates_method_statement_in_class
|
2019-08-17 22:29:42 +02:00
|
|
|
clazz = in_test_vool("def meth; @ivar = 5 ;return;end")
|
2018-06-29 22:29:10 +02:00
|
|
|
assert_equal Vool::Statements , clazz.body.class
|
2019-08-19 14:23:57 +02:00
|
|
|
assert_equal Vool::MethodExpression , clazz.body.first.class
|
2017-04-12 10:51:29 +02:00
|
|
|
end
|
|
|
|
|
2018-07-07 08:11:09 +02:00
|
|
|
def test_callable_method_instance_type
|
2019-08-17 22:29:42 +02:00
|
|
|
in_test_vool("def meth; @ivar = 5; @ibar = 4;return;end")
|
2018-03-18 17:39:27 +01:00
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
method = test.instance_type.get_method(:meth)
|
2018-07-06 19:01:17 +02:00
|
|
|
assert_equal 1, method.self_type.variable_index(:ivar)
|
|
|
|
assert_equal 2, method.self_type.variable_index(:ibar)
|
2017-04-12 10:51:29 +02:00
|
|
|
end
|
2018-07-07 08:11:09 +02:00
|
|
|
def test_callable_method_has_one_local
|
2019-08-17 22:29:42 +02:00
|
|
|
in_test_vool("def meth; local = 5 ; a = 6;return;end")
|
2017-04-08 16:29:53 +02:00
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
method = test.get_method(:meth)
|
2018-03-18 17:39:27 +01:00
|
|
|
assert_equal 3 , method.frame_type.instance_length
|
2018-05-14 15:13:50 +02:00
|
|
|
assert_equal 1 , method.frame_type.variable_index(:local)
|
|
|
|
assert_equal 2 , method.frame_type.variable_index(:a)
|
2018-03-18 17:39:27 +01:00
|
|
|
end
|
2018-08-01 15:27:34 +02:00
|
|
|
def constant_setup(input)
|
2019-02-08 22:03:23 +01:00
|
|
|
mom = RubyX::RubyXCompiler.new(RubyX.default_test_options).ruby_to_mom(in_Test(input))
|
2019-08-08 11:18:36 +02:00
|
|
|
assert_equal Mom::MomCollection , mom.class
|
2018-07-04 08:18:55 +02:00
|
|
|
compiler = mom.method_compilers.first
|
2019-08-08 11:18:36 +02:00
|
|
|
assert_equal Mom::MethodCompiler , compiler.class
|
2018-08-01 15:27:34 +02:00
|
|
|
compiler
|
|
|
|
end
|
2018-08-02 16:37:27 +02:00
|
|
|
def test_return_label
|
|
|
|
compiler = constant_setup("def meth; return 'Hi';end")
|
|
|
|
assert_equal "return_label", compiler.return_label.name
|
|
|
|
end
|
2017-04-08 11:10:42 +02:00
|
|
|
end
|
|
|
|
end
|