2018-02-08 22:02:12 +00:00
|
|
|
package stmt_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-02-13 20:18:07 +00:00
|
|
|
"gotest.tools/assert"
|
|
|
|
|
2018-02-08 22:02:12 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/expr"
|
2018-06-24 07:19:44 +00:00
|
|
|
"github.com/z7zmey/php-parser/position"
|
2018-02-08 22:02:12 +00:00
|
|
|
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
|
|
"github.com/z7zmey/php-parser/node/stmt"
|
|
|
|
"github.com/z7zmey/php-parser/php5"
|
|
|
|
"github.com/z7zmey/php-parser/php7"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestForeach(t *testing.T) {
|
|
|
|
src := `<? foreach ($a as $v) {}`
|
|
|
|
|
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,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 24,
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Foreach{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 24,
|
|
|
|
},
|
|
|
|
Expr: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 12,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 12,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Value: "a",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Variable: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
Value: "v",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Stmt: &stmt.StmtList{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 22,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 24,
|
|
|
|
},
|
|
|
|
Stmts: []node.Node{},
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src), "7.4")
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-08 22:02:12 +00:00
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src), "5.6")
|
2018-04-10 12:23:13 +00:00
|
|
|
php5parser.Parse()
|
|
|
|
actual = php5parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-08 22:02:12 +00:00
|
|
|
}
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
func TestForeachExpr(t *testing.T) {
|
|
|
|
src := `<? foreach ([] as $v) {}`
|
|
|
|
|
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,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 24,
|
|
|
|
},
|
2018-02-12 13:08:08 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Foreach{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 24,
|
|
|
|
},
|
|
|
|
Expr: &expr.ShortArray{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 12,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Items: []node.Node{},
|
|
|
|
},
|
|
|
|
Variable: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
Value: "v",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Stmt: &stmt.StmtList{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 22,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 24,
|
|
|
|
},
|
|
|
|
Stmts: []node.Node{},
|
|
|
|
},
|
2018-02-12 13:08:08 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src), "7.4")
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-12 13:08:08 +00:00
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src), "5.6")
|
2018-04-10 12:23:13 +00:00
|
|
|
php5parser.Parse()
|
|
|
|
actual = php5parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-12 13:08:08 +00:00
|
|
|
}
|
|
|
|
|
2018-02-08 22:02:12 +00:00
|
|
|
func TestAltForeach(t *testing.T) {
|
|
|
|
src := `<? foreach ($a as $v) : endforeach;`
|
|
|
|
|
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,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 35,
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
Stmts: []node.Node{
|
2018-02-18 18:29:33 +00:00
|
|
|
&stmt.AltForeach{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 35,
|
|
|
|
},
|
|
|
|
Expr: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 12,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 12,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Value: "a",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Variable: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
Value: "v",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Stmt: &stmt.StmtList{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: -1,
|
|
|
|
EndLine: -1,
|
|
|
|
StartPos: -1,
|
|
|
|
EndPos: -1,
|
|
|
|
},
|
|
|
|
Stmts: []node.Node{},
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src), "7.4")
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-08 22:02:12 +00:00
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src), "5.6")
|
2018-04-10 12:23:13 +00:00
|
|
|
php5parser.Parse()
|
|
|
|
actual = php5parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-08 22:02:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestForeachWithKey(t *testing.T) {
|
|
|
|
src := `<? foreach ($a as $k => $v) {}`
|
|
|
|
|
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,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 30,
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Foreach{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 30,
|
|
|
|
},
|
|
|
|
Expr: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 12,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 12,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Value: "a",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Key: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
Value: "k",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Variable: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 24,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 26,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 24,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 26,
|
|
|
|
},
|
|
|
|
Value: "v",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Stmt: &stmt.StmtList{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 28,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 30,
|
|
|
|
},
|
|
|
|
Stmts: []node.Node{},
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src), "7.4")
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-08 22:02:12 +00:00
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src), "5.6")
|
2018-04-10 12:23:13 +00:00
|
|
|
php5parser.Parse()
|
|
|
|
actual = php5parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-08 22:02:12 +00:00
|
|
|
}
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
func TestForeachExprWithKey(t *testing.T) {
|
|
|
|
src := `<? foreach ([] as $k => $v) {}`
|
|
|
|
|
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,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 30,
|
|
|
|
},
|
2018-02-12 13:08:08 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Foreach{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 30,
|
|
|
|
},
|
|
|
|
Expr: &expr.ShortArray{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 12,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Items: []node.Node{},
|
|
|
|
},
|
|
|
|
Key: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
Value: "k",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Variable: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 24,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 26,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 24,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 26,
|
|
|
|
},
|
|
|
|
Value: "v",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Stmt: &stmt.StmtList{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 28,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 30,
|
|
|
|
},
|
|
|
|
Stmts: []node.Node{},
|
|
|
|
},
|
2018-02-12 13:08:08 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src), "7.4")
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-12 13:08:08 +00:00
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src), "5.6")
|
2018-04-10 12:23:13 +00:00
|
|
|
php5parser.Parse()
|
|
|
|
actual = php5parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-12 13:08:08 +00:00
|
|
|
}
|
|
|
|
|
2018-02-08 22:02:12 +00:00
|
|
|
func TestForeachWithRef(t *testing.T) {
|
|
|
|
src := `<? foreach ($a as $k => &$v) {}`
|
|
|
|
|
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,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 31,
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Foreach{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 31,
|
|
|
|
},
|
|
|
|
Expr: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 12,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 12,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Value: "a",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Key: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
Value: "k",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Variable: &expr.Reference{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 24,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 27,
|
|
|
|
},
|
|
|
|
Variable: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 25,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 27,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 25,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 27,
|
|
|
|
},
|
|
|
|
Value: "v",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Stmt: &stmt.StmtList{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 29,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 31,
|
|
|
|
},
|
|
|
|
Stmts: []node.Node{},
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src), "7.4")
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-08 22:02:12 +00:00
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src), "5.6")
|
2018-04-10 12:23:13 +00:00
|
|
|
php5parser.Parse()
|
|
|
|
actual = php5parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-08 22:02:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestForeachWithList(t *testing.T) {
|
|
|
|
src := `<? foreach ($a as $k => list($v)) {}`
|
|
|
|
|
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,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 36,
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Foreach{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 36,
|
|
|
|
},
|
|
|
|
Expr: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 12,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 12,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Value: "a",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Key: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 18,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 20,
|
|
|
|
},
|
|
|
|
Value: "k",
|
|
|
|
},
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
Variable: &expr.List{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 24,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 32,
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
Items: []node.Node{
|
|
|
|
&expr.ArrayItem{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 29,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 31,
|
|
|
|
},
|
|
|
|
Val: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 29,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 31,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 29,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 31,
|
|
|
|
},
|
|
|
|
Value: "v",
|
|
|
|
},
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-06-24 07:19:44 +00:00
|
|
|
Stmt: &stmt.StmtList{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 34,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 36,
|
|
|
|
},
|
|
|
|
Stmts: []node.Node{},
|
|
|
|
},
|
2018-02-08 22:02:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src), "7.4")
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-08 22:02:12 +00:00
|
|
|
|
2019-12-26 15:57:56 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src), "5.6")
|
2018-04-10 12:23:13 +00:00
|
|
|
php5parser.Parse()
|
|
|
|
actual = php5parser.GetRootNode()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-08 22:02:12 +00:00
|
|
|
}
|