php-parser/node/expr/t_static_call_test.go

162 lines
3.8 KiB
Go
Raw Normal View History

2018-02-10 12:36:19 +00:00
package expr_test
import (
"bytes"
"testing"
"github.com/z7zmey/php-parser/node/name"
"github.com/z7zmey/php-parser/node/expr"
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/node/stmt"
"github.com/z7zmey/php-parser/php5"
"github.com/z7zmey/php-parser/php7"
)
func TestStaticCall(t *testing.T) {
src := `<? Foo::bar();`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-10 12:36:19 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &expr.StaticCall{
Class: &name.Name{
Parts: []node.Node{
&name.NamePart{Value: "Foo"},
},
},
2018-04-29 16:58:49 +00:00
Call: &node.Identifier{Value: "bar"},
ArgumentList: &node.ArgumentList{},
2018-02-10 12:36:19 +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-10 12:36:19 +00:00
assertEqual(t, expected, actual)
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-02-10 12:36:19 +00:00
assertEqual(t, expected, actual)
}
func TestStaticCallRelative(t *testing.T) {
src := `<? namespace\Foo::bar();`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-10 12:36:19 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &expr.StaticCall{
Class: &name.Relative{
Parts: []node.Node{
&name.NamePart{Value: "Foo"},
},
},
2018-04-29 16:58:49 +00:00
Call: &node.Identifier{Value: "bar"},
ArgumentList: &node.ArgumentList{},
2018-02-10 12:36:19 +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-10 12:36:19 +00:00
assertEqual(t, expected, actual)
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-02-10 12:36:19 +00:00
assertEqual(t, expected, actual)
}
func TestStaticCallFullyQualified(t *testing.T) {
src := `<? \Foo::bar();`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-10 12:36:19 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &expr.StaticCall{
Class: &name.FullyQualified{
Parts: []node.Node{
&name.NamePart{Value: "Foo"},
},
},
2018-04-29 16:58:49 +00:00
Call: &node.Identifier{Value: "bar"},
ArgumentList: &node.ArgumentList{},
2018-02-10 12:36:19 +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-10 12:36:19 +00:00
assertEqual(t, expected, actual)
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-02-10 12:36:19 +00:00
assertEqual(t, expected, actual)
}
2018-02-13 17:38:37 +00:00
func TestStaticCallVar(t *testing.T) {
src := `<? Foo::$bar();`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-13 17:38:37 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &expr.StaticCall{
Class: &name.Name{
Parts: []node.Node{
&name.NamePart{Value: "Foo"},
},
},
2018-04-29 16:58:49 +00:00
Call: &expr.Variable{VarName: &node.Identifier{Value: "bar"}},
ArgumentList: &node.ArgumentList{},
2018-02-13 17:38:37 +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-13 17:38:37 +00:00
assertEqual(t, expected, actual)
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-02-13 17:38:37 +00:00
assertEqual(t, expected, actual)
}
func TestStaticCallVarVar(t *testing.T) {
src := `<? $foo::$bar();`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-13 17:38:37 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &expr.StaticCall{
2018-04-29 16:58:49 +00:00
Class: &expr.Variable{VarName: &node.Identifier{Value: "foo"}},
Call: &expr.Variable{VarName: &node.Identifier{Value: "bar"}},
ArgumentList: &node.ArgumentList{},
2018-02-13 17:38:37 +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-13 17:38:37 +00:00
assertEqual(t, expected, actual)
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-02-13 17:38:37 +00:00
assertEqual(t, expected, actual)
}