php-parser/node/expr/t_visitor_test.go
2019-12-29 22:42:52 +02:00

417 lines
7.0 KiB
Go

package expr_test
import (
"testing"
"gotest.tools/assert"
"github.com/z7zmey/php-parser/node/stmt"
"github.com/z7zmey/php-parser/node/name"
"github.com/z7zmey/php-parser/node/scalar"
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/node/expr"
"github.com/z7zmey/php-parser/walker"
)
var nodesToTest = []struct {
node node.Node // node
expectedVisitedKeys []string // visited keys
expectedAttributes map[string]interface{}
}{
{
&expr.ArrayDimFetch{
Variable: &expr.Variable{},
Dim: &scalar.Lnumber{Value: "1"},
},
[]string{"Variable", "Dim"},
nil,
},
{
&expr.ArrayItem{
Key: &scalar.String{Value: "key"},
Val: &scalar.Lnumber{Value: "1"},
Unpack: true,
},
[]string{"Key", "Val"},
map[string]interface{}{"Unpack": true},
},
{
&expr.Array{
Items: []node.Node{
&expr.ArrayItem{},
},
},
[]string{"Items"},
nil,
},
{
&expr.BitwiseNot{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.BooleanNot{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.ClassConstFetch{
Class: &expr.Variable{},
ConstantName: &node.Identifier{Value: "foo"},
},
[]string{"Class", "ConstantName"},
nil,
},
{
&expr.Clone{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.ClosureUse{
Uses: []node.Node{
&expr.Variable{},
},
},
[]string{"Uses"},
nil,
},
{
&expr.Closure{
ReturnsRef: true,
Static: false,
PhpDocComment: "",
Params: []node.Node{&node.Parameter{}},
ClosureUse: &expr.ClosureUse{},
ReturnType: &name.Name{},
Stmts: []node.Node{&stmt.Nop{}},
},
[]string{"Params", "ClosureUse", "ReturnType", "Stmts"},
map[string]interface{}{"ReturnsRef": true, "Static": false, "PhpDocComment": ""},
},
{
&expr.ArrowFunction{
ReturnsRef: true,
Static: false,
PhpDocComment: "",
Params: []node.Node{&node.Parameter{}},
ReturnType: &name.Name{},
Expr: &expr.Variable{},
},
[]string{"Params", "ReturnType", "Expr"},
map[string]interface{}{"ReturnsRef": true, "Static": false, "PhpDocComment": ""},
},
{
&expr.ConstFetch{
Constant: &node.Identifier{Value: "foo"},
},
[]string{"Constant"},
nil,
},
{
&expr.Empty{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.ErrorSuppress{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.Eval{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.Exit{
Die: true,
Expr: &expr.Variable{},
},
[]string{"Expr"},
map[string]interface{}{"Die": true},
},
{
&expr.FunctionCall{
Function: &expr.Variable{},
ArgumentList: &node.ArgumentList{},
},
[]string{"Function", "ArgumentList"},
nil,
},
{
&expr.IncludeOnce{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.Include{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.InstanceOf{
Expr: &expr.Variable{},
Class: &name.Name{},
},
[]string{"Expr", "Class"},
nil,
},
{
&expr.Isset{
Variables: []node.Node{
&expr.Variable{},
},
},
[]string{"Variables"},
nil,
},
{
&expr.List{
Items: []node.Node{
&expr.ArrayItem{},
},
},
[]string{"Items"},
nil,
},
{
&expr.MethodCall{
Variable: &expr.Variable{},
Method: &node.Identifier{Value: "foo"},
ArgumentList: &node.ArgumentList{},
},
[]string{"Variable", "Method", "ArgumentList"},
nil,
},
{
&expr.New{
Class: &name.Name{},
ArgumentList: &node.ArgumentList{},
},
[]string{"Class", "ArgumentList"},
nil,
},
{
&expr.PostDec{
Variable: &expr.Variable{},
},
[]string{"Variable"},
nil,
},
{
&expr.PostInc{
Variable: &expr.Variable{},
},
[]string{"Variable"},
nil,
},
{
&expr.PreDec{
Variable: &expr.Variable{},
},
[]string{"Variable"},
nil,
},
{
&expr.PreInc{
Variable: &expr.Variable{},
},
[]string{"Variable"},
nil,
},
{
&expr.Print{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.PropertyFetch{
Variable: &expr.Variable{},
Property: &node.Identifier{Value: "foo"},
},
[]string{"Variable", "Property"},
nil,
},
{
&expr.Reference{
Variable: &expr.Variable{},
},
[]string{"Variable"},
nil,
},
{
&expr.RequireOnce{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.Require{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.ShellExec{
Parts: []node.Node{
&scalar.EncapsedStringPart{},
},
},
[]string{"Parts"},
nil,
},
{
&expr.ShortArray{
Items: []node.Node{
&expr.ArrayItem{},
},
},
[]string{"Items"},
nil,
},
{
&expr.ShortList{
Items: []node.Node{
&expr.ArrayItem{},
},
},
[]string{"Items"},
nil,
},
{
&expr.StaticCall{
Class: &name.Name{},
Call: &node.Identifier{Value: "foo"},
ArgumentList: &node.ArgumentList{},
},
[]string{"Class", "Call", "ArgumentList"},
nil,
},
{
&expr.StaticPropertyFetch{
Class: &name.Name{},
Property: &node.Identifier{Value: "foo"},
},
[]string{"Class", "Property"},
nil,
},
{
&expr.Ternary{
Condition: &expr.Variable{},
IfTrue: &expr.Variable{},
IfFalse: &expr.Variable{},
},
[]string{"Condition", "IfTrue", "IfFalse"},
nil,
},
{
&expr.UnaryMinus{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.UnaryPlus{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.Variable{VarName: &node.Identifier{Value: "a"}},
[]string{"VarName"},
nil,
},
{
&expr.YieldFrom{
Expr: &expr.Variable{},
},
[]string{"Expr"},
nil,
},
{
&expr.Yield{
Key: &expr.Variable{},
Value: &expr.Variable{},
},
[]string{"Key", "Value"},
nil,
},
}
type visitorMock struct {
visitChildren bool
visitedKeys []string
}
func (v *visitorMock) EnterNode(n walker.Walkable) bool { return v.visitChildren }
func (v *visitorMock) LeaveNode(n walker.Walkable) {}
func (v *visitorMock) EnterChildNode(key string, w walker.Walkable) {
v.visitedKeys = append(v.visitedKeys, key)
}
func (v *visitorMock) LeaveChildNode(key string, w walker.Walkable) {}
func (v *visitorMock) EnterChildList(key string, w walker.Walkable) {
v.visitedKeys = append(v.visitedKeys, key)
}
func (v *visitorMock) LeaveChildList(key string, w walker.Walkable) {}
func TestVisitorDisableChildren(t *testing.T) {
for _, tt := range nodesToTest {
v := &visitorMock{false, []string{}}
tt.node.Walk(v)
expected := []string{}
actual := v.visitedKeys
assert.DeepEqual(t, expected, actual)
}
}
func TestVisitor(t *testing.T) {
for _, tt := range nodesToTest {
v := &visitorMock{true, nil}
tt.node.Walk(v)
expected := tt.expectedVisitedKeys
actual := v.visitedKeys
assert.DeepEqual(t, expected, actual)
}
}
// test Attributes()
func TestNameAttributes(t *testing.T) {
for _, tt := range nodesToTest {
expected := tt.expectedAttributes
actual := tt.node.Attributes()
assert.DeepEqual(t, expected, actual)
}
}