2018-04-26 19:26:42 +02:00
|
|
|
require_relative "../helper"
|
|
|
|
|
2019-10-03 23:36:49 +02:00
|
|
|
module Sol
|
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
|
2019-10-03 23:36:49 +02:00
|
|
|
include SolCompile
|
2019-10-03 19:55:41 +02:00
|
|
|
include SlotMachine
|
2018-04-26 19:26:42 +02:00
|
|
|
|
|
|
|
def setup
|
2019-09-12 21:27:10 +02:00
|
|
|
@compiler = compile_main( send_method , "Integer.div4;Object.get")
|
2019-10-03 19:55:41 +02:00
|
|
|
@ins = @compiler.slot_instructions.next
|
2018-04-26 19:26:42 +02:00
|
|
|
end
|
|
|
|
|
2018-06-30 09:08:18 +02:00
|
|
|
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
|
2019-08-12 10:57:32 +02:00
|
|
|
assert_equal MessageSetup , @ins.class , @ins
|
2017-09-11 20:30:28 +02:00
|
|
|
end
|
|
|
|
def test_two_instructions_are_returned
|
2019-08-17 22:29:42 +02:00
|
|
|
assert_equal 8 , @ins.length , @ins
|
2017-09-11 20:30:28 +02:00
|
|
|
end
|
|
|
|
def test_receiver_move_class
|
2019-08-12 10:57:32 +02:00
|
|
|
assert_equal ArgumentTransfer, @ins.next(1).class
|
2017-09-11 20:30:28 +02:00
|
|
|
end
|
|
|
|
def test_receiver_move
|
2019-08-12 10:57:32 +02:00
|
|
|
assert_equal SlotDefinition, @ins.next.receiver.class
|
2017-09-11 20:30:28 +02:00
|
|
|
end
|
|
|
|
def test_receiver
|
|
|
|
type , value = receiver
|
2018-03-20 19:01:42 +01:00
|
|
|
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
|
2019-08-12 10:57:32 +02:00
|
|
|
assert_equal SimpleCall, @ins.next(2).class
|
2017-09-11 20:30:28 +02:00
|
|
|
end
|
|
|
|
def test_call_has_method
|
2018-07-07 08:11:09 +02:00
|
|
|
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
|
2019-08-17 22:29:42 +02:00
|
|
|
check_array [MessageSetup,ArgumentTransfer,SimpleCall,
|
|
|
|
SlotLoad, ReturnJump, Label, ReturnSequence ,
|
2019-08-12 10:57:32 +02:00
|
|
|
Label] , @ins
|
2018-03-16 14:11:17 +01:00
|
|
|
end
|
2017-09-11 20:30:28 +02:00
|
|
|
end
|
|
|
|
end
|