2017-04-12 10:53:02 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
2019-10-03 23:36:49 +02:00
|
|
|
module Sol
|
2019-10-03 19:55:41 +02:00
|
|
|
class TestLocalSlotMachine < MiniTest::Test
|
2019-10-03 23:36:49 +02:00
|
|
|
include SolCompile
|
2017-04-12 10:53:02 +02:00
|
|
|
|
|
|
|
def setup
|
2019-09-12 12:10:31 +02:00
|
|
|
@compiler = compile_main( "a = 5")
|
2019-10-03 19:55:41 +02:00
|
|
|
@ins = @compiler.slot_instructions.next
|
2017-04-12 10:53:02 +02:00
|
|
|
end
|
|
|
|
|
2017-09-07 07:17:13 +02:00
|
|
|
def test_compiles_not_array
|
2018-03-15 16:26:27 +01:00
|
|
|
assert Array != @ins.class , @ins
|
2017-09-07 07:17:13 +02:00
|
|
|
end
|
2017-04-12 10:53:02 +02:00
|
|
|
def test_class_compiles
|
2019-10-03 19:55:41 +02:00
|
|
|
assert_equal SlotMachine::SlotLoad , @ins.class , @ins
|
2017-04-12 13:45:02 +02:00
|
|
|
end
|
|
|
|
def test_slot_is_set
|
2018-03-15 16:26:27 +01:00
|
|
|
assert @ins.left
|
2017-04-12 13:45:02 +02:00
|
|
|
end
|
|
|
|
def test_slot_starts_at_message
|
2018-03-15 16:26:27 +01:00
|
|
|
assert_equal :message , @ins.left.known_object
|
2017-04-12 13:45:02 +02:00
|
|
|
end
|
2019-08-23 09:21:22 +02:00
|
|
|
def test_slot_gets_local
|
2020-02-17 08:27:42 +01:00
|
|
|
assert_equal :local1 , @ins.left.slots.name
|
2017-04-12 13:45:02 +02:00
|
|
|
end
|
|
|
|
def test_slot_assigns_something
|
2018-03-15 16:26:27 +01:00
|
|
|
assert @ins.right
|
2017-04-12 13:45:02 +02:00
|
|
|
end
|
|
|
|
def test_slot_assigns_int
|
2019-10-03 19:55:41 +02:00
|
|
|
assert_equal SlotMachine::IntegerConstant , @ins.right.known_object.class
|
2017-04-12 10:53:02 +02:00
|
|
|
end
|
|
|
|
end
|
2019-08-22 20:24:02 +02:00
|
|
|
|
2019-10-03 19:55:41 +02:00
|
|
|
class TestArgSlotMachine < MiniTest::Test
|
2019-10-03 23:36:49 +02:00
|
|
|
include SolCompile
|
2019-08-22 20:24:02 +02:00
|
|
|
|
|
|
|
def setup
|
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
2019-09-12 12:10:31 +02:00
|
|
|
@compiler = compile_main( "arg = 5")
|
2019-10-03 19:55:41 +02:00
|
|
|
@ins = @compiler.slot_instructions.next
|
2019-08-22 20:24:02 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_compiles
|
2019-10-03 19:55:41 +02:00
|
|
|
assert_equal SlotMachine::SlotLoad , @ins.class , @ins
|
2019-08-22 20:24:02 +02:00
|
|
|
end
|
|
|
|
def test_slot_is_set
|
|
|
|
assert @ins.left
|
|
|
|
end
|
|
|
|
def test_slot_starts_at_message
|
|
|
|
assert_equal :message , @ins.left.known_object
|
|
|
|
end
|
|
|
|
def test_slot_gets_arg
|
2020-02-17 08:27:42 +01:00
|
|
|
assert_equal :arg1 , @ins.left.slots.name
|
2019-08-22 20:24:02 +02:00
|
|
|
end
|
|
|
|
def test_slot_assigns_something
|
|
|
|
assert @ins.right
|
|
|
|
end
|
|
|
|
def test_slot_assigns_int
|
2019-10-03 19:55:41 +02:00
|
|
|
assert_equal SlotMachine::IntegerConstant , @ins.right.known_object.class
|
2019-08-22 20:24:02 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-12 10:53:02 +02:00
|
|
|
end
|