php-parser/node/name/t_name_test.go

126 lines
2.9 KiB
Go
Raw Normal View History

2018-01-12 07:41:08 +00:00
package name_test
2018-01-12 07:14:11 +00:00
import (
"bytes"
"reflect"
"testing"
"github.com/z7zmey/php-parser/node/expr"
"github.com/z7zmey/php-parser/node/name"
"github.com/kylelemons/godebug/pretty"
"github.com/z7zmey/php-parser/node"
"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-12 07:14:11 +00:00
)
func assertEqual(t *testing.T, expected interface{}, actual interface{}) {
if !reflect.DeepEqual(expected, actual) {
diff := pretty.Compare(expected, actual)
if diff != "" {
t.Errorf("diff: (-expected +actual)\n%s", diff)
} else {
t.Errorf("expected and actual are not equal\n")
}
}
}
func TestName(t *testing.T) {
src := `<? foo();`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-01-12 07:14:11 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &expr.FunctionCall{
Function: &name.Name{
Parts: []node.Node{&name.NamePart{Value: "foo"}},
},
2018-04-29 16:58:49 +00:00
ArgumentList: &node.ArgumentList{},
2018-01-12 07:14:11 +00:00
},
},
},
}
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-01-12 07:14:11 +00:00
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-01-12 07:14:11 +00:00
assertEqual(t, expected, actual)
}
func TestFullyQualified(t *testing.T) {
src := `<? \foo();`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-01-12 07:14:11 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &expr.FunctionCall{
Function: &name.FullyQualified{
Parts: []node.Node{&name.NamePart{Value: "foo"}},
},
2018-04-29 16:58:49 +00:00
ArgumentList: &node.ArgumentList{},
2018-01-12 07:14:11 +00:00
},
},
},
}
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-01-12 07:14:11 +00:00
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-01-12 07:14:11 +00:00
assertEqual(t, expected, actual)
}
func TestRelative(t *testing.T) {
src := `<? namespace\foo();`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-01-12 07:14:11 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &expr.FunctionCall{
Function: &name.Relative{
Parts: []node.Node{&name.NamePart{Value: "foo"}},
},
2018-04-29 16:58:49 +00:00
ArgumentList: &node.ArgumentList{},
2018-01-12 07:14:11 +00:00
},
},
},
}
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-01-12 07:14:11 +00:00
assertEqual(t, expected, actual)
2018-01-12 09:26:00 +00:00
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-01-12 09:26:00 +00:00
}
2018-02-27 13:09:40 +00:00
func TestNamePartsGetter(t *testing.T) {
expected := []node.Node{
&name.NamePart{Value: "a"},
&name.NamePart{Value: "b"},
}
plainName := &name.Name{Parts: expected}
relativeName := &name.Relative{Parts: expected}
fullyQualifiedName := &name.FullyQualified{Parts: expected}
assertEqual(t, expected, plainName.GetParts())
assertEqual(t, expected, relativeName.GetParts())
assertEqual(t, expected, fullyQualifiedName.GetParts())
}