rubyx/test/vool/compilers/test_method_compiler.rb

67 lines
1.8 KiB
Ruby
Raw Normal View History

2017-04-08 12:10:42 +03:00
require_relative "helper"
module Vool
class TestMethodCompiler < MiniTest::Test
2017-04-08 12:10:42 +03:00
include CompilerHelper
def setup
Risc.machine.boot
end
def create_method
VoolCompiler.ruby_to_vool in_Test("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-03-16 10:32:11 +05:30
assert_equal 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
def test_creates_method_statement_in_class
clazz = VoolCompiler.ruby_to_vool in_Test("def meth; @ivar = 5 ;end")
2018-03-16 10:32:11 +05:30
assert_equal MethodStatement , clazz.body.class
end
2018-03-16 10:32:11 +05:30
def test_method_statement_has_class
clazz = VoolCompiler.ruby_to_vool in_Test("def meth; @ivar = 5;end")
2018-03-16 10:32:11 +05:30
assert clazz.body.clazz
2017-04-09 10:14:28 +03:00
end
2018-03-16 10:32:11 +05:30
def test_parfait_class_creation
clazz = VoolCompiler.ruby_to_vool in_Test("def meth; @ivar = 5;end")
2018-03-16 10:32:11 +05:30
assert_equal Parfait::Class , clazz.body.clazz.class
end
def test_method_statement_has_class_in_main
2018-03-16 10:32:11 +05:30
clazz = VoolCompiler.ruby_to_vool in_Space("def meth; @ivar = 5;end")
assert clazz.body.clazz
end
2017-04-08 17:29:53 +03:00
def test_method_has_one_local
2018-03-12 17:23:16 +05:30
VoolCompiler.ruby_to_vool in_Test("def meth; local = 5 ;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-14 20:24:47 +05:30
assert_equal 2 , method.frame_type.instance_length
2017-04-08 17:29:53 +03:00
end
2017-04-08 12:10:42 +03:00
end
end