rubyx/test/vool/to_mom/test_assign.rb

70 lines
1.7 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
@stats = compile_first_method( "arg = 5")
2017-09-04 20:32:01 +02:00
@first = @stats.first
2017-04-13 13:14:43 +02:00
end
def test_class_compiles
2017-09-04 20:32:01 +02:00
assert_equal Mom::SlotConstant , @first.class , @stats
2017-04-13 13:14:43 +02:00
end
def test_slot_is_set
2017-09-04 20:32:01 +02:00
assert @first.left
2017-04-13 13:14:43 +02:00
end
def test_slot_starts_at_message
2017-09-04 20:32:01 +02:00
assert_equal :message , @first.left.known_object
2017-04-13 13:14:43 +02:00
end
def test_slot_gets_self
2017-09-04 20:32:01 +02:00
assert_equal :arguments , @first.left.slots[0]
2017-04-13 13:14:43 +02:00
end
def test_slot_assigns_to_local
2017-09-04 20:32:01 +02:00
assert_equal :arg , @first.left.slots[-1]
2017-04-13 13:14:43 +02:00
end
def test_slot_assigns_something
assert @stats.first.right
end
def test_slot_assigns_int
2017-09-04 20:32:01 +02:00
assert_equal IntegerStatement , @first.right.class
2017-04-13 13:14:43 +02:00
end
end
#compiling to an argument should result in different second parameter in the slot array
class TestArgMom < MiniTest::Test
include MomCompile
def setup
Risc.machine.boot
@stats = compile_first_method( "arg = 5")
2017-09-04 20:32:01 +02:00
@first = @stats.first
2017-04-13 13:14:43 +02:00
end
def test_class_compiles
2017-09-04 20:32:01 +02:00
assert_equal Mom::SlotConstant , @first.class , @stats
2017-04-13 13:14:43 +02:00
end
def test_slot_is_set
2017-09-04 20:32:01 +02:00
assert @first.left
2017-04-13 13:14:43 +02:00
end
def test_slot_starts_at_message
2017-09-04 20:32:01 +02:00
assert_equal :message , @first.left.known_object
2017-04-13 13:14:43 +02:00
end
def test_slot_gets_self
2017-09-04 20:32:01 +02:00
assert_equal :arguments , @first.left.slots[0]
2017-04-13 13:14:43 +02:00
end
def test_slot_assigns_to_local
2017-09-04 20:32:01 +02:00
assert_equal :arg , @first.left.slots[-1]
2017-04-13 13:14:43 +02:00
end
def test_slot_assigns_something
2017-09-04 20:32:01 +02:00
assert @first.right
2017-04-13 13:14:43 +02:00
end
def test_slot_assigns_int
2017-09-04 20:32:01 +02:00
assert_equal IntegerStatement , @first.right.class
2017-04-13 13:14:43 +02:00
end
end
end