rubyx/test/vool/send/helper.rb

48 lines
1.3 KiB
Ruby
Raw Normal View History

2018-04-26 19:26:42 +02:00
require_relative "../helper"
2017-09-11 20:30:28 +02:00
module Vool
2018-03-15 17:24:03 +01:00
# relies on @ins and receiver_type method
2017-09-11 20:30:28 +02:00
module SimpleSendHarness
include VoolCompile
include Mom
2018-04-26 19:26:42 +02:00
def setup
2019-02-08 22:03:23 +01:00
Parfait.boot!(Parfait.default_test_options)
Risc::Builtin.boot_functions
@compiler = compile_first_method( send_method )
@ins = @compiler.mom_instructions.next
2018-04-26 19:26:42 +02:00
end
def test_first_not_array
2018-03-15 17:24:03 +01:00
assert Array != @ins.class , @ins
2017-09-11 20:30:28 +02:00
end
def test_class_compiles
assert_equal MessageSetup , @ins.class , @ins
2017-09-11 20:30:28 +02:00
end
def test_two_instructions_are_returned
assert_equal 6 , @ins.length , @ins
2017-09-11 20:30:28 +02:00
end
def test_receiver_move_class
assert_equal ArgumentTransfer, @ins.next(1).class
2017-09-11 20:30:28 +02:00
end
def test_receiver_move
assert_equal SlotDefinition, @ins.next.receiver.class
2017-09-11 20:30:28 +02:00
end
def test_receiver
type , value = receiver
assert_equal type, @ins.next.receiver.known_object.class
assert_equal value, @ins.next.receiver.known_object.value
2017-09-11 20:30:28 +02:00
end
def test_call_is
assert_equal SimpleCall, @ins.next(2).class
2017-09-11 20:30:28 +02:00
end
def test_call_has_method
assert_equal Parfait::CallableMethod, @ins.next(2).method.class
2017-09-11 20:30:28 +02:00
end
2018-03-16 14:11:17 +01:00
def test_array
check_array [MessageSetup,ArgumentTransfer,SimpleCall,Label, ReturnSequence ,
Label] , @ins
2018-03-16 14:11:17 +01:00
end
2017-09-11 20:30:28 +02:00
end
end