2014-04-29 15:57:36 +02:00
|
|
|
require_relative "helper"
|
2014-04-24 14:43:20 +02:00
|
|
|
|
2014-04-29 15:57:36 +02:00
|
|
|
class TestFunctionDefinition < MiniTest::Test
|
|
|
|
# include the magic (setup and parse -> test method translation), see there
|
|
|
|
include ParserHelper
|
2014-04-27 20:12:42 +02:00
|
|
|
|
2014-04-29 15:57:36 +02:00
|
|
|
def test_simplest_function
|
|
|
|
@string_input = <<HERE
|
|
|
|
def foo(x)
|
|
|
|
5
|
|
|
|
end
|
|
|
|
HERE
|
2014-05-11 17:38:02 +02:00
|
|
|
@parse_output = {:function_definition=>{:name=>"foo"},
|
|
|
|
:parmeter_list=>[{:parmeter=>{:name=>"x"}}], :expressions=>[{:integer=>"5"}], :end=>"end"}
|
2014-05-05 08:51:16 +02:00
|
|
|
@transform_output = Ast::FunctionExpression.new('foo',
|
|
|
|
[Ast::NameExpression.new('x')],
|
|
|
|
[Ast::IntegerExpression.new(5)])
|
2014-05-10 10:18:39 +02:00
|
|
|
@parser = @parser.function_definition
|
2014-04-28 21:07:35 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_function_assignment
|
2014-04-29 15:57:36 +02:00
|
|
|
@string_input = <<HERE
|
|
|
|
def foo(x)
|
|
|
|
abba = 5
|
|
|
|
end
|
|
|
|
HERE
|
2014-05-11 17:38:02 +02:00
|
|
|
@parse_output = {:function_definition=>{:name=>"foo"},
|
|
|
|
:parmeter_list=>[{:parmeter=>{:name=>"x"}}],
|
|
|
|
:expressions=>[{:l=>{:name=>"abba"}, :o=>"= ", :r=>{:integer=>"5"}}], :end=>"end"}
|
|
|
|
@transform_output = Ast::FunctionExpression.new(:foo, [Ast::NameExpression.new("x")] , [Ast::OperatorExpression.new("=", Ast::NameExpression.new("abba"),Ast::IntegerExpression.new(5))] )
|
2014-05-10 10:18:39 +02:00
|
|
|
@parser = @parser.function_definition
|
2014-04-28 20:21:12 +02:00
|
|
|
end
|
|
|
|
|
2014-05-12 11:14:04 +02:00
|
|
|
def test_function_if
|
2014-05-10 18:02:51 +02:00
|
|
|
@string_input = <<HERE
|
2014-05-12 11:14:04 +02:00
|
|
|
def ofthen(n)
|
|
|
|
if(0)
|
|
|
|
42
|
|
|
|
else
|
|
|
|
667
|
2014-05-10 18:02:51 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
HERE
|
2014-05-12 11:14:04 +02:00
|
|
|
@parse_output = {:function_definition=>{:name=>"ofthen"},
|
|
|
|
:parmeter_list=>[{:parmeter=>{:name=>"n"}}],
|
|
|
|
:expressions=>[
|
|
|
|
{:if=>"if", :conditional=>{:integer=>"0"},
|
|
|
|
:if_true=>{:expressions=>[{:integer=>"42"}],
|
|
|
|
:else=>"else"},
|
|
|
|
:if_false=>{:expressions=>[{:integer=>"667"}], :end=>"end"}}], :end=>"end"}
|
|
|
|
@transform_output = Ast::FunctionExpression.new(:ofthen,
|
|
|
|
[Ast::NameExpression.new("n")] ,
|
|
|
|
[Ast::ConditionalExpression.new(Ast::IntegerExpression.new(0),
|
|
|
|
[Ast::IntegerExpression.new(42)],[Ast::IntegerExpression.new(667)] )] )
|
|
|
|
@parser = @parser.function_definition
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_function_while
|
|
|
|
@string_input = <<HERE
|
|
|
|
def fibonaccit(n)
|
|
|
|
a = 0
|
|
|
|
while n do
|
|
|
|
1
|
|
|
|
end
|
|
|
|
HERE
|
|
|
|
@parse_output = nil
|
2014-05-11 17:38:02 +02:00
|
|
|
@transform_output = nil
|
2014-05-10 18:02:51 +02:00
|
|
|
@parser = @parser.function_definition
|
|
|
|
end
|
2014-04-29 15:57:36 +02:00
|
|
|
end
|