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
|
|
|
class TestSlotLoad1 < MiniTest::Test
|
|
|
|
|
|
|
|
def setup
|
2019-02-08 22:03:23 +01:00
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
2019-08-12 23:13:29 +02:00
|
|
|
load = SlotLoad.new("test", [:message, :caller] , [:message,:type] )
|
2020-02-28 11:54:17 +01:00
|
|
|
compiler = Risc.test_compiler
|
|
|
|
load.to_risc(compiler)
|
|
|
|
@instructions = compiler.risc_instructions.next
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_ins_class
|
2020-02-28 11:54:17 +01:00
|
|
|
assert_equal Risc::SlotToReg , @instructions.class
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
def test_ins_next_class
|
2020-02-28 11:54:17 +01:00
|
|
|
assert_equal Risc::RegToSlot , @instructions.next.class
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
def test_ins_arr
|
2020-03-01 15:41:58 +01:00
|
|
|
assert_equal :message , @instructions.array.symbol
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
def test_ins_reg
|
2020-03-01 15:41:58 +01:00
|
|
|
assert_equal :"message.type" , @instructions.register.symbol
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
def test_ins_index
|
2020-02-28 11:54:17 +01:00
|
|
|
assert_equal 0 , @instructions.index
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
def test_ins_next_reg
|
2020-03-01 15:41:58 +01:00
|
|
|
assert_equal :"message.type" , @instructions.next.register.symbol
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
def test_ins_next_arr
|
2020-03-01 15:41:58 +01:00
|
|
|
assert_equal :message , @instructions.next.array.symbol
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
def test_ins_next_index
|
2020-02-28 11:54:17 +01:00
|
|
|
assert_equal 6 , @instructions.next.index
|
2018-05-16 11:49:46 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|