php-parser/node/expr/assign/t_assign_op_test.go

452 lines
11 KiB
Go
Raw Normal View History

2018-02-19 11:12:09 +00:00
package assign_test
2018-02-09 23:21:54 +00:00
import (
"bytes"
"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"
2018-02-13 11:38:57 +00:00
"github.com/z7zmey/php-parser/node/name"
2018-02-09 23:21:54 +00:00
"github.com/z7zmey/php-parser/node/stmt"
"github.com/z7zmey/php-parser/php5"
"github.com/z7zmey/php-parser/php7"
)
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")
}
}
}
2018-04-05 09:03:32 +00:00
func TestReference(t *testing.T) {
2018-02-09 23:21:54 +00:00
src := `<? $a =& $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-04-05 09:03:32 +00:00
Expr: &assign.Reference{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
2018-04-05 09:03:32 +00:00
func TestReferenceNew(t *testing.T) {
2018-02-13 11:38:57 +00:00
src := `<? $a =& new Foo;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-13 11:38:57 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-04-05 09:03:32 +00:00
Expr: &assign.Reference{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
2018-02-13 11:38:57 +00:00
Expression: &expr.New{
Class: &name.Name{
Parts: []node.Node{
&name.NamePart{Value: "Foo"},
},
},
},
},
},
},
}
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-02-13 11:38:57 +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 11:38:57 +00:00
assertEqual(t, expected, actual)
}
2018-04-05 09:03:32 +00:00
func TestReferenceArgs(t *testing.T) {
2018-02-13 11:38:57 +00:00
src := `<? $a =& new Foo($b);`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-13 11:38:57 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-04-05 09:03:32 +00:00
Expr: &assign.Reference{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
2018-02-13 11:38:57 +00:00
Expression: &expr.New{
Class: &name.Name{
Parts: []node.Node{
&name.NamePart{Value: "Foo"},
},
},
2018-04-29 16:58:49 +00:00
ArgumentList: &node.ArgumentList{
Arguments: []node.Node{
&node.Argument{
Variadic: false,
IsReference: false,
Expr: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
},
2018-02-13 11:38:57 +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 11:38:57 +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 11:38:57 +00:00
assertEqual(t, expected, actual)
}
2018-02-09 23:21:54 +00:00
func TestAssign(t *testing.T) {
src := `<? $a = $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.Assign{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
func TestBitwiseAnd(t *testing.T) {
src := `<? $a &= $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.BitwiseAnd{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
func TestBitwiseOr(t *testing.T) {
src := `<? $a |= $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.BitwiseOr{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
func TestBitwiseXor(t *testing.T) {
src := `<? $a ^= $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.BitwiseXor{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
func TestConcat(t *testing.T) {
src := `<? $a .= $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.Concat{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
func TestDiv(t *testing.T) {
src := `<? $a /= $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.Div{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
func TestMinus(t *testing.T) {
src := `<? $a -= $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.Minus{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
func TestMod(t *testing.T) {
src := `<? $a %= $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.Mod{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
func TestMul(t *testing.T) {
src := `<? $a *= $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.Mul{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
func TestPlus(t *testing.T) {
src := `<? $a += $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.Plus{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
func TestPow(t *testing.T) {
src := `<? $a **= $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.Pow{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
func TestShiftLeft(t *testing.T) {
src := `<? $a <<= $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.ShiftLeft{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}
func TestShiftRight(t *testing.T) {
src := `<? $a >>= $b;`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-09 23:21:54 +00:00
Stmts: []node.Node{
&stmt.Expression{
2018-02-19 11:12:09 +00:00
Expr: &assign.ShiftRight{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "a"}},
Expression: &expr.Variable{VarName: &node.Identifier{Value: "b"}},
2018-02-09 23:21:54 +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-09 23:21:54 +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-09 23:21:54 +00:00
assertEqual(t, expected, actual)
}