rubyx/test/risc/interpreter/wip/test_puts.rb

72 lines
2.3 KiB
Ruby
Raw Normal View History

2018-04-01 13:01:17 +02:00
require_relative "../helper"
module Risc
2017-01-03 21:42:40 +01:00
class TestPuts < MiniTest::Test
include Ticker
2017-01-03 21:42:40 +01:00
def setup
@string_input = <<HERE
class Space
int main()
"Hello again".putstring()
end
end
HERE
@input = s(:statements, s(:call, :putstring, s(:arguments), s(:receiver, s(:string, "Hello again"))))
2017-01-03 21:42:40 +01:00
super
end
2015-09-20 23:09:11 +02:00
def pest_chain
2017-01-03 21:42:40 +01:00
#show_ticks # get output of what is
check_chain [Branch, Label, LoadConstant, SlotToReg, RegToSlot,
LoadConstant, RegToSlot, FunctionCall, Label, SlotToReg,
LoadConstant, RegToSlot, LoadConstant, RegToSlot, LoadConstant,
2018-03-21 11:18:04 +01:00
SlotToReg, RegToSlot, LoadConstant, RegToSlot, Transfer,
FunctionCall, Label, LoadConstant, SlotToReg, RegToSlot,
2018-03-21 11:18:04 +01:00
SlotToReg, SlotToReg, Transfer, Syscall, Transfer,
Transfer, RegToSlot, Label, FunctionReturn, Transfer,
SlotToReg, SlotToReg, LoadConstant, SlotToReg, RegToSlot,
2018-03-21 11:18:04 +01:00
Label, FunctionReturn, Transfer, Syscall, NilClass]
2017-01-03 21:42:40 +01:00
end
def pest_branch
2017-01-03 21:42:40 +01:00
was = @interpreter.instruction
assert_equal Branch , ticks(1).class
2017-01-03 21:42:40 +01:00
assert was != @interpreter.instruction
assert @interpreter.instruction , "should have gone to next instruction"
end
def pest_load
assert_equal LoadConstant , ticks(3).class
2017-01-03 21:42:40 +01:00
assert_equal Parfait::Space , @interpreter.get_register(:r2).class
assert_equal :r2, @interpreter.instruction.array.symbol
end
def pest_get
assert_equal SlotToReg , ticks(4).class
2017-01-03 21:42:40 +01:00
assert @interpreter.get_register( :r1 )
assert Integer , @interpreter.get_register( :r1 ).class
end
def pest_call
assert_equal FunctionCall , ticks(8).class
2017-01-03 21:42:40 +01:00
end
def pest_putstring
done = ticks(29)
assert_equal Syscall , done.class
2017-01-03 21:42:40 +01:00
assert_equal "Hello again" , @interpreter.stdout
end
def pest_return
done = ticks(34)
assert_equal FunctionReturn , done.class
assert Label , @interpreter.instruction.class
assert @interpreter.instruction.is_a?(Instruction) , "not instruction #{@interpreter.instruction}"
2017-01-03 21:42:40 +01:00
end
def pest_exit
done = ticks(45)
2017-01-03 21:42:40 +01:00
assert_equal NilClass , done.class
assert_equal "Hello again" , @interpreter.stdout
end
end
end