2017-09-12 17:49:42 +03:00
|
|
|
require_relative "../helper"
|
|
|
|
|
|
|
|
module Vool
|
|
|
|
class TestSendCachedSimpleMom < MiniTest::Test
|
|
|
|
include MomCompile
|
2018-03-16 18:41:17 +05:30
|
|
|
include Mom
|
2017-09-12 17:49:42 +03:00
|
|
|
|
|
|
|
def setup
|
2018-06-30 19:20:17 +03:00
|
|
|
Parfait.boot!
|
2018-04-19 10:00:55 +03:00
|
|
|
@ins = compile_first_method( "a = 5; a.div4")
|
2017-12-05 21:46:37 +02:00
|
|
|
end
|
2018-03-16 20:02:22 +05:30
|
|
|
def test_check_type
|
|
|
|
assert_equal NotSameCheck , @ins.next.class , @ins
|
2017-09-14 18:42:01 +03:00
|
|
|
end
|
2018-03-16 20:02:22 +05:30
|
|
|
def test_type_update
|
|
|
|
load = @ins.next(2)
|
2018-03-17 21:32:09 +05:30
|
|
|
assert_equal :message , load.right.known_object , load
|
2018-04-08 22:59:42 +03:00
|
|
|
assert_equal :frame , load.right.slots[0] , load
|
|
|
|
assert_equal :a , load.right.slots[1] , load
|
|
|
|
assert_equal :type , load.right.slots[2] , load
|
2017-09-14 18:42:01 +03:00
|
|
|
end
|
2018-03-16 20:02:22 +05:30
|
|
|
def test_check_resolve_call
|
2018-04-08 18:55:17 +03:00
|
|
|
assert_equal ResolveMethod , @ins.next(3).class , @ins
|
2017-09-12 17:49:42 +03:00
|
|
|
end
|
2018-03-16 20:02:22 +05:30
|
|
|
def test_dynamic_call_last
|
|
|
|
assert_equal DynamicCall , @ins.last.class , @ins
|
2017-12-05 21:46:37 +02:00
|
|
|
end
|
|
|
|
|
2018-03-15 20:51:46 +05:30
|
|
|
def test_array
|
2018-04-08 18:55:17 +03:00
|
|
|
check_array [SlotLoad, NotSameCheck, SlotLoad, ResolveMethod, Label, MessageSetup ,
|
|
|
|
ArgumentTransfer, DynamicCall] , @ins
|
2018-03-15 20:51:46 +05:30
|
|
|
end
|
|
|
|
|
2017-09-12 17:49:42 +03:00
|
|
|
end
|
|
|
|
end
|