2018-05-08 18:59:43 +02:00
|
|
|
require_relative "../helper"
|
|
|
|
|
|
|
|
module Risc
|
|
|
|
# tests that require a boot and test propagation
|
|
|
|
class TestPositionBasic < MiniTest::Test
|
|
|
|
def setup
|
|
|
|
Risc.machine.boot
|
|
|
|
@binary = Parfait::BinaryCode.new(1)
|
2018-05-13 14:28:10 +02:00
|
|
|
@method = Parfait.object_space.types.values.first.methods
|
2018-05-08 18:59:43 +02:00
|
|
|
@label = Label.new("hi","ho")
|
|
|
|
end
|
|
|
|
def test_set_bin
|
2018-05-13 14:28:10 +02:00
|
|
|
pos = Position.set( @binary , 0 , @method)
|
2018-05-10 19:56:12 +02:00
|
|
|
assert_equal Position::CodePosition , pos.class
|
2018-05-08 19:53:48 +02:00
|
|
|
end
|
2018-05-25 18:04:48 +02:00
|
|
|
def test_type
|
|
|
|
pos = Position.set( @binary , 0 , @method)
|
|
|
|
assert_equal "Word_Type" , pos.method.for_type.name
|
|
|
|
end
|
|
|
|
def test_next
|
|
|
|
pos = Position.set( @binary , 0 , @method)
|
|
|
|
type = pos.next_type(pos.method.for_type)
|
|
|
|
assert_equal "Integer_Type" , type.name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class TestPositionTranslated < MiniTest::Test
|
|
|
|
def setup
|
|
|
|
machine = Risc.machine.boot
|
|
|
|
machine.translate(:interpreter)
|
|
|
|
@binary = Parfait::BinaryCode.new(1)
|
|
|
|
@method = Parfait.object_space.types.values.first.methods
|
|
|
|
@label = Label.new("hi","ho")
|
|
|
|
end
|
|
|
|
|
2018-05-09 19:36:49 +02:00
|
|
|
def test_bin_propagates_existing
|
2018-05-08 18:59:43 +02:00
|
|
|
@binary.extend_to(16)
|
2018-05-13 14:28:10 +02:00
|
|
|
Position.set( @binary , 0 , @method)
|
2018-05-08 18:59:43 +02:00
|
|
|
assert_equal @binary.padded_length , Position.get(@binary.next).at
|
|
|
|
end
|
2018-05-09 19:36:49 +02:00
|
|
|
def test_bin_propagates_after
|
|
|
|
Position.set( @binary , 0 , Parfait.object_space.get_main)
|
|
|
|
@binary.extend_to(16)
|
|
|
|
assert_equal @binary.padded_length , Position.get(@binary.next).at
|
|
|
|
end
|
2018-05-08 18:59:43 +02:00
|
|
|
end
|
|
|
|
end
|