2018-01-12 07:41:08 +00:00
|
|
|
package scalar_test
|
2018-01-06 14:05:48 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-02-13 20:18:07 +00:00
|
|
|
"gotest.tools/assert"
|
|
|
|
|
2018-01-06 14:05:48 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/expr"
|
2018-06-24 07:19:44 +00:00
|
|
|
"github.com/z7zmey/php-parser/position"
|
2018-01-06 14:05:48 +00:00
|
|
|
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
|
|
"github.com/z7zmey/php-parser/node/scalar"
|
|
|
|
"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-06 14:05:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSimpleVar(t *testing.T) {
|
|
|
|
src := `<? "test $var";`
|
|
|
|
|
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: 15,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
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: 15,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Expr: &scalar.Encapsed{
|
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: 14,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Parts: []node.Node{
|
2018-06-24 07:19:44 +00:00
|
|
|
&scalar.EncapsedStringPart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 4,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 9,
|
|
|
|
},
|
|
|
|
Value: "test ",
|
|
|
|
},
|
|
|
|
&expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 9,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 13,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 9,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 13,
|
|
|
|
},
|
|
|
|
Value: "var",
|
|
|
|
},
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-01-06 14:05:48 +00:00
|
|
|
}
|
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src))
|
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-01-06 14:05:48 +00:00
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src))
|
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-01-06 14:05:48 +00:00
|
|
|
}
|
|
|
|
|
2018-03-30 09:17:25 +00:00
|
|
|
func TestSimpleVarOneChar(t *testing.T) {
|
|
|
|
src := `<? "test $a";`
|
|
|
|
|
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: 13,
|
|
|
|
},
|
2018-03-30 09:17:25 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
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: 13,
|
|
|
|
},
|
2018-03-30 09:17:25 +00:00
|
|
|
Expr: &scalar.Encapsed{
|
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: 12,
|
|
|
|
},
|
2018-03-30 09:17:25 +00:00
|
|
|
Parts: []node.Node{
|
2018-06-24 07:19:44 +00:00
|
|
|
&scalar.EncapsedStringPart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 4,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 9,
|
|
|
|
},
|
|
|
|
Value: "test ",
|
|
|
|
},
|
|
|
|
&expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 9,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 11,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 9,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 11,
|
|
|
|
},
|
|
|
|
Value: "a",
|
|
|
|
},
|
|
|
|
},
|
2018-03-30 09:17:25 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src))
|
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-03-30 09:17:25 +00:00
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src))
|
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-03-30 09:17:25 +00:00
|
|
|
}
|
|
|
|
|
2018-03-29 13:46:21 +00:00
|
|
|
func TestSimpleVarEndsEcapsed(t *testing.T) {
|
|
|
|
src := `<? "test $var\"";`
|
|
|
|
|
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: 17,
|
|
|
|
},
|
2018-03-29 13:46:21 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
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: 17,
|
|
|
|
},
|
2018-03-29 13:46:21 +00:00
|
|
|
Expr: &scalar.Encapsed{
|
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: 16,
|
|
|
|
},
|
2018-03-29 13:46:21 +00:00
|
|
|
Parts: []node.Node{
|
2018-06-24 07:19:44 +00:00
|
|
|
&scalar.EncapsedStringPart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 4,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 9,
|
|
|
|
},
|
|
|
|
Value: "test ",
|
|
|
|
},
|
|
|
|
&expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 9,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 13,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 9,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 13,
|
|
|
|
},
|
|
|
|
Value: "var",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&scalar.EncapsedStringPart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 13,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 15,
|
|
|
|
},
|
|
|
|
Value: "\\\"",
|
|
|
|
},
|
2018-03-29 13:46:21 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src))
|
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-03-29 13:46:21 +00:00
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src))
|
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-03-29 13:46:21 +00:00
|
|
|
}
|
|
|
|
|
2018-03-30 09:17:25 +00:00
|
|
|
func TestStringVarCurveOpen(t *testing.T) {
|
|
|
|
src := `<? "=$a{$b}";`
|
|
|
|
|
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: 13,
|
|
|
|
},
|
2018-03-30 09:17:25 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
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: 13,
|
|
|
|
},
|
2018-03-30 09:17:25 +00:00
|
|
|
Expr: &scalar.Encapsed{
|
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: 12,
|
|
|
|
},
|
2018-03-30 09:17:25 +00:00
|
|
|
Parts: []node.Node{
|
2018-06-24 07:19:44 +00:00
|
|
|
&scalar.EncapsedStringPart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 4,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 5,
|
|
|
|
},
|
|
|
|
Value: "=",
|
|
|
|
},
|
|
|
|
&expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 5,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 7,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 5,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 7,
|
|
|
|
},
|
|
|
|
Value: "a",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 8,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 10,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 8,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 10,
|
|
|
|
},
|
|
|
|
Value: "b",
|
|
|
|
},
|
|
|
|
},
|
2018-03-30 09:17:25 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src))
|
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-03-30 09:17:25 +00:00
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src))
|
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-03-30 09:17:25 +00:00
|
|
|
}
|
|
|
|
|
2018-01-06 14:05:48 +00:00
|
|
|
func TestSimpleVarPropertyFetch(t *testing.T) {
|
|
|
|
src := `<? "test $foo->bar()";`
|
|
|
|
|
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: 22,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
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: 22,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Expr: &scalar.Encapsed{
|
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: 21,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Parts: []node.Node{
|
2018-06-24 07:19:44 +00:00
|
|
|
&scalar.EncapsedStringPart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 4,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 9,
|
|
|
|
},
|
|
|
|
Value: "test ",
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
&expr.PropertyFetch{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 9,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 18,
|
|
|
|
},
|
|
|
|
Variable: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 9,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 13,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 9,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 13,
|
|
|
|
},
|
|
|
|
Value: "foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Property: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 15,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 18,
|
|
|
|
},
|
|
|
|
Value: "bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&scalar.EncapsedStringPart{
|
|
|
|
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: "()",
|
2018-01-09 13:51:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-01-06 14:05:48 +00:00
|
|
|
}
|
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src))
|
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-01-06 14:05:48 +00:00
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src))
|
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-01-06 14:05:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestDollarOpenCurlyBraces(t *testing.T) {
|
|
|
|
src := `<? "test ${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,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 3,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 17,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
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: 17,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Expr: &scalar.Encapsed{
|
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: 16,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Parts: []node.Node{
|
2018-06-24 07:19:44 +00:00
|
|
|
&scalar.EncapsedStringPart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 4,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 9,
|
|
|
|
},
|
|
|
|
Value: "test ",
|
|
|
|
},
|
|
|
|
&expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 9,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 15,
|
|
|
|
},
|
|
|
|
VarName: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 11,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Value: "foo",
|
|
|
|
},
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-01-06 14:05:48 +00:00
|
|
|
}
|
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src))
|
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-01-06 14:05:48 +00:00
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src))
|
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-01-06 14:05:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestDollarOpenCurlyBracesDimNumber(t *testing.T) {
|
|
|
|
src := `<? "test ${foo[0]}";`
|
|
|
|
|
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: 20,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
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: 20,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Expr: &scalar.Encapsed{
|
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: 19,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Parts: []node.Node{
|
2018-06-24 07:19:44 +00:00
|
|
|
&scalar.EncapsedStringPart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 4,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 9,
|
|
|
|
},
|
|
|
|
Value: "test ",
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
&expr.ArrayDimFetch{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 9,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 18,
|
|
|
|
},
|
|
|
|
Variable: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 11,
|
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: 11,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Value: "foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Dim: &scalar.Lnumber{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 15,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 16,
|
|
|
|
},
|
|
|
|
Value: "0",
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-01-06 14:05:48 +00:00
|
|
|
}
|
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src))
|
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-01-06 14:05:48 +00:00
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src))
|
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-01-06 14:05:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCurlyOpenMethodCall(t *testing.T) {
|
|
|
|
src := `<? "test {$foo->bar()}";`
|
|
|
|
|
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-01-09 13:51:32 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
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-01-09 13:51:32 +00:00
|
|
|
Expr: &scalar.Encapsed{
|
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: 23,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Parts: []node.Node{
|
2018-06-24 07:19:44 +00:00
|
|
|
&scalar.EncapsedStringPart{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 4,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 9,
|
|
|
|
},
|
|
|
|
Value: "test ",
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
&expr.MethodCall{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 10,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 21,
|
|
|
|
},
|
|
|
|
Variable: &expr.Variable{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 10,
|
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: 10,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Value: "foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Method: &node.Identifier{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 16,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 19,
|
|
|
|
},
|
|
|
|
Value: "bar",
|
|
|
|
},
|
|
|
|
ArgumentList: &node.ArgumentList{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
2019-03-10 21:37:01 +00:00
|
|
|
StartPos: 19,
|
2018-06-24 07:19:44 +00:00
|
|
|
EndPos: 21,
|
|
|
|
},
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-01-06 14:05:48 +00:00
|
|
|
}
|
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php7parser := php7.NewParser([]byte(src))
|
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-01-06 14:05:48 +00:00
|
|
|
|
2019-03-10 21:37:01 +00:00
|
|
|
php5parser := php5.NewParser([]byte(src))
|
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-01-06 14:05:48 +00:00
|
|
|
}
|