2017-04-13 13:14:43 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Vool
|
2017-08-29 18:31:42 +02:00
|
|
|
class TestAssignMom < MiniTest::Test
|
2019-08-07 14:08:45 +02:00
|
|
|
include VoolCompile
|
2017-04-13 13:14:43 +02:00
|
|
|
|
|
|
|
def setup
|
2019-02-08 22:03:23 +01:00
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
2019-08-17 22:29:42 +02:00
|
|
|
@compiler = compile_first_method( "local = 5;return")
|
2019-08-07 14:08:45 +02:00
|
|
|
@ins = @compiler.mom_instructions.next
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_compiles
|
2018-03-18 18:08:49 +01:00
|
|
|
assert_equal Mom::SlotLoad , @ins.class , @ins
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
|
|
|
def test_slot_is_set
|
2018-03-18 18:08:49 +01:00
|
|
|
assert @ins.left
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
|
|
|
def test_slot_starts_at_message
|
2018-03-18 18:08:49 +01:00
|
|
|
assert_equal :message , @ins.left.known_object
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
2019-08-23 09:21:22 +02:00
|
|
|
def test_slot_gets_local
|
|
|
|
assert_equal :local1 , @ins.left.slots[0]
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
|
|
|
def test_slot_assigns_something
|
2018-03-18 18:08:49 +01:00
|
|
|
assert @ins.right
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
|
|
|
def test_slot_assigns_int
|
2018-03-18 18:08:49 +01:00
|
|
|
assert_equal Mom::IntegerConstant , @ins.right.known_object.class
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-15 16:25:23 +01:00
|
|
|
#otherwise as above, but assigning instance, so should get a SlotLoad
|
2017-09-10 12:33:32 +02:00
|
|
|
class TestAssignMomInstanceToLocal < MiniTest::Test
|
2019-08-07 14:08:45 +02:00
|
|
|
include VoolCompile
|
2017-09-10 12:04:36 +02:00
|
|
|
def setup
|
2019-02-08 22:03:23 +01:00
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
2019-08-17 22:29:42 +02:00
|
|
|
@compiler = compile_first_method( "@a = 5 ; local = @a;return")
|
2019-08-07 14:08:45 +02:00
|
|
|
@ins = @compiler.mom_instructions.next
|
2017-09-10 12:04:36 +02:00
|
|
|
end
|
|
|
|
def test_class_compiles
|
2018-03-18 18:08:49 +01:00
|
|
|
assert_equal Mom::SlotLoad , @ins.next.class , @ins
|
2017-09-10 12:04:36 +02:00
|
|
|
end
|
|
|
|
end
|
2017-09-10 12:33:32 +02:00
|
|
|
|
2017-04-13 13:14:43 +02:00
|
|
|
#compiling to an argument should result in different second parameter in the slot array
|
2017-09-10 12:33:32 +02:00
|
|
|
class TestAssignToArg < MiniTest::Test
|
2019-08-07 14:08:45 +02:00
|
|
|
include VoolCompile
|
2017-04-13 13:14:43 +02:00
|
|
|
|
|
|
|
def setup
|
2019-02-08 22:03:23 +01:00
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
2019-08-17 22:29:42 +02:00
|
|
|
@compiler = compile_first_method( "arg = 5;return")
|
2019-08-07 14:08:45 +02:00
|
|
|
@ins = @compiler.mom_instructions.next
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_compiles
|
2018-03-18 18:08:49 +01:00
|
|
|
assert_equal Mom::SlotLoad , @ins.class , @ins
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
|
|
|
def test_slot_is_set
|
2018-03-18 18:08:49 +01:00
|
|
|
assert @ins.left
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
|
|
|
def test_slot_starts_at_message
|
2018-03-18 18:08:49 +01:00
|
|
|
assert_equal :message , @ins.left.known_object
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
2019-08-22 20:24:02 +02:00
|
|
|
def test_slot_gets_arg
|
|
|
|
assert_equal :arg1 , @ins.left.slots[0]
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
2017-09-10 12:33:32 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
class TestAssignMomToInstance < MiniTest::Test
|
2019-08-07 14:08:45 +02:00
|
|
|
include VoolCompile
|
2017-09-10 12:33:32 +02:00
|
|
|
def setup
|
2019-02-08 22:03:23 +01:00
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
2017-09-10 12:33:32 +02:00
|
|
|
def test_assigns_const
|
2019-08-17 22:29:42 +02:00
|
|
|
@compiler = compile_first_method( "@a = 5;return")
|
2019-08-07 14:08:45 +02:00
|
|
|
@ins = @compiler.mom_instructions.next
|
2018-03-18 18:08:49 +01:00
|
|
|
assert_equal Mom::SlotLoad , @ins.class , @ins
|
|
|
|
assert_equal Mom::IntegerConstant , @ins.right.known_object.class , @ins
|
2017-09-10 12:33:32 +02:00
|
|
|
end
|
|
|
|
def test_assigns_move
|
2019-08-17 22:29:42 +02:00
|
|
|
@compiler = compile_first_method( "@a = arg;return")
|
2019-08-07 14:08:45 +02:00
|
|
|
@ins = @compiler.mom_instructions.next
|
2018-03-18 18:08:49 +01:00
|
|
|
assert_equal Mom::SlotLoad , @ins.class , @ins
|
|
|
|
assert_equal Mom::SlotDefinition , @ins.right.class , @ins
|
2017-04-13 13:14:43 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|