2018-04-26 19:26:42 +02:00
|
|
|
require_relative "helper"
|
2017-04-16 10:39:21 +02:00
|
|
|
|
2019-10-03 23:36:49 +02:00
|
|
|
module Sol
|
2019-10-03 19:55:41 +02:00
|
|
|
class TestSendSimpleArgsSlotMachine < MiniTest::Test
|
2017-09-11 20:30:28 +02:00
|
|
|
include SimpleSendHarness
|
2017-04-16 10:39:21 +02:00
|
|
|
|
2018-04-26 19:26:42 +02:00
|
|
|
def send_method
|
2019-08-17 22:29:42 +02:00
|
|
|
"5.div4(1,2);return"
|
2017-04-16 10:39:21 +02:00
|
|
|
end
|
|
|
|
|
2017-09-11 20:30:28 +02:00
|
|
|
def receiver
|
2019-10-03 19:55:41 +02:00
|
|
|
[SlotMachine::IntegerConstant , 5]
|
2017-04-16 10:39:21 +02:00
|
|
|
end
|
|
|
|
def test_args_two_move
|
2018-03-20 19:01:42 +01:00
|
|
|
assert_equal :next_message, @ins.next(1).arguments[1].left.slots[0]
|
2019-08-22 20:24:02 +02:00
|
|
|
assert_equal :arg2, @ins.next(1).arguments[1].left.slots[1]
|
2017-04-16 10:39:21 +02:00
|
|
|
end
|
2017-09-11 20:30:28 +02:00
|
|
|
def test_args_two_str
|
2019-10-03 19:55:41 +02:00
|
|
|
assert_equal SlotMachine::IntegerConstant, @ins.next(1).arguments[1].right.known_object.class
|
2018-03-20 19:01:42 +01:00
|
|
|
assert_equal 2, @ins.next(1).arguments[1].right.known_object.value
|
2017-04-16 10:39:21 +02:00
|
|
|
end
|
2018-03-15 16:21:46 +01:00
|
|
|
def test_array
|
2019-08-17 22:29:42 +02:00
|
|
|
check_array [MessageSetup,ArgumentTransfer,SimpleCall, SlotLoad, ReturnJump,
|
|
|
|
Label, ReturnSequence , Label] , @ins
|
2018-03-15 16:21:46 +01:00
|
|
|
end
|
2020-02-10 12:58:48 +01:00
|
|
|
def test_receiver_move
|
2020-02-15 15:02:03 +01:00
|
|
|
assert_equal SlottedConstant, @ins.next.receiver.class
|
2020-02-10 12:58:48 +01:00
|
|
|
end
|
|
|
|
|
2017-04-16 10:39:21 +02:00
|
|
|
end
|
|
|
|
end
|