rubyx/test/register/interpreter/test_puts.rb

69 lines
2.3 KiB
Ruby
Raw Normal View History

require_relative "helper"
2015-08-04 21:01:20 +02:00
class TestPuts < MiniTest::Test
2015-09-27 21:39:10 +02:00
include Ticker
def setup
@string_input = <<HERE
2015-11-30 15:20:39 +01:00
class Space
int main()
"Hello again".putstring()
end
end
HERE
2016-12-10 22:07:04 +01:00
@input = s(:statements, s(:class, :Space, s(:derives, nil), s(:statements, s(:function, :Integer, s(:name, :main), s(:parameters), s(:statements, s(:call, s(:name, :putstring), s(:arguments), s(:receiver, s(:string, "Hello again"))))))))
super
end
2015-09-20 23:09:11 +02:00
def test_chain
#show_ticks # get output of what is
check_chain ["Branch","Label","LoadConstant","GetSlot","SetSlot",
"LoadConstant","SetSlot","FunctionCall","Label","GetSlot",
"LoadConstant","SetSlot","LoadConstant","SetSlot","LoadConstant",
"SetSlot","LoadConstant","SetSlot","RegisterTransfer","FunctionCall",
2015-11-16 17:02:13 +01:00
"Label","GetSlot","GetSlot","RegisterTransfer","Syscall",
"RegisterTransfer","RegisterTransfer","SetSlot","Label","FunctionReturn",
"RegisterTransfer","GetSlot","GetSlot","Label","FunctionReturn",
"RegisterTransfer","Syscall","NilClass"]
end
def test_branch
was = @interpreter.instruction
assert_equal Register::Branch , ticks(1).class
assert was != @interpreter.instruction
assert @interpreter.instruction , "should have gone to next instruction"
end
def test_load
assert_equal Register::LoadConstant , ticks(3).class
2015-11-04 19:27:48 +01:00
assert_equal Parfait::Space , @interpreter.get_register(:r2).class
assert_equal :r2, @interpreter.instruction.array.symbol
end
def test_get
assert_equal Register::GetSlot , ticks(4).class
assert @interpreter.get_register( :r1 )
assert Integer , @interpreter.get_register( :r1 ).class
end
def test_call
assert_equal Register::FunctionCall , ticks(8).class
end
def test_putstring
2015-11-16 17:02:13 +01:00
done = ticks(25)
assert_equal Register::Syscall , done.class
assert_equal "Hello again" , @interpreter.stdout
end
def test_return
2015-11-16 17:02:13 +01:00
done = ticks(30)
assert_equal Register::FunctionReturn , done.class
assert Register::Label , @interpreter.instruction.class
assert @interpreter.instruction.is_a?(Register::Instruction) , "not instruction #{@interpreter.instruction}"
end
def test_exit
done = ticks(42)
assert_equal NilClass , done.class
2015-09-27 21:39:10 +02:00
assert_equal "Hello again" , @interpreter.stdout
end
end