php-parser/node/stmt/t_for_test.go

94 lines
2.3 KiB
Go
Raw Normal View History

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++) {}`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-08 21:44:21 +00:00
Stmts: []node.Node{
&stmt.For{
Init: []node.Node{
2018-02-19 11:12:09 +00:00
&assign.Assign{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "i"}},
2018-02-10 00:12:22 +00:00
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-03-18 14:50:19 +00:00
Left: &expr.Variable{VarName: &node.Identifier{Value: "i"}},
2018-02-10 00:12:22 +00:00
Right: &scalar.Lnumber{Value: "10"},
2018-02-08 21:44:21 +00:00
},
},
Loop: []node.Node{
&expr.PostInc{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "i"}},
2018-02-08 21:44:21 +00:00
},
&expr.PostInc{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "i"}},
2018-02-08 21:44:21 +00:00
},
},
Stmt: &stmt.StmtList{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 21:44:21 +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 21:44:21 +00:00
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
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-02-12 13:08:08 +00:00
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-03-18 14:50:19 +00:00
Left: &expr.Variable{VarName: &node.Identifier{Value: "i"}},
2018-02-12 13:08:08 +00:00
Right: &scalar.Lnumber{Value: "10"},
},
},
Loop: []node.Node{
&expr.PostInc{
2018-03-18 14:50:19 +00:00
Variable: &expr.Variable{VarName: &node.Identifier{Value: "i"}},
2018-02-12 13:08:08 +00:00
},
},
Stmt: &stmt.StmtList{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-12 13:08:08 +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-12 13:08:08 +00:00
assertEqual(t, expected, actual)
}