2017-04-08 12:10:42 +03:00
|
|
|
require_relative "helper"
|
|
|
|
|
2018-06-29 22:56:49 +03:00
|
|
|
module Risc
|
2018-06-30 23:26:28 +03:00
|
|
|
class TestMethodCompiler < MiniTest::Test
|
2018-06-29 23:04:50 +03:00
|
|
|
include ScopeHelper
|
2017-04-08 12:10:42 +03:00
|
|
|
|
|
|
|
def setup
|
2018-06-30 00:39:23 +03:00
|
|
|
Parfait.boot!
|
2017-04-08 12:10:42 +03:00
|
|
|
end
|
|
|
|
|
2018-07-01 11:59:52 +03:00
|
|
|
def in_test_vool(str)
|
|
|
|
input = in_Test(str)
|
|
|
|
vool = RubyX::RubyXCompiler.new(input).ruby_to_vool
|
2018-06-29 14:57:48 +03:00
|
|
|
vool.to_mom(nil)
|
2018-07-01 11:59:52 +03:00
|
|
|
vool
|
|
|
|
end
|
|
|
|
def create_method
|
|
|
|
vool = in_test_vool("def meth; @ivar = 5;end")
|
2017-04-08 12:10:42 +03:00
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
test.get_method(:meth)
|
|
|
|
end
|
|
|
|
|
2017-04-08 17:29:53 +03:00
|
|
|
def test_method_has_source
|
2017-04-08 12:10:42 +03:00
|
|
|
method = create_method
|
2018-06-29 22:56:49 +03:00
|
|
|
assert_equal Vool::IvarAssignment , method.source.class
|
2017-04-08 12:10:42 +03:00
|
|
|
end
|
|
|
|
|
2017-04-09 10:14:28 +03:00
|
|
|
def test_method_has_no_locals
|
|
|
|
method = create_method
|
2018-03-14 20:24:47 +05:30
|
|
|
assert_equal 1 , method.frame_type.instance_length
|
2017-04-09 10:14:28 +03:00
|
|
|
end
|
|
|
|
|
2017-04-08 17:29:53 +03:00
|
|
|
def test_method_has_no_args
|
2017-04-08 12:10:42 +03:00
|
|
|
method = create_method
|
|
|
|
assert_equal 1 , method.args_type.instance_length
|
|
|
|
end
|
|
|
|
|
2017-04-09 10:14:28 +03:00
|
|
|
def test_creates_method_in_class
|
2017-04-08 12:10:42 +03:00
|
|
|
method = create_method
|
2017-04-09 10:14:28 +03:00
|
|
|
assert method , "No method created"
|
2017-12-10 20:47:26 +02:00
|
|
|
assert_equal Parfait::VoolMethod , method.class
|
2017-04-08 12:10:42 +03:00
|
|
|
end
|
2017-04-09 10:14:28 +03:00
|
|
|
|
2017-04-12 11:51:29 +03:00
|
|
|
def test_creates_method_statement_in_class
|
2018-07-01 11:59:52 +03:00
|
|
|
clazz = in_test_vool("def meth; @ivar = 5 ;end")
|
2018-06-29 23:29:10 +03:00
|
|
|
assert_equal Vool::Statements , clazz.body.class
|
|
|
|
assert_equal Vool::MethodStatement , clazz.body.first.class
|
2017-04-12 11:51:29 +03:00
|
|
|
end
|
|
|
|
|
2018-03-16 10:32:11 +05:30
|
|
|
def test_method_statement_has_class
|
2018-07-01 11:59:52 +03:00
|
|
|
input = in_Test("def meth; @ivar = 5;end")
|
|
|
|
vool = RubyX::RubyXCompiler.new(input).ruby_to_vool
|
2018-06-29 14:57:48 +03:00
|
|
|
clazz = vool.to_mom(nil)
|
2018-06-29 23:29:10 +03:00
|
|
|
assert vool.body.first.clazz
|
2017-04-09 10:14:28 +03:00
|
|
|
end
|
|
|
|
|
2018-03-16 10:32:11 +05:30
|
|
|
def test_parfait_class_creation
|
2018-07-01 11:59:52 +03:00
|
|
|
input = in_Test("def meth; @ivar = 5;end")
|
|
|
|
vool = RubyX::RubyXCompiler.new(input).ruby_to_vool
|
2018-06-29 14:57:48 +03:00
|
|
|
clazz = vool.to_mom(nil)
|
2018-06-29 23:29:10 +03:00
|
|
|
assert_equal Parfait::Class , vool.body.first.clazz.class
|
2017-04-12 11:51:29 +03:00
|
|
|
end
|
|
|
|
|
2018-03-18 22:09:27 +05:30
|
|
|
def test_typed_method_instance_type
|
2018-07-01 11:59:52 +03:00
|
|
|
vool = in_test_vool("def meth; @ivar = 5; @ibar = 4;end")
|
2018-03-18 22:09:27 +05:30
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
method = test.instance_type.get_method(:meth)
|
2018-05-14 16:13:50 +03:00
|
|
|
assert_equal 1, method.for_type.variable_index(:ivar)
|
|
|
|
assert_equal 2, method.for_type.variable_index(:ibar)
|
2017-04-12 11:51:29 +03:00
|
|
|
end
|
|
|
|
|
2018-03-18 22:09:27 +05:30
|
|
|
def test_vool_method_has_one_local
|
2018-07-01 11:59:52 +03:00
|
|
|
vool = in_test_vool("def meth; local = 5 ; a = 6;end")
|
2017-04-08 17:29:53 +03:00
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
method = test.get_method(:meth)
|
2018-03-18 22:09:27 +05:30
|
|
|
assert_equal 3 , method.frame_type.instance_length
|
2018-05-14 16:13:50 +03:00
|
|
|
assert_equal 1 , method.frame_type.variable_index(:local)
|
|
|
|
assert_equal 2 , method.frame_type.variable_index(:a)
|
2018-03-18 22:09:27 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def test_typed_method_has_one_local
|
2018-07-01 11:59:52 +03:00
|
|
|
vool = in_test_vool("def meth; local = 5 ; a = 6;end")
|
2018-03-18 22:09:27 +05:30
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
method = test.instance_type.get_method(:meth)
|
2018-04-06 20:58:58 +03:00
|
|
|
assert_equal 3 , method.frame_type.instance_length
|
2018-05-14 16:13:50 +03:00
|
|
|
assert_equal 1 , method.frame_type.variable_index(:local)
|
2017-04-08 17:29:53 +03:00
|
|
|
end
|
2017-04-08 12:10:42 +03:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|