2014-04-29 15:47:33 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
2014-04-29 16:02:38 +02:00
|
|
|
class TestConditional < MiniTest::Test
|
2014-04-29 15:47:33 +02:00
|
|
|
# include the magic (setup and parse -> test method translation), see there
|
|
|
|
include ParserHelper
|
|
|
|
|
|
|
|
def test_conditional
|
|
|
|
@string_input = <<HERE
|
2014-05-08 18:49:15 +02:00
|
|
|
if(0)
|
2014-04-29 15:47:33 +02:00
|
|
|
42
|
|
|
|
else
|
|
|
|
667
|
|
|
|
end
|
|
|
|
HERE
|
|
|
|
@parse_output = { :conditional => { :integer => "0"},
|
|
|
|
:if_true => { :expressions => [ { :integer => "42" } ] } ,
|
|
|
|
:if_false => { :expressions => [ { :integer => "667" } ] } }
|
2014-05-05 08:51:16 +02:00
|
|
|
@transform_output = Ast::ConditionalExpression.new( Ast::IntegerExpression.new(0),
|
|
|
|
[Ast::IntegerExpression.new(42)], [Ast::IntegerExpression.new(667)])
|
2014-04-29 15:47:33 +02:00
|
|
|
|
|
|
|
@parser = @parser.conditional
|
|
|
|
end
|
2014-05-10 18:02:51 +02:00
|
|
|
|
|
|
|
def test_while
|
|
|
|
@string_input = <<HERE
|
|
|
|
while 1 do
|
|
|
|
tmp = a
|
|
|
|
a = b
|
|
|
|
end
|
|
|
|
HERE
|
|
|
|
#go in there
|
|
|
|
# b = tmp + b
|
|
|
|
# puts(b)
|
|
|
|
# n = n - 1
|
|
|
|
|
|
|
|
@parse_output = {:while=>"while", :while_cond=>{:integer=>"1"}, :do=>"do", :body=>{:expressions=>[{:asignee=>{:name=>"tmp"}, :asigned=>{:name=>"a"}}, {:asignee=>{:name=>"a"}, :asigned=>{:name=>"b"}}]}}
|
|
|
|
@transform_output = Ast::WhileExpression.new(
|
|
|
|
Ast::IntegerExpression.new(1),
|
2014-05-10 18:11:32 +02:00
|
|
|
[Ast::AssignmentExpression.new(Ast::NameExpression.new("tmp"),
|
|
|
|
Ast::NameExpression.new("a")),
|
|
|
|
Ast::AssignmentExpression.new(Ast::NameExpression.new("a"), Ast::NameExpression.new("b"))] )
|
2014-05-10 18:02:51 +02:00
|
|
|
@parser = @parser.while
|
|
|
|
end
|
2014-04-29 15:47:33 +02:00
|
|
|
end
|