2018-05-16 12:49:46 +03:00
|
|
|
require_relative "helper"
|
|
|
|
|
2019-10-03 20:55:41 +03:00
|
|
|
module SlotMachine
|
2018-05-16 12:49:46 +03:00
|
|
|
|
2020-02-11 16:19:52 +07:00
|
|
|
class TestSlotConstant < MiniTest::Test
|
2020-03-12 22:20:38 +02:00
|
|
|
include Risc::HasCompiler
|
2018-05-16 12:49:46 +03:00
|
|
|
def setup
|
2019-02-08 23:03:23 +02:00
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
2020-03-12 22:20:38 +02:00
|
|
|
@compiler = Risc.test_compiler
|
2020-02-17 14:45:54 +07:00
|
|
|
@slotted = Slotted.for(StringConstant.new("hi") , nil)
|
2020-03-12 22:20:38 +02:00
|
|
|
register = @slotted.to_register(@compiler , InstructionMock.new)
|
2018-05-16 12:49:46 +03:00
|
|
|
end
|
2020-03-02 17:50:03 +02:00
|
|
|
def test_load
|
2020-03-12 22:20:38 +02:00
|
|
|
assert_load 1 , Parfait::Word , "id_"
|
2018-05-16 12:49:46 +03:00
|
|
|
end
|
|
|
|
def test_def_const
|
2020-03-12 22:20:38 +02:00
|
|
|
assert_equal "hi" , risc(1).constant.to_string
|
2018-05-16 12:49:46 +03:00
|
|
|
end
|
|
|
|
end
|
2020-02-11 16:19:52 +07:00
|
|
|
class TestSlotConstantType < MiniTest::Test
|
2020-03-12 22:20:38 +02:00
|
|
|
include Risc::HasCompiler
|
2019-08-18 20:35:01 +03:00
|
|
|
def setup
|
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
2020-03-12 22:20:38 +02:00
|
|
|
@compiler = Risc.test_compiler
|
2020-02-17 14:27:42 +07:00
|
|
|
@slotted = Slotted.for(StringConstant.new("hi") , [:type])
|
2020-03-12 22:20:38 +02:00
|
|
|
register = @slotted.to_register(@compiler , InstructionMock.new)
|
2019-08-18 20:35:01 +03:00
|
|
|
end
|
2020-03-02 17:50:03 +02:00
|
|
|
def test_load
|
2020-03-12 22:20:38 +02:00
|
|
|
assert_load 1 , Parfait::Word , "id_"
|
2019-08-18 20:35:01 +03:00
|
|
|
end
|
|
|
|
def test_def_const
|
2020-03-12 22:20:38 +02:00
|
|
|
assert_equal "hi" , risc(1).constant.to_string
|
2019-08-18 20:35:01 +03:00
|
|
|
end
|
|
|
|
def test_to_s
|
2020-02-17 14:27:42 +07:00
|
|
|
assert_equal "StringConstant.type" , @slotted.to_s
|
2019-08-18 20:35:01 +03:00
|
|
|
end
|
|
|
|
def test_def_register2
|
2020-03-12 22:20:38 +02:00
|
|
|
assert_slot_to_reg 2 , "id_" , 0 , "id_.0"
|
2019-08-18 20:35:01 +03:00
|
|
|
end
|
|
|
|
end
|
2018-05-16 12:49:46 +03:00
|
|
|
end
|