2017-04-08 12:10:42 +03:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Vool
|
2017-04-08 19:20:11 +03:00
|
|
|
class TestMethodCompiler < MiniTest::Test
|
2017-04-08 12:10:42 +03:00
|
|
|
include CompilerHelper
|
|
|
|
|
|
|
|
def setup
|
|
|
|
Risc.machine.boot
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_method
|
|
|
|
VoolCompiler.compile in_Test("def meth; @ivar ;end")
|
|
|
|
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
|
2017-04-08 17:29:53 +03:00
|
|
|
assert_equal Vool::InstanceVariable , 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
|
|
|
|
assert_equal 1 , method.locals_type.instance_length
|
|
|
|
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"
|
|
|
|
assert_equal Rubyx::RubyMethod , method.class
|
2017-04-08 12:10:42 +03:00
|
|
|
end
|
2017-04-09 10:14:28 +03:00
|
|
|
|
|
|
|
def test_method_statement_has_class
|
|
|
|
clazz = VoolCompiler.compile in_Test("def meth; @ivar ;end")
|
|
|
|
assert_equal ScopeStatement , clazz.body.class
|
|
|
|
assert_equal MethodStatement , clazz.body.statements.first.class
|
|
|
|
assert_equal Parfait::Class , clazz.body.statements.first.clazz.class
|
|
|
|
end
|
|
|
|
|
2017-04-08 17:29:53 +03:00
|
|
|
def test_method_has_one_local
|
|
|
|
VoolCompiler.compile in_Test("def meth; local = 5 ;end")
|
|
|
|
test = Parfait.object_space.get_class_by_name(:Test)
|
|
|
|
method = test.get_method(:meth)
|
|
|
|
assert_equal 2 , method.locals_type.instance_length
|
|
|
|
end
|
2017-04-08 12:10:42 +03:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|