2017-04-13 14:14:43 +03:00
|
|
|
require_relative "helper"
|
|
|
|
|
2019-10-04 00:36:49 +03:00
|
|
|
module Sol
|
2019-10-03 20:55:41 +03:00
|
|
|
class TestAssignSlotMachine < MiniTest::Test
|
2019-10-04 00:36:49 +03:00
|
|
|
include SolCompile
|
2017-04-13 14:14:43 +03:00
|
|
|
|
|
|
|
def setup
|
2019-09-12 13:10:31 +03:00
|
|
|
@compiler = compile_main( "local = 5;return")
|
2019-10-03 20:55:41 +03:00
|
|
|
@ins = @compiler.slot_instructions.next
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_compiles
|
2019-10-03 20:55:41 +03:00
|
|
|
assert_equal SlotMachine::SlotLoad , @ins.class , @ins
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
|
|
|
def test_slot_is_set
|
2018-03-18 22:38:49 +05:30
|
|
|
assert @ins.left
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
|
|
|
def test_slot_starts_at_message
|
2018-03-18 22:38:49 +05:30
|
|
|
assert_equal :message , @ins.left.known_object
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
2019-08-23 10:21:22 +03:00
|
|
|
def test_slot_gets_local
|
2020-02-17 14:27:42 +07:00
|
|
|
assert_equal :local1 , @ins.left.slots.name
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
|
|
|
def test_slot_assigns_something
|
2018-03-18 22:38:49 +05:30
|
|
|
assert @ins.right
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
|
|
|
def test_slot_assigns_int
|
2019-10-03 20:55:41 +03:00
|
|
|
assert_equal SlotMachine::IntegerConstant , @ins.right.known_object.class
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-15 20:55:23 +05:30
|
|
|
#otherwise as above, but assigning instance, so should get a SlotLoad
|
2019-10-03 20:55:41 +03:00
|
|
|
class TestAssignSlotMachineInstanceToLocal < MiniTest::Test
|
2019-10-04 00:36:49 +03:00
|
|
|
include SolCompile
|
2017-09-10 13:04:36 +03:00
|
|
|
def setup
|
2019-09-12 13:10:31 +03:00
|
|
|
@compiler = compile_main( "@a = 5 ; local = @a;return")
|
2019-10-03 20:55:41 +03:00
|
|
|
@ins = @compiler.slot_instructions.next
|
2017-09-10 13:04:36 +03:00
|
|
|
end
|
|
|
|
def test_class_compiles
|
2019-10-03 20:55:41 +03:00
|
|
|
assert_equal SlotMachine::SlotLoad , @ins.next.class , @ins
|
2017-09-10 13:04:36 +03:00
|
|
|
end
|
|
|
|
end
|
2017-09-10 13:33:32 +03:00
|
|
|
|
2017-04-13 14:14:43 +03:00
|
|
|
#compiling to an argument should result in different second parameter in the slot array
|
2017-09-10 13:33:32 +03:00
|
|
|
class TestAssignToArg < MiniTest::Test
|
2019-10-04 00:36:49 +03:00
|
|
|
include SolCompile
|
2017-04-13 14:14:43 +03:00
|
|
|
|
|
|
|
def setup
|
2019-09-12 13:10:31 +03:00
|
|
|
@compiler = compile_main( "arg = 5;return")
|
2019-10-03 20:55:41 +03:00
|
|
|
@ins = @compiler.slot_instructions.next
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_compiles
|
2019-10-03 20:55:41 +03:00
|
|
|
assert_equal SlotMachine::SlotLoad , @ins.class , @ins
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
|
|
|
def test_slot_is_set
|
2018-03-18 22:38:49 +05:30
|
|
|
assert @ins.left
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
|
|
|
def test_slot_starts_at_message
|
2018-03-18 22:38:49 +05:30
|
|
|
assert_equal :message , @ins.left.known_object
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
2019-08-22 21:24:02 +03:00
|
|
|
def test_slot_gets_arg
|
2020-02-17 14:27:42 +07:00
|
|
|
assert_equal :arg1 , @ins.left.slots.name
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
2017-09-10 13:33:32 +03:00
|
|
|
end
|
|
|
|
|
2019-10-03 20:55:41 +03:00
|
|
|
class TestAssignSlotMachineToInstance < MiniTest::Test
|
2019-10-04 00:36:49 +03:00
|
|
|
include SolCompile
|
2017-09-10 13:33:32 +03:00
|
|
|
def setup
|
2019-02-08 23:03:23 +02:00
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
2017-09-10 13:33:32 +03:00
|
|
|
def test_assigns_const
|
2019-09-12 13:10:31 +03:00
|
|
|
@compiler = compile_main( "@a = 5;return")
|
2019-10-03 20:55:41 +03:00
|
|
|
@ins = @compiler.slot_instructions.next
|
|
|
|
assert_equal SlotMachine::SlotLoad , @ins.class , @ins
|
|
|
|
assert_equal SlotMachine::IntegerConstant , @ins.right.known_object.class , @ins
|
2017-09-10 13:33:32 +03:00
|
|
|
end
|
|
|
|
def test_assigns_move
|
2019-09-12 13:10:31 +03:00
|
|
|
@compiler = compile_main( "@a = arg;return")
|
2019-10-03 20:55:41 +03:00
|
|
|
@ins = @compiler.slot_instructions.next
|
|
|
|
assert_equal SlotMachine::SlotLoad , @ins.class , @ins
|
2020-02-15 21:02:03 +07:00
|
|
|
assert_equal SlotMachine::SlottedMessage , @ins.right.class , @ins
|
2017-04-13 14:14:43 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|