2018-02-19 11:12:09 +00:00
|
|
|
package assign_test
|
2018-02-09 23:21:54 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
|
2018-02-19 11:12:09 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/expr/assign"
|
2018-02-09 23:21:54 +00:00
|
|
|
|
|
|
|
"github.com/kylelemons/godebug/pretty"
|
|
|
|
|
|
|
|
"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{}
|
|
|
|
}{
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.AssignRef{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.Assign{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.BitwiseAnd{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.BitwiseOr{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.BitwiseXor{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.Concat{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.Div{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.Minus{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.Mod{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.Mul{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.Plus{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.Pow{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.ShiftLeft{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.ShiftRight{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
[]string{"Variable", "Expression"},
|
|
|
|
map[string]interface{}{},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
type visitorMock struct {
|
|
|
|
visitChildren bool
|
|
|
|
visitedKeys []string
|
|
|
|
}
|
|
|
|
|
2018-02-20 17:52:07 +00:00
|
|
|
func (v *visitorMock) EnterNode(n walker.Walkable) bool { return v.visitChildren }
|
2018-02-09 23:21:54 +00:00
|
|
|
func (v *visitorMock) GetChildrenVisitor(key string) walker.Visitor {
|
|
|
|
v.visitedKeys = append(v.visitedKeys, key)
|
|
|
|
return &visitorMock{v.visitChildren, nil}
|
|
|
|
}
|
2018-02-20 17:52:07 +00:00
|
|
|
func (v *visitorMock) LeaveNode(n walker.Walkable) {}
|
2018-02-09 23:21:54 +00:00
|
|
|
|
|
|
|
func TestVisitorDisableChildren(t *testing.T) {
|
|
|
|
for _, tt := range nodesToTest {
|
|
|
|
v := &visitorMock{false, nil}
|
|
|
|
tt.node.Walk(v)
|
|
|
|
|
|
|
|
expected := []string{}
|
|
|
|
actual := v.visitedKeys
|
|
|
|
|
|
|
|
diff := pretty.Compare(expected, actual)
|
|
|
|
if diff != "" {
|
|
|
|
t.Errorf("%s diff: (-expected +actual)\n%s", reflect.TypeOf(tt.node), diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestVisitor(t *testing.T) {
|
|
|
|
for _, tt := range nodesToTest {
|
|
|
|
v := &visitorMock{true, nil}
|
|
|
|
tt.node.Walk(v)
|
|
|
|
|
|
|
|
expected := tt.expectedVisitedKeys
|
|
|
|
actual := v.visitedKeys
|
|
|
|
|
|
|
|
diff := pretty.Compare(expected, actual)
|
|
|
|
if diff != "" {
|
|
|
|
t.Errorf("%s diff: (-expected +actual)\n%s", reflect.TypeOf(tt.node), diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// test Attributes()
|
|
|
|
|
|
|
|
func TestNameAttributes(t *testing.T) {
|
|
|
|
for _, tt := range nodesToTest {
|
|
|
|
expected := tt.expectedAttributes
|
|
|
|
actual := tt.node.Attributes()
|
|
|
|
|
|
|
|
diff := pretty.Compare(expected, actual)
|
|
|
|
if diff != "" {
|
|
|
|
t.Errorf("%s diff: (-expected +actual)\n%s", reflect.TypeOf(tt.node), diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|