2018-02-09 17:44:17 +00:00
|
|
|
package cast_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2018-02-19 11:00:58 +00:00
|
|
|
|
2019-02-13 20:18:07 +00:00
|
|
|
"gotest.tools/assert"
|
2018-02-19 11:00:58 +00:00
|
|
|
|
2018-02-09 17:44:17 +00:00
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
|
|
"github.com/z7zmey/php-parser/node/expr"
|
|
|
|
"github.com/z7zmey/php-parser/node/expr/cast"
|
|
|
|
"github.com/z7zmey/php-parser/walker"
|
|
|
|
)
|
|
|
|
|
|
|
|
var nodesToTest = []struct {
|
|
|
|
node node.Node // node
|
|
|
|
expectedVisitedKeys []string // visited keys
|
|
|
|
expectedAttributes map[string]interface{}
|
|
|
|
}{
|
|
|
|
{
|
2018-04-05 08:59:29 +00:00
|
|
|
&cast.Array{
|
2018-06-18 20:29:52 +00:00
|
|
|
Expr: &expr.Variable{},
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
[]string{"Expr"},
|
2019-02-13 20:18:07 +00:00
|
|
|
nil,
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
{
|
2018-04-05 08:59:29 +00:00
|
|
|
&cast.Bool{
|
2018-06-18 20:29:52 +00:00
|
|
|
Expr: &expr.Variable{},
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
[]string{"Expr"},
|
2019-02-13 20:18:07 +00:00
|
|
|
nil,
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
{
|
2018-04-05 08:59:29 +00:00
|
|
|
&cast.Double{
|
2018-06-18 20:29:52 +00:00
|
|
|
Expr: &expr.Variable{},
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
[]string{"Expr"},
|
2019-02-13 20:18:07 +00:00
|
|
|
nil,
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
{
|
2018-04-05 08:59:29 +00:00
|
|
|
&cast.Int{
|
2018-06-18 20:29:52 +00:00
|
|
|
Expr: &expr.Variable{},
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
[]string{"Expr"},
|
2019-02-13 20:18:07 +00:00
|
|
|
nil,
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
{
|
2018-04-05 08:59:29 +00:00
|
|
|
&cast.Object{
|
2018-06-18 20:29:52 +00:00
|
|
|
Expr: &expr.Variable{},
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
[]string{"Expr"},
|
2019-02-13 20:18:07 +00:00
|
|
|
nil,
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
{
|
2018-04-05 08:59:29 +00:00
|
|
|
&cast.String{
|
2018-06-18 20:29:52 +00:00
|
|
|
Expr: &expr.Variable{},
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
[]string{"Expr"},
|
2019-02-13 20:18:07 +00:00
|
|
|
nil,
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
{
|
2018-04-05 08:59:29 +00:00
|
|
|
&cast.Unset{
|
2018-06-18 20:29:52 +00:00
|
|
|
Expr: &expr.Variable{},
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
[]string{"Expr"},
|
2019-02-13 20:18:07 +00:00
|
|
|
nil,
|
2018-02-09 17:44:17 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
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-06-18 20:29:52 +00:00
|
|
|
func (v *visitorMock) LeaveNode(n walker.Walkable) {}
|
|
|
|
func (v *visitorMock) EnterChildNode(key string, w walker.Walkable) {
|
2018-02-09 17:44:17 +00:00
|
|
|
v.visitedKeys = append(v.visitedKeys, key)
|
|
|
|
}
|
2018-06-18 20:29:52 +00:00
|
|
|
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) {}
|
2018-02-09 17:44:17 +00:00
|
|
|
|
|
|
|
func TestVisitorDisableChildren(t *testing.T) {
|
|
|
|
for _, tt := range nodesToTest {
|
2019-02-13 20:18:07 +00:00
|
|
|
v := &visitorMock{false, []string{}}
|
2018-02-09 17:44:17 +00:00
|
|
|
tt.node.Walk(v)
|
|
|
|
|
|
|
|
expected := []string{}
|
|
|
|
actual := v.visitedKeys
|
|
|
|
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-09 17:44:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestVisitor(t *testing.T) {
|
|
|
|
for _, tt := range nodesToTest {
|
2019-02-13 20:18:07 +00:00
|
|
|
v := &visitorMock{true, []string{}}
|
2018-02-09 17:44:17 +00:00
|
|
|
tt.node.Walk(v)
|
|
|
|
|
|
|
|
expected := tt.expectedVisitedKeys
|
|
|
|
actual := v.visitedKeys
|
|
|
|
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-09 17:44:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// test Attributes()
|
|
|
|
|
|
|
|
func TestNameAttributes(t *testing.T) {
|
|
|
|
for _, tt := range nodesToTest {
|
|
|
|
expected := tt.expectedAttributes
|
|
|
|
actual := tt.node.Attributes()
|
|
|
|
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-02-09 17:44:17 +00:00
|
|
|
}
|
|
|
|
}
|