2018-02-08 21:44:21 +00:00
|
|
|
package stmt_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
2018-02-19 11:12:09 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/expr/binary"
|
2018-02-08 21:44:21 +00:00
|
|
|
|
|
|
|
"github.com/z7zmey/php-parser/node/expr"
|
2018-02-19 11:12:09 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/expr/assign"
|
2018-02-08 21:44:21 +00:00
|
|
|
|
|
|
|
"github.com/z7zmey/php-parser/node/scalar"
|
|
|
|
|
|
|
|
"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 TestFor(t *testing.T) {
|
|
|
|
src := `<? for($i = 0; $i < 10; $i++, $i++) {}`
|
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.For{
|
|
|
|
Init: []node.Node{
|
2018-02-19 11:12:09 +00:00
|
|
|
&assign.Assign{
|
2018-02-10 00:12:22 +00:00
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$i"}},
|
|
|
|
Expression: &scalar.Lnumber{Value: "0"},
|
2018-02-08 21:44:21 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Cond: []node.Node{
|
2018-02-19 11:12:09 +00:00
|
|
|
&binary.Smaller{
|
2018-02-10 00:12:22 +00:00
|
|
|
Left: &expr.Variable{VarName: &node.Identifier{Value: "$i"}},
|
|
|
|
Right: &scalar.Lnumber{Value: "10"},
|
2018-02-08 21:44:21 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Loop: []node.Node{
|
|
|
|
&expr.PostInc{
|
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$i"}},
|
|
|
|
},
|
|
|
|
&expr.PostInc{
|
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$i"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Stmt: &stmt.StmtList{Stmts: []node.Node{}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
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-12 13:08:08 +00:00
|
|
|
|
|
|
|
func TestAltFor(t *testing.T) {
|
2018-02-13 10:33:21 +00:00
|
|
|
src := `<? for(; $i < 10; $i++) : endfor;`
|
2018-02-12 13:08:08 +00:00
|
|
|
|
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
2018-02-18 17:57:54 +00:00
|
|
|
&stmt.AltFor{
|
2018-02-12 13:08:08 +00:00
|
|
|
Cond: []node.Node{
|
2018-02-19 11:12:09 +00:00
|
|
|
&binary.Smaller{
|
2018-02-12 13:08:08 +00:00
|
|
|
Left: &expr.Variable{VarName: &node.Identifier{Value: "$i"}},
|
|
|
|
Right: &scalar.Lnumber{Value: "10"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Loop: []node.Node{
|
|
|
|
&expr.PostInc{
|
|
|
|
Variable: &expr.Variable{VarName: &node.Identifier{Value: "$i"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Stmt: &stmt.StmtList{Stmts: []node.Node{}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
|
|
|
|
actual, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
|
|
|
|
assertEqual(t, expected, actual)
|
|
|
|
}
|