2018-02-08 18:31:56 +00:00
|
|
|
package stmt_test
|
|
|
|
|
|
|
|
import (
|
2018-02-19 11:00:58 +00:00
|
|
|
"bytes"
|
2018-04-29 16:58:49 +00:00
|
|
|
"testing"
|
|
|
|
|
2018-02-08 18:31:56 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/expr"
|
|
|
|
"github.com/z7zmey/php-parser/node/name"
|
|
|
|
|
|
|
|
"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 TestSimpleClass(t *testing.T) {
|
|
|
|
src := `<? class foo{ }`
|
|
|
|
|
2018-05-02 09:14:24 +00:00
|
|
|
expected := &node.Root{
|
2018-02-08 18:31:56 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Class{
|
|
|
|
ClassName: &node.Identifier{Value: "foo"},
|
2018-02-19 11:00:58 +00:00
|
|
|
Stmts: []node.Node{},
|
2018-02-08 18:31:56 +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 18:31:56 +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-08 18:31:56 +00:00
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAbstractClass(t *testing.T) {
|
|
|
|
src := `<? abstract class foo{ }`
|
|
|
|
|
2018-05-02 09:14:24 +00:00
|
|
|
expected := &node.Root{
|
2018-02-08 18:31:56 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Class{
|
|
|
|
ClassName: &node.Identifier{Value: "foo"},
|
|
|
|
Modifiers: []node.Node{
|
|
|
|
&node.Identifier{Value: "abstract"},
|
|
|
|
},
|
|
|
|
Stmts: []node.Node{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2018-02-08 18:31:56 +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-08 18:31:56 +00:00
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClassExtends(t *testing.T) {
|
|
|
|
src := `<? final class foo extends bar { }`
|
|
|
|
|
2018-05-02 09:14:24 +00:00
|
|
|
expected := &node.Root{
|
2018-02-08 18:31:56 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Class{
|
|
|
|
ClassName: &node.Identifier{Value: "foo"},
|
|
|
|
Modifiers: []node.Node{
|
|
|
|
&node.Identifier{Value: "final"},
|
|
|
|
},
|
2018-05-12 20:10:01 +00:00
|
|
|
Extends: &stmt.ClassExtends{
|
|
|
|
ClassName: &name.Name{
|
|
|
|
Parts: []node.Node{
|
|
|
|
&name.NamePart{Value: "bar"},
|
|
|
|
},
|
2018-02-08 18:31:56 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Stmts: []node.Node{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2018-02-08 18:31:56 +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-08 18:31:56 +00:00
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClassImplement(t *testing.T) {
|
|
|
|
src := `<? final class foo implements bar { }`
|
|
|
|
|
2018-05-02 09:14:24 +00:00
|
|
|
expected := &node.Root{
|
2018-02-08 18:31:56 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Class{
|
|
|
|
ClassName: &node.Identifier{Value: "foo"},
|
|
|
|
Modifiers: []node.Node{
|
|
|
|
&node.Identifier{Value: "final"},
|
|
|
|
},
|
2018-05-12 20:10:01 +00:00
|
|
|
Implements: &stmt.ClassImplements{
|
|
|
|
InterfaceNames: []node.Node{
|
|
|
|
&name.Name{
|
|
|
|
Parts: []node.Node{
|
|
|
|
&name.NamePart{Value: "bar"},
|
|
|
|
},
|
2018-02-08 18:31:56 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Stmts: []node.Node{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2018-02-08 18:31:56 +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-08 18:31:56 +00:00
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClassImplements(t *testing.T) {
|
|
|
|
src := `<? final class foo implements bar, baz { }`
|
|
|
|
|
2018-05-02 09:14:24 +00:00
|
|
|
expected := &node.Root{
|
2018-02-08 18:31:56 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Class{
|
|
|
|
ClassName: &node.Identifier{Value: "foo"},
|
|
|
|
Modifiers: []node.Node{
|
|
|
|
&node.Identifier{Value: "final"},
|
|
|
|
},
|
2018-05-12 20:10:01 +00:00
|
|
|
Implements: &stmt.ClassImplements{
|
|
|
|
InterfaceNames: []node.Node{
|
|
|
|
&name.Name{
|
|
|
|
Parts: []node.Node{
|
|
|
|
&name.NamePart{Value: "bar"},
|
|
|
|
},
|
2018-02-08 18:31:56 +00:00
|
|
|
},
|
2018-05-12 20:10:01 +00:00
|
|
|
&name.Name{
|
|
|
|
Parts: []node.Node{
|
|
|
|
&name.NamePart{Value: "baz"},
|
|
|
|
},
|
2018-02-08 18:31:56 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Stmts: []node.Node{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2018-02-08 18:31:56 +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-08 18:31:56 +00:00
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAnonimousClass(t *testing.T) {
|
|
|
|
src := `<? new class() extends foo implements bar, baz { };`
|
|
|
|
|
2018-05-02 09:14:24 +00:00
|
|
|
expected := &node.Root{
|
2018-02-08 18:31:56 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
|
|
|
Expr: &expr.New{
|
|
|
|
Class: &stmt.Class{
|
2018-04-29 16:58:49 +00:00
|
|
|
ArgumentList: &node.ArgumentList{},
|
2018-05-12 20:10:01 +00:00
|
|
|
Extends: &stmt.ClassExtends{
|
|
|
|
ClassName: &name.Name{
|
2018-02-08 18:31:56 +00:00
|
|
|
Parts: []node.Node{
|
2018-05-12 20:10:01 +00:00
|
|
|
&name.NamePart{Value: "foo"},
|
2018-02-08 18:31:56 +00:00
|
|
|
},
|
|
|
|
},
|
2018-05-12 20:10:01 +00:00
|
|
|
},
|
|
|
|
Implements: &stmt.ClassImplements{
|
|
|
|
InterfaceNames: []node.Node{
|
|
|
|
&name.Name{
|
|
|
|
Parts: []node.Node{
|
|
|
|
&name.NamePart{Value: "bar"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&name.Name{
|
|
|
|
Parts: []node.Node{
|
|
|
|
&name.NamePart{Value: "baz"},
|
|
|
|
},
|
2018-02-08 18:31:56 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Stmts: []node.Node{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-04-10 12:23:13 +00:00
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
|
|
php7parser.Parse()
|
|
|
|
actual := php7parser.GetRootNode()
|
2018-02-08 18:31:56 +00:00
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|