2019-02-23 17:17:26 +01:00
|
|
|
require_relative "helper"
|
|
|
|
|
2019-10-03 23:36:49 +02:00
|
|
|
module Sol
|
2019-02-23 17:17:26 +01:00
|
|
|
class TestClassDef < MiniTest::Test
|
2019-10-03 19:55:41 +02:00
|
|
|
include SlotMachine
|
2019-10-03 23:36:49 +02:00
|
|
|
include SolCompile
|
2019-09-18 21:07:58 +02:00
|
|
|
|
2019-02-23 17:17:26 +01:00
|
|
|
def class_main
|
|
|
|
<<-eos
|
|
|
|
class Space
|
|
|
|
def self.one_plus()
|
|
|
|
return 1 + 1
|
|
|
|
end
|
|
|
|
def main(arg)
|
|
|
|
return Space.one_plus
|
|
|
|
end
|
|
|
|
end
|
|
|
|
eos
|
|
|
|
end
|
|
|
|
|
|
|
|
def setup
|
2019-09-24 16:25:19 +02:00
|
|
|
source = "class Integer<Data4;def +(other);X.int_operator(:+);end;end;" + class_main
|
2019-10-03 19:55:41 +02:00
|
|
|
ret = RubyX::RubyXCompiler.new(RubyX.default_test_options).ruby_to_slot(source)
|
|
|
|
@ins = ret.compilers.find_compiler_name(:main).slot_instructions.next
|
2019-02-23 17:17:26 +01:00
|
|
|
end
|
2019-09-18 21:07:58 +02:00
|
|
|
def test_array
|
|
|
|
check_array [MessageSetup,ArgumentTransfer,SimpleCall,SlotLoad,
|
|
|
|
ReturnJump,Label, ReturnSequence , Label] , @ins
|
|
|
|
end
|
2019-02-23 17:17:26 +01:00
|
|
|
|
|
|
|
def test_any
|
2019-10-03 19:55:41 +02:00
|
|
|
assert_equal SlotMachine::MessageSetup , @ins.class
|
2019-02-23 17:17:26 +01:00
|
|
|
end
|
|
|
|
def test_no_arg
|
2019-10-03 19:55:41 +02:00
|
|
|
assert_equal SlotMachine::ArgumentTransfer, @ins.next(1).class
|
2019-09-12 21:27:10 +02:00
|
|
|
assert_equal 0, @ins.next(1).arguments.length
|
2019-02-23 17:17:26 +01:00
|
|
|
end
|
|
|
|
def test_call_two
|
|
|
|
assert_equal SimpleCall, @ins.next(2).class
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|