php-parser/node/scalar/t_heredoc_test.go

145 lines
2.9 KiB
Go
Raw Normal View History

2018-04-05 10:47:36 +00:00
package scalar_test
import (
"bytes"
"testing"
"github.com/z7zmey/php-parser/node/expr"
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/node/scalar"
"github.com/z7zmey/php-parser/node/stmt"
"github.com/z7zmey/php-parser/php5"
2018-04-09 20:26:44 +00:00
"github.com/z7zmey/php-parser/php7"
2018-04-05 10:47:36 +00:00
)
func TestHeredocSimpleLabel(t *testing.T) {
src := `<? <<<LBL
test $var
LBL;
`
expected := &stmt.StmtList{
Stmts: []node.Node{
&stmt.Expression{
Expr: &scalar.Heredoc{
Label: "LBL",
Parts: []node.Node{
&scalar.EncapsedStringPart{Value: "test "},
&expr.Variable{VarName: &node.Identifier{Value: "var"}},
&scalar.EncapsedStringPart{Value: "\n"},
},
},
},
},
}
2018-04-09 20:26:44 +00:00
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
2018-04-05 10:47:36 +00:00
assertEqual(t, expected, actual)
2018-04-09 20:26:44 +00:00
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
2018-04-05 10:47:36 +00:00
assertEqual(t, expected, actual)
}
func TestSimpleHeredocLabel(t *testing.T) {
src := `<? <<<"LBL"
test $var
LBL;
`
expected := &stmt.StmtList{
Stmts: []node.Node{
&stmt.Expression{
Expr: &scalar.Heredoc{
Label: "\"LBL\"",
Parts: []node.Node{
&scalar.EncapsedStringPart{Value: "test "},
&expr.Variable{VarName: &node.Identifier{Value: "var"}},
&scalar.EncapsedStringPart{Value: "\n"},
},
},
},
},
}
2018-04-09 20:26:44 +00:00
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
2018-04-05 10:47:36 +00:00
assertEqual(t, expected, actual)
2018-04-09 20:26:44 +00:00
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
2018-04-05 10:47:36 +00:00
assertEqual(t, expected, actual)
}
func TestSimpleNowdocLabel(t *testing.T) {
src := `<? <<<'LBL'
test $var
LBL;
`
expected := &stmt.StmtList{
Stmts: []node.Node{
&stmt.Expression{
Expr: &scalar.Heredoc{
Label: "'LBL'",
Parts: []node.Node{
&scalar.EncapsedStringPart{Value: "test $var\n"},
},
},
},
},
}
2018-04-09 20:26:44 +00:00
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
2018-04-05 10:47:36 +00:00
assertEqual(t, expected, actual)
2018-04-09 20:26:44 +00:00
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
2018-04-05 10:47:36 +00:00
assertEqual(t, expected, actual)
}
func TestEmptyHeredoc(t *testing.T) {
src := `<? <<<CAD
CAD;
`
expected := &stmt.StmtList{
Stmts: []node.Node{
&stmt.Expression{
Expr: &scalar.Heredoc{
Label: "CAD",
},
},
},
}
2018-04-09 20:26:44 +00:00
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
2018-04-05 10:47:36 +00:00
assertEqual(t, expected, actual)
2018-04-09 20:26:44 +00:00
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
2018-04-05 10:47:36 +00:00
assertEqual(t, expected, actual)
}
func TestHeredocScalarString(t *testing.T) {
src := `<? <<<CAD
hello
CAD;
`
expected := &stmt.StmtList{
Stmts: []node.Node{
&stmt.Expression{
Expr: &scalar.Heredoc{
Label: "CAD",
Parts: []node.Node{
&scalar.EncapsedStringPart{Value: "\thello\n"},
},
},
},
},
}
2018-04-09 20:26:44 +00:00
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
2018-04-05 10:47:36 +00:00
assertEqual(t, expected, actual)
2018-04-09 20:26:44 +00:00
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
2018-04-05 10:47:36 +00:00
assertEqual(t, expected, actual)
}