moves the function call tests to new model

This commit is contained in:
Torsten Ruger 2014-04-29 16:36:29 +03:00
parent 1af45334b7
commit 76055575a1
4 changed files with 32 additions and 49 deletions

View File

@ -0,0 +1,32 @@
require_relative "helper"
class TestFunctionCall < MiniTest::Test
# include the magic (setup and parse -> test method translation), see there
include ParserHelper
def test_single_argument
@string_input = 'foo(42)'
@parse_output = {:function_call => {:name => 'foo'},
:argument_list => [{:argument => {:integer => '42'} }] }
@transform_output = Parser::FuncallExpression.new 'foo', [Parser::IntegerExpression.new(42)]
end
def test_function_call_multi
@string_input = 'baz(42, foo)'
@parse_output = {:function_call => {:name => 'baz' },
:argument_list => [{:argument => {:integer => '42'}},
{:argument => {:name => 'foo'}}]}
@transform_output = Parser::FuncallExpression.new 'baz',
[Parser::IntegerExpression.new(42), Parser::NameExpression.new("foo") ]
@parser = @parser.function_call
end
def test_function_call_string
@string_input = 'puts( "hello")'
@parse_output = {:function_call => {:name => 'puts' },
:argument_list => [{:argument => {:string => 'hello'}}]}
@transform_output = Parser::FuncallExpression.new "puts", [Parser::StringExpression.new("hello")]
@parser = @parser.function_call
end
end

View File

@ -18,15 +18,6 @@ class TestAst < MiniTest::Test
assert_equal @transform_output , tree
end
def test_function_call
@string_input = 'baz(42, foo)'
@transform_output = Parser::FuncallExpression.new 'baz', [Parser::IntegerExpression.new(42),
Parser::NameExpression.new('foo')]
@parser = @parser.function_call
check
end
def test_expression_else
@string_input = <<HERE
4

View File

@ -32,28 +32,6 @@ class ParserTest < MiniTest::Test
assert_equal @parse_output , is
end
def test_function_call
@string_input = 'baz(42, foo)'
@parse_output = {:function_call => {:name => 'baz' },
:argument_list => [{:argument => {:integer => '42'}},
{:argument => {:name => 'foo'}}]}
@parser = @parser.function_call
check
end
def test_function_call_string
@string_input = <<HERE
puts( "hello")
HERE
@parse_output = {:function_call => {:name => 'baz' },
:argument_list => [{:argument => {:integer => '42'}},
{:argument => {:name => 'foo'}}]}
@parser = @parser.function_call
check
end
def test_expression_else
@string_input = <<HERE
4

View File

@ -14,24 +14,6 @@ class TransformTest < MiniTest::Test
assert_equal @transform_output , is
end
def test_single_argument
@input = {:function_call => {:name => 'foo'},
:argument_list => {:argument => {:integer => '42'} } }
@transform_output = Parser::FuncallExpression.new 'foo', [Parser::IntegerExpression.new(42)]
check
end
def test_multi_argument
@input = {:function_call => {:name => 'baz'},
:argument_list => [{:argument => {:integer => '42'}},
{:argument => {:name => 'foo'}}]}
@transform_output = Parser::FuncallExpression.new 'baz', [Parser::IntegerExpression.new(42),
Parser::NameExpression.new('foo')]
check
end
def test_conditional
@input = { :conditional => { :integer => "0"},
:if_true => { :expressions => [ { :integer => "42" } ] } ,