2017-04-02 18:13:14 +02:00
|
|
|
require_relative "helper"
|
2017-04-02 12:24:09 +02:00
|
|
|
|
2018-07-19 13:46:51 +02:00
|
|
|
module Ruby
|
2018-07-19 15:30:36 +02:00
|
|
|
class TestVariables < MiniTest::Test
|
2018-06-29 21:46:39 +02:00
|
|
|
include RubyTests
|
2017-04-02 12:24:09 +02:00
|
|
|
|
|
|
|
# "free standing" local can not be tested as it will result in send
|
2018-07-19 15:30:36 +02:00
|
|
|
# in other words there is no way of knowing if a name is variable or method
|
2017-04-05 13:03:36 +02:00
|
|
|
# one needs an assignemnt first, to "tell" the parser it's a local
|
|
|
|
def test_local_basic
|
2018-06-29 21:46:39 +02:00
|
|
|
lst = compile( "foo = 1 ; foo")
|
2017-04-05 13:03:36 +02:00
|
|
|
assert_equal ScopeStatement , lst.class
|
|
|
|
assert_equal LocalVariable , lst.statements[1].class
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_local_nane
|
2018-06-29 21:46:39 +02:00
|
|
|
lst = compile( "foo = 1 ; foo")
|
2017-04-05 13:03:36 +02:00
|
|
|
assert_equal LocalVariable , lst.statements[1].class
|
|
|
|
end
|
2017-04-02 12:24:09 +02:00
|
|
|
|
2017-04-04 13:04:35 +02:00
|
|
|
def test_instance_basic
|
2018-06-29 21:46:39 +02:00
|
|
|
lst = compile( "@var" )
|
2017-04-04 13:04:35 +02:00
|
|
|
assert_equal InstanceVariable , lst.class
|
|
|
|
assert_equal :var , lst.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_instance_return
|
2018-06-29 21:46:39 +02:00
|
|
|
lst = compile( "return @var" )
|
2017-04-04 13:04:35 +02:00
|
|
|
assert_equal InstanceVariable , lst.return_value.class
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_basic
|
2018-06-29 21:46:39 +02:00
|
|
|
lst = compile( "@@var" )
|
2017-04-04 13:04:35 +02:00
|
|
|
assert_equal ClassVariable , lst.class
|
|
|
|
assert_equal :var , lst.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_return
|
2018-06-29 21:46:39 +02:00
|
|
|
lst = compile( "return @@var" )
|
2017-04-04 13:04:35 +02:00
|
|
|
assert_equal ClassVariable , lst.return_value.class
|
|
|
|
end
|
2017-04-04 17:00:21 +02:00
|
|
|
|
|
|
|
def test_module_basic
|
2018-06-29 21:46:39 +02:00
|
|
|
lst = compile( "Module" )
|
2017-04-04 17:00:21 +02:00
|
|
|
assert_equal ModuleName , lst.class
|
|
|
|
assert_equal :Module , lst.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_module_base_scoped
|
2018-06-29 21:46:39 +02:00
|
|
|
lst = compile( "::Module" )
|
2017-04-04 17:00:21 +02:00
|
|
|
assert_equal ModuleName , lst.class
|
|
|
|
assert_equal :Module , lst.name
|
|
|
|
end
|
|
|
|
def test_module_module_scoped
|
2018-06-29 21:46:39 +02:00
|
|
|
assert_raises {compile( "M::Module" ) }
|
2017-04-04 17:00:21 +02:00
|
|
|
end
|
2017-04-02 12:24:09 +02:00
|
|
|
end
|
2018-07-20 13:22:26 +02:00
|
|
|
class TestVariablesVool < MiniTest::Test
|
|
|
|
include RubyTests
|
|
|
|
def test_local_basic
|
|
|
|
lst = compile( "foo = 1 ; foo").to_vool
|
|
|
|
assert_equal Vool::LocalVariable , lst.statements[1].class
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_instance_basic
|
|
|
|
lst = compile( "@var" ).to_vool
|
|
|
|
assert_equal Vool::InstanceVariable , lst.class
|
|
|
|
assert_equal :var , lst.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_instance_return
|
|
|
|
lst = compile( "return @var" ).to_vool
|
2018-07-20 19:06:14 +02:00
|
|
|
assert_equal Vool::InstanceVariable , lst.return_value.class
|
2018-07-20 13:22:26 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_basic
|
|
|
|
lst = compile( "@@var" ).to_vool
|
|
|
|
assert_equal Vool::ClassVariable , lst.class
|
|
|
|
assert_equal :var , lst.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_return
|
|
|
|
lst = compile( "return @@var" ).to_vool
|
2018-07-20 19:06:14 +02:00
|
|
|
assert_equal Vool::ClassVariable , lst.return_value.class
|
2018-07-20 13:22:26 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_module_basic
|
|
|
|
lst = compile( "Module" ).to_vool
|
|
|
|
assert_equal Vool::ModuleName , lst.class
|
|
|
|
assert_equal :Module , lst.name
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2017-04-02 12:24:09 +02:00
|
|
|
end
|