2018-05-16 11:49:46 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
2019-10-03 19:55:41 +02:00
|
|
|
module SlotMachine
|
2018-05-16 11:49:46 +02:00
|
|
|
|
2020-02-11 10:19:52 +01:00
|
|
|
class TestSlotConstant < MiniTest::Test
|
2018-05-16 11:49:46 +02:00
|
|
|
def setup
|
2019-02-08 22:03:23 +01:00
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
2018-07-16 10:46:18 +02:00
|
|
|
@compiler = Risc::FakeCompiler.new
|
2020-02-11 10:19:52 +01:00
|
|
|
@definition = Slot.for(StringConstant.new("hi") , [])
|
2018-08-19 11:56:44 +02:00
|
|
|
@register = @definition.to_register(@compiler , InstructionMock.new)
|
|
|
|
@instruction = @compiler.instructions.first
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
def test_def_class
|
|
|
|
assert_equal Risc::LoadConstant , @instruction.class
|
|
|
|
end
|
|
|
|
def test_def_register
|
|
|
|
assert_equal :r1 , @instruction.register.symbol
|
|
|
|
end
|
|
|
|
def test_def_const
|
|
|
|
assert_equal "hi" , @instruction.constant.to_string
|
|
|
|
end
|
2018-06-16 20:01:15 +02:00
|
|
|
def test_to_s
|
|
|
|
assert_equal "[StringConstant]" , @definition.to_s
|
|
|
|
end
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
2020-02-11 10:19:52 +01:00
|
|
|
class TestSlotConstantType < MiniTest::Test
|
2019-08-18 19:35:01 +02:00
|
|
|
def setup
|
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
|
|
|
@compiler = Risc::FakeCompiler.new
|
2020-02-11 10:19:52 +01:00
|
|
|
@definition = Slot.for(StringConstant.new("hi") , [:type])
|
2019-08-18 19:35:01 +02:00
|
|
|
@register = @definition.to_register(@compiler , InstructionMock.new)
|
|
|
|
@instruction = @compiler.instructions.first
|
|
|
|
end
|
|
|
|
def test_def_class
|
|
|
|
assert_equal Risc::LoadConstant , @instruction.class
|
|
|
|
end
|
|
|
|
def test_def_register
|
|
|
|
assert_equal :r1 , @instruction.register.symbol
|
|
|
|
end
|
|
|
|
def test_def_const
|
|
|
|
assert_equal "hi" , @instruction.constant.to_string
|
|
|
|
end
|
|
|
|
def test_to_s
|
|
|
|
assert_equal "[StringConstant, type]" , @definition.to_s
|
|
|
|
end
|
|
|
|
def test_def_register2
|
|
|
|
assert_equal :r1 , @compiler.instructions[1].register.symbol
|
|
|
|
end
|
|
|
|
def test_def_next_index
|
|
|
|
assert_equal 0 , @compiler.instructions[1].index
|
|
|
|
end
|
|
|
|
end
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|