rubyx/test/vool/to_mom/test_assign.rb

91 lines
2.3 KiB
Ruby
Raw Normal View History

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
2017-04-13 13:14:43 +02:00
include MomCompile
def setup
Risc.machine.boot
2017-09-10 12:33:32 +02:00
@stats = compile_first_method( "local = 5")
2017-04-13 13:14:43 +02:00
end
def test_class_compiles
assert_equal Mom::SlotLoad , @stats.class , @stats
2017-04-13 13:14:43 +02:00
end
def test_slot_is_set
assert @stats.left
2017-04-13 13:14:43 +02:00
end
def test_slot_starts_at_message
assert_equal :message , @stats.left.known_object
2017-04-13 13:14:43 +02:00
end
def test_slot_gets_self
assert_equal :frame , @stats.left.slots[0]
2017-04-13 13:14:43 +02:00
end
def test_slot_assigns_to_local
assert_equal :local , @stats.left.slots[-1]
2017-04-13 13:14:43 +02:00
end
def test_slot_assigns_something
assert @stats.right
2017-04-13 13:14:43 +02:00
end
def test_slot_assigns_int
assert_equal Mom::IntegerConstant , @stats.right.class
2017-04-13 13:14:43 +02:00
end
end
2017-09-10 12:04:36 +02:00
#otherwise as above, but assigning instance, so should get a SlotMove
2017-09-10 12:33:32 +02:00
class TestAssignMomInstanceToLocal < MiniTest::Test
2017-09-10 12:04:36 +02:00
include MomCompile
def setup
Risc.machine.boot
2017-09-10 12:33:32 +02:00
@stats = compile_first_method( "local = @a")
2017-09-10 12:04:36 +02:00
end
def test_class_compiles
assert_equal Mom::SlotLoad , @stats.class , @stats
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
2017-04-13 13:14:43 +02:00
include MomCompile
def setup
Risc.machine.boot
@stats = compile_first_method( "arg = 5")
end
def test_class_compiles
assert_equal Mom::SlotLoad , @stats.class , @stats
2017-04-13 13:14:43 +02:00
end
def test_slot_is_set
assert @stats.left
2017-04-13 13:14:43 +02:00
end
def test_slot_starts_at_message
assert_equal :message , @stats.left.known_object
2017-04-13 13:14:43 +02:00
end
def test_slot_gets_self
assert_equal :arguments , @stats.left.slots[0]
2017-04-13 13:14:43 +02:00
end
def test_slot_assigns_to_local
assert_equal :arg , @stats.left.slots[-1]
2017-04-13 13:14:43 +02:00
end
2017-09-10 12:33:32 +02:00
end
class TestAssignMomToInstance < MiniTest::Test
include MomCompile
def setup
Risc.machine.boot
2017-04-13 13:14:43 +02:00
end
2017-09-10 12:33:32 +02:00
def test_assigns_const
@stats = compile_first_method( "@a = 5")
assert_equal Mom::SlotLoad , @stats.class , @stats
assert_equal Mom::IntegerConstant , @stats.right.class , @stats
2017-09-10 12:33:32 +02:00
end
def test_assigns_move
@stats = compile_first_method( "@a = arg")
assert_equal Mom::SlotLoad , @stats.class , @stats
assert_equal Mom::SlotDefinition , @stats.right.class , @stats
2017-04-13 13:14:43 +02:00
end
end
end