php-parser/node/stmt/t_alt_if_test.go

160 lines
3.6 KiB
Go
Raw Normal View History

2018-01-12 07:41:08 +00:00
package stmt_test
2018-01-12 07:33:34 +00:00
import (
"bytes"
"reflect"
"testing"
"github.com/z7zmey/php-parser/node/expr"
"github.com/kylelemons/godebug/pretty"
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/node/stmt"
2018-02-08 10:48:38 +00:00
"github.com/z7zmey/php-parser/php5"
2018-02-04 19:44:58 +00:00
"github.com/z7zmey/php-parser/php7"
2018-01-12 07:33:34 +00:00
)
func assertEqual(t *testing.T, expected interface{}, actual interface{}) {
if !reflect.DeepEqual(expected, actual) {
diff := pretty.Compare(expected, actual)
if diff != "" {
t.Errorf("diff: (-expected +actual)\n%s", diff)
} else {
2018-02-08 10:48:38 +00:00
t.Errorf("expected and actual are not equal\nexpectd: %+v\nactual: %+v\n", expected, actual)
2018-01-12 07:33:34 +00:00
}
}
}
func TestAltIf(t *testing.T) {
src := `<?
if ($a) :
endif;
`
expected := &stmt.StmtList{
Stmts: []node.Node{
&stmt.AltIf{
2018-03-18 14:50:19 +00:00
Cond: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
2018-01-12 07:33:34 +00:00
Stmt: &stmt.StmtList{Stmts: []node.Node{}},
},
},
}
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-01-12 07:33:34 +00:00
assertEqual(t, expected, actual)
}
func TestAltElseIf(t *testing.T) {
src := `<?
if ($a) :
elseif ($b):
endif;
`
expected := &stmt.StmtList{
Stmts: []node.Node{
&stmt.AltIf{
2018-03-18 14:50:19 +00:00
Cond: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
2018-01-12 07:33:34 +00:00
Stmt: &stmt.StmtList{Stmts: []node.Node{}},
ElseIf: []node.Node{
&stmt.AltElseIf{
2018-03-18 14:50:19 +00:00
Cond: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-01-12 07:33:34 +00:00
Stmt: &stmt.StmtList{Stmts: []node.Node{}},
},
},
},
},
}
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-01-12 07:33:34 +00:00
assertEqual(t, expected, actual)
}
func TestAltElse(t *testing.T) {
src := `<?
if ($a) :
else:
endif;
`
expected := &stmt.StmtList{
Stmts: []node.Node{
&stmt.AltIf{
2018-03-18 14:50:19 +00:00
Cond: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
2018-01-12 07:33:34 +00:00
Stmt: &stmt.StmtList{Stmts: []node.Node{}},
Else: &stmt.AltElse{
Stmt: &stmt.StmtList{Stmts: []node.Node{}},
},
},
},
}
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-01-12 07:33:34 +00:00
assertEqual(t, expected, actual)
}
func TestAltElseElseIf(t *testing.T) {
src := `<?
if ($a) :
elseif ($b):
elseif ($c):
else:
endif;
`
expected := &stmt.StmtList{
Stmts: []node.Node{
&stmt.AltIf{
2018-03-18 14:50:19 +00:00
Cond: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
2018-01-12 07:33:34 +00:00
Stmt: &stmt.StmtList{Stmts: []node.Node{}},
ElseIf: []node.Node{
&stmt.AltElseIf{
2018-03-18 14:50:19 +00:00
Cond: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-01-12 07:33:34 +00:00
Stmt: &stmt.StmtList{Stmts: []node.Node{}},
},
&stmt.AltElseIf{
2018-03-18 14:50:19 +00:00
Cond: &expr.Variable{VarName: &node.Identifier{Value: "c"}},
2018-01-12 07:33:34 +00:00
Stmt: &stmt.StmtList{Stmts: []node.Node{}},
},
},
Else: &stmt.AltElse{
Stmt: &stmt.StmtList{Stmts: []node.Node{}},
},
},
},
}
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-01-12 07:33:34 +00:00
assertEqual(t, expected, actual)
}