2018-02-10 10:05:41 +00:00
|
|
|
package expr_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
2018-03-30 11:28:50 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/scalar"
|
2018-06-24 07:19:44 +00:00
|
|
|
"github.com/z7zmey/php-parser/position"
|
2018-03-30 11:28:50 +00:00
|
|
|
|
2018-02-10 10:05:41 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/name"
|
|
|
|
|
|
|
|
"github.com/z7zmey/php-parser/node/expr"
|
|
|
|
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
2018-03-30 11:28:50 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/expr/binary"
|
2018-02-10 10:05:41 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/stmt"
|
|
|
|
"github.com/z7zmey/php-parser/php5"
|
|
|
|
"github.com/z7zmey/php-parser/php7"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestFunctionCall(t *testing.T) {
|
|
|
|
src := `<? foo();`
|
|
|
|
|
2018-05-02 09:14:24 +00:00
|
|
|
expected := &node.Root{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 9,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 9,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Expr: &expr.FunctionCall{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 8,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Function: &name.Name{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 6,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Parts: []node.Node{
|
2018-06-24 07:19:44 +00:00
|
|
|
&name.NamePart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 6,
|
|
|
|
},
|
|
|
|
Value: "foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ArgumentList: &node.ArgumentList{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 7,
|
|
|
|
EndPos: 8,
|
2018-02-10 10:05:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2018-02-10 10:05:41 +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-02-10 10:05:41 +00:00
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFunctionCallRelative(t *testing.T) {
|
|
|
|
src := `<? namespace\foo();`
|
|
|
|
|
2018-05-02 09:14:24 +00:00
|
|
|
expected := &node.Root{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 19,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 19,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Expr: &expr.FunctionCall{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 18,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Function: &name.Relative{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 16,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Parts: []node.Node{
|
2018-06-24 07:19:44 +00:00
|
|
|
&name.NamePart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 14,
|
|
|
|
EndPos: 16,
|
|
|
|
},
|
|
|
|
Value: "foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ArgumentList: &node.ArgumentList{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 17,
|
|
|
|
EndPos: 18,
|
2018-02-10 10:05:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2018-02-10 10:05:41 +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-02-10 10:05:41 +00:00
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFunctionFullyQualified(t *testing.T) {
|
2018-02-12 21:10:53 +00:00
|
|
|
src := `<? \foo([]);`
|
2018-02-10 10:05:41 +00:00
|
|
|
|
2018-05-02 09:14:24 +00:00
|
|
|
expected := &node.Root{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 12,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 12,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Expr: &expr.FunctionCall{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 11,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Function: &name.FullyQualified{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 7,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Parts: []node.Node{
|
2018-06-24 07:19:44 +00:00
|
|
|
&name.NamePart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 5,
|
|
|
|
EndPos: 7,
|
|
|
|
},
|
|
|
|
Value: "foo",
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
},
|
|
|
|
},
|
2018-04-29 16:58:49 +00:00
|
|
|
ArgumentList: &node.ArgumentList{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 8,
|
|
|
|
EndPos: 11,
|
|
|
|
},
|
2018-04-29 16:58:49 +00:00
|
|
|
Arguments: []node.Node{
|
|
|
|
&node.Argument{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 9,
|
|
|
|
EndPos: 10,
|
|
|
|
},
|
2018-04-29 16:58:49 +00:00
|
|
|
Variadic: false,
|
|
|
|
IsReference: false,
|
|
|
|
Expr: &expr.ShortArray{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 9,
|
|
|
|
EndPos: 10,
|
|
|
|
},
|
2018-04-29 16:58:49 +00:00
|
|
|
Items: []node.Node{},
|
|
|
|
},
|
2018-02-12 21:10:53 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2018-02-10 10:05:41 +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-02-10 10:05:41 +00:00
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFunctionCallVar(t *testing.T) {
|
2018-02-12 21:10:53 +00:00
|
|
|
src := `<? $foo(yield $a);`
|
2018-02-10 10:05:41 +00:00
|
|
|
|
2018-05-02 09:14:24 +00:00
|
|
|
expected := &node.Root{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 18,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 18,
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
Expr: &expr.FunctionCall{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 17,
|
|
|
|
},
|
|
|
|
Function: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 7,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 7,
|
|
|
|
},
|
|
|
|
Value: "foo",
|
|
|
|
},
|
|
|
|
},
|
2018-04-29 16:58:49 +00:00
|
|
|
ArgumentList: &node.ArgumentList{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 8,
|
|
|
|
EndPos: 17,
|
|
|
|
},
|
2018-04-29 16:58:49 +00:00
|
|
|
Arguments: []node.Node{
|
|
|
|
&node.Argument{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 9,
|
|
|
|
EndPos: 16,
|
|
|
|
},
|
2018-04-29 16:58:49 +00:00
|
|
|
Variadic: false,
|
|
|
|
IsReference: false,
|
|
|
|
Expr: &expr.Yield{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 9,
|
|
|
|
EndPos: 16,
|
|
|
|
},
|
|
|
|
Value: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 15,
|
|
|
|
EndPos: 16,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 15,
|
|
|
|
EndPos: 16,
|
|
|
|
},
|
|
|
|
Value: "a",
|
|
|
|
},
|
|
|
|
},
|
2018-04-29 16:58:49 +00:00
|
|
|
},
|
2018-02-12 21:10:53 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-02-10 10:05:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2018-02-10 10:05:41 +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-02-10 10:05:41 +00:00
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
2018-03-30 11:28:50 +00:00
|
|
|
|
|
|
|
func TestFunctionCallExprArg(t *testing.T) {
|
|
|
|
src := `<? ceil($foo/3);`
|
|
|
|
|
2018-05-02 09:14:24 +00:00
|
|
|
expected := &node.Root{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 16,
|
|
|
|
},
|
2018-03-30 11:28:50 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 16,
|
|
|
|
},
|
2018-03-30 11:28:50 +00:00
|
|
|
Expr: &expr.FunctionCall{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 15,
|
|
|
|
},
|
2018-03-30 11:28:50 +00:00
|
|
|
Function: &name.Name{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 7,
|
|
|
|
},
|
2018-03-30 11:28:50 +00:00
|
|
|
Parts: []node.Node{
|
2018-06-24 07:19:44 +00:00
|
|
|
&name.NamePart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 7,
|
|
|
|
},
|
|
|
|
Value: "ceil",
|
|
|
|
},
|
2018-03-30 11:28:50 +00:00
|
|
|
},
|
|
|
|
},
|
2018-04-29 16:58:49 +00:00
|
|
|
ArgumentList: &node.ArgumentList{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 8,
|
|
|
|
EndPos: 15,
|
|
|
|
},
|
2018-04-29 16:58:49 +00:00
|
|
|
Arguments: []node.Node{
|
|
|
|
&node.Argument{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 9,
|
|
|
|
EndPos: 14,
|
|
|
|
},
|
2018-04-29 16:58:49 +00:00
|
|
|
Variadic: false,
|
|
|
|
IsReference: false,
|
|
|
|
Expr: &binary.Div{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 9,
|
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Left: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 9,
|
|
|
|
EndPos: 12,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 9,
|
|
|
|
EndPos: 12,
|
|
|
|
},
|
|
|
|
Value: "foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Right: &scalar.Lnumber{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 14,
|
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Value: "3",
|
|
|
|
},
|
2018-04-29 16:58:49 +00:00
|
|
|
},
|
2018-03-30 11:28:50 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2018-03-30 11:28:50 +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-03-30 11:28:50 +00:00
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|