2017-04-08 11:10:42 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Vool
|
2017-04-08 18:20:11 +02:00
|
|
|
class TestMethodCompiler < MiniTest::Test
|
2017-04-08 11:10:42 +02:00
|
|
|
include CompilerHelper
|
|
|
|
|
|
|
|
def setup
|
|
|
|
Risc.machine.boot
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_method
|
2018-03-13 11:46:06 +01:00
|
|
|
VoolCompiler.ruby_to_vool in_Test("def meth; @ivar = 5;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
|
2018-03-16 06:02:11 +01:00
|
|
|
assert_equal IvarAssignment , 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
|
2018-03-13 11:46:06 +01:00
|
|
|
clazz = VoolCompiler.ruby_to_vool in_Test("def meth; @ivar = 5 ;end")
|
2018-03-16 06:02:11 +01:00
|
|
|
assert_equal MethodStatement , clazz.body.class
|
2017-04-12 10:51:29 +02:00
|
|
|
end
|
|
|
|
|
2018-03-16 06:02:11 +01:00
|
|
|
def test_method_statement_has_class
|
2018-03-13 11:46:06 +01:00
|
|
|
clazz = VoolCompiler.ruby_to_vool in_Test("def meth; @ivar = 5;end")
|
2018-03-16 06:02:11 +01:00
|
|
|
assert clazz.body.clazz
|
2017-04-09 09:14:28 +02:00
|
|
|
end
|
|
|
|
|
2018-03-16 06:02:11 +01:00
|
|
|
def test_parfait_class_creation
|
2018-03-13 11:46:06 +01:00
|
|
|
clazz = VoolCompiler.ruby_to_vool in_Test("def meth; @ivar = 5;end")
|
2018-03-16 06:02:11 +01:00
|
|
|
assert_equal Parfait::Class , clazz.body.clazz.class
|
2017-04-12 10:51:29 +02:00
|
|
|
end
|
|
|
|
|
2018-03-18 17:39:27 +01:00
|
|
|
def test_typed_method_instance_type
|
|
|
|
VoolCompiler.ruby_to_vool in_Test("def meth; @ivar = 5; @ibar = 4;end")
|
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
method = test.instance_type.get_method(:meth)
|
|
|
|
assert_equal 2, method.for_type.variable_index(:ivar)
|
|
|
|
assert_equal 3, method.for_type.variable_index(:ibar)
|
2017-04-12 10:51:29 +02:00
|
|
|
end
|
|
|
|
|
2018-03-18 17:39:27 +01:00
|
|
|
def test_vool_method_has_one_local
|
|
|
|
VoolCompiler.ruby_to_vool in_Test("def meth; local = 5 ; a = 6;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
|
|
|
|
assert_equal 2 , method.frame_type.variable_index(:local)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_typed_method_has_one_local
|
|
|
|
VoolCompiler.ruby_to_vool in_Test("def meth; local = 5 ; a = 6;end")
|
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
method = test.instance_type.get_method(:meth)
|
|
|
|
assert_equal 3 , method.frame.instance_length
|
|
|
|
assert_equal 2 , method.frame.variable_index(:local)
|
2017-04-08 16:29:53 +02:00
|
|
|
end
|
2017-04-08 11:10:42 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|