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")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAssignRef(t *testing.T) {
|
|
|
|
src := `<? $a =& $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.AssignRef{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
2018-02-13 11:38:57 +00:00
|
|
|
func TestAssignRefNew(t *testing.T) {
|
|
|
|
src := `<? $a =& new Foo;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.AssignRef{
|
2018-02-19 11:00:58 +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"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAssignRefArgs(t *testing.T) {
|
|
|
|
src := `<? $a =& new Foo($b);`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.AssignRef{
|
2018-02-19 11:00:58 +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"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Arguments: []node.Node{
|
|
|
|
&node.Argument{
|
2018-02-19 11:00:58 +00:00
|
|
|
Variadic: false,
|
2018-02-13 11:38:57 +00:00
|
|
|
IsReference: false,
|
2018-02-19 11:00:58 +00:00
|
|
|
Expr: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
2018-02-13 11:38:57 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
2018-02-09 23:21:54 +00:00
|
|
|
func TestAssign(t *testing.T) {
|
|
|
|
src := `<? $a = $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.Assign{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBitwiseAnd(t *testing.T) {
|
|
|
|
src := `<? $a &= $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.BitwiseAnd{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBitwiseOr(t *testing.T) {
|
|
|
|
src := `<? $a |= $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.BitwiseOr{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBitwiseXor(t *testing.T) {
|
|
|
|
src := `<? $a ^= $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.BitwiseXor{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestConcat(t *testing.T) {
|
|
|
|
src := `<? $a .= $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.Concat{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDiv(t *testing.T) {
|
|
|
|
src := `<? $a /= $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.Div{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMinus(t *testing.T) {
|
|
|
|
src := `<? $a -= $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.Minus{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMod(t *testing.T) {
|
|
|
|
src := `<? $a %= $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.Mod{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMul(t *testing.T) {
|
|
|
|
src := `<? $a *= $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.Mul{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPlus(t *testing.T) {
|
|
|
|
src := `<? $a += $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.Plus{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPow(t *testing.T) {
|
|
|
|
src := `<? $a **= $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.Pow{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShiftLeft(t *testing.T) {
|
|
|
|
src := `<? $a <<= $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.ShiftLeft{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShiftRight(t *testing.T) {
|
|
|
|
src := `<? $a >>= $b;`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-02-19 11:12:09 +00:00
|
|
|
Expr: &assign.ShiftRight{
|
2018-02-09 23:21:54 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$a"}},
|
|
|
|
Expression: &expr.Variable{VarName: &node.Identifier{Value: "$b"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|