2015-07-30 18:18:12 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
2017-01-03 21:42:40 +01:00
|
|
|
module Register
|
|
|
|
class TestPuts < MiniTest::Test
|
|
|
|
include Ticker
|
2015-11-08 13:30:28 +01:00
|
|
|
|
2017-01-03 21:42:40 +01:00
|
|
|
def setup
|
|
|
|
@string_input = <<HERE
|
|
|
|
class Space
|
|
|
|
int main()
|
|
|
|
"Hello again".putstring()
|
|
|
|
end
|
2015-11-08 13:30:28 +01:00
|
|
|
end
|
|
|
|
HERE
|
2017-01-16 08:34:47 +01:00
|
|
|
@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
|
|
|
|
2017-01-03 21:42:40 +01:00
|
|
|
def test_chain
|
|
|
|
#show_ticks # get output of what is
|
2017-01-04 20:36:46 +01:00
|
|
|
check_chain [Branch, Label, LoadConstant, SlotToReg, RegToSlot,
|
|
|
|
LoadConstant, RegToSlot, FunctionCall, Label, SlotToReg,
|
|
|
|
LoadConstant, RegToSlot, LoadConstant, RegToSlot, LoadConstant,
|
|
|
|
SlotToReg, RegToSlot, LoadConstant, RegToSlot, RegisterTransfer,
|
|
|
|
FunctionCall, Label, LoadConstant, SlotToReg, RegToSlot,
|
|
|
|
SlotToReg, SlotToReg, RegisterTransfer, Syscall, RegisterTransfer,
|
|
|
|
RegisterTransfer, RegToSlot, Label, FunctionReturn, RegisterTransfer,
|
|
|
|
SlotToReg, SlotToReg, LoadConstant, SlotToReg, RegToSlot,
|
|
|
|
Label, FunctionReturn, RegisterTransfer, Syscall, NilClass]
|
2017-01-03 21:42:40 +01:00
|
|
|
end
|
2015-07-30 18:18:12 +02:00
|
|
|
|
2017-01-03 21:42:40 +01:00
|
|
|
def test_branch
|
|
|
|
was = @interpreter.instruction
|
2017-01-04 20:36:46 +01:00
|
|
|
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 test_load
|
2017-01-04 20:36:46 +01:00
|
|
|
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 test_get
|
2017-01-04 20:36:46 +01:00
|
|
|
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 test_call
|
2017-01-04 20:36:46 +01:00
|
|
|
assert_equal FunctionCall , ticks(8).class
|
2017-01-03 21:42:40 +01:00
|
|
|
end
|
2015-07-30 18:18:12 +02:00
|
|
|
|
2017-01-03 21:42:40 +01:00
|
|
|
def test_putstring
|
2017-01-04 20:36:46 +01:00
|
|
|
done = ticks(29)
|
|
|
|
assert_equal Syscall , done.class
|
2017-01-03 21:42:40 +01:00
|
|
|
assert_equal "Hello again" , @interpreter.stdout
|
|
|
|
end
|
2015-07-30 18:18:12 +02:00
|
|
|
|
2017-01-03 21:42:40 +01:00
|
|
|
def test_return
|
2017-01-04 20:36:46 +01:00
|
|
|
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
|
2015-07-30 18:18:12 +02:00
|
|
|
|
2017-01-03 21:42:40 +01:00
|
|
|
def test_exit
|
2017-01-04 20:36:46 +01:00
|
|
|
done = ticks(45)
|
2017-01-03 21:42:40 +01:00
|
|
|
assert_equal NilClass , done.class
|
|
|
|
assert_equal "Hello again" , @interpreter.stdout
|
|
|
|
end
|
2015-07-30 18:18:12 +02:00
|
|
|
end
|
|
|
|
end
|