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)
|
2020-02-28 11:54:17 +01:00
|
|
|
compiler = Risc.test_compiler
|
2020-02-17 08:45:54 +01:00
|
|
|
@slotted = Slotted.for(StringConstant.new("hi") , nil)
|
2020-02-17 08:27:42 +01:00
|
|
|
register = @slotted.to_register(compiler , InstructionMock.new)
|
2020-02-28 11:54:17 +01:00
|
|
|
@instruction = compiler.risc_instructions.next
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
def test_def_class
|
|
|
|
assert_equal Risc::LoadConstant , @instruction.class
|
|
|
|
end
|
|
|
|
def test_def_register
|
2020-02-29 16:19:53 +01:00
|
|
|
assert @instruction.register.is_object?
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
def test_def_const
|
|
|
|
assert_equal "hi" , @instruction.constant.to_string
|
|
|
|
end
|
|
|
|
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)
|
2020-02-28 11:54:17 +01:00
|
|
|
compiler = Risc.test_compiler
|
2020-02-17 08:27:42 +01:00
|
|
|
@slotted = Slotted.for(StringConstant.new("hi") , [:type])
|
2020-02-28 11:54:17 +01:00
|
|
|
register = @slotted.to_register(compiler , InstructionMock.new)
|
|
|
|
@instruction = compiler.risc_instructions.next
|
2019-08-18 19:35:01 +02:00
|
|
|
end
|
|
|
|
def test_def_class
|
|
|
|
assert_equal Risc::LoadConstant , @instruction.class
|
|
|
|
end
|
|
|
|
def test_def_register
|
2020-02-29 16:19:53 +01:00
|
|
|
assert @instruction.register.is_object?
|
2019-08-18 19:35:01 +02:00
|
|
|
end
|
|
|
|
def test_def_const
|
|
|
|
assert_equal "hi" , @instruction.constant.to_string
|
|
|
|
end
|
|
|
|
def test_to_s
|
2020-02-17 08:27:42 +01:00
|
|
|
assert_equal "StringConstant.type" , @slotted.to_s
|
2019-08-18 19:35:01 +02:00
|
|
|
end
|
|
|
|
def test_def_register2
|
2020-02-29 16:19:53 +01:00
|
|
|
assert @instruction.next.register.is_object?
|
2019-08-18 19:35:01 +02:00
|
|
|
end
|
|
|
|
def test_def_next_index
|
2020-02-28 11:54:17 +01:00
|
|
|
assert_equal 0 , @instruction.next.index
|
2019-08-18 19:35:01 +02:00
|
|
|
end
|
|
|
|
end
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|