2018-01-06 14:05:48 +00:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/kylelemons/godebug/pretty"
|
|
|
|
"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/parser"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDoubleQuotedScalarString(t *testing.T) {
|
|
|
|
src := `<? "test";`
|
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
|
|
|
Expr: &scalar.String{Value: "\"test\""},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-01-06 14:05:48 +00:00
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
actual, _, _ := parser.Parse(bytes.NewBufferString(src), "test.php")
|
2018-01-06 14:05:48 +00:00
|
|
|
|
|
|
|
if diff := pretty.Compare(expected, actual); diff != "" {
|
|
|
|
t.Errorf("diff: (-expected +actual)\n%s", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func TestDoubleQuotedScalarStringWithEscapedVar(t *testing.T) {
|
|
|
|
src := `<? "\$test";`
|
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
|
|
|
Expr: &scalar.String{Value: "\"\\$test\""},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-01-06 14:05:48 +00:00
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
actual, _, _ := parser.Parse(bytes.NewBufferString(src), "test.php")
|
2018-01-06 14:05:48 +00:00
|
|
|
|
|
|
|
if diff := pretty.Compare(expected, actual); diff != "" {
|
|
|
|
t.Errorf("diff: (-expected +actual)\n%s", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMultilineDoubleQuotedScalarString(t *testing.T) {
|
|
|
|
src := `<? "
|
|
|
|
test
|
|
|
|
";`
|
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
|
|
|
Expr: &scalar.String{Value: "\"\n\ttest\n\t\""},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-01-06 14:05:48 +00:00
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
actual, _, _ := parser.Parse(bytes.NewBufferString(src), "test.php")
|
2018-01-06 14:05:48 +00:00
|
|
|
|
|
|
|
if diff := pretty.Compare(expected, actual); diff != "" {
|
|
|
|
t.Errorf("diff: (-expected +actual)\n%s", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSingleQuotedScalarString(t *testing.T) {
|
|
|
|
src := `<? '$test';`
|
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
|
|
|
Expr: &scalar.String{Value: "'$test'"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-01-06 14:05:48 +00:00
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
actual, _, _ := parser.Parse(bytes.NewBufferString(src), "test.php")
|
2018-01-06 14:05:48 +00:00
|
|
|
|
|
|
|
if diff := pretty.Compare(expected, actual); diff != "" {
|
|
|
|
t.Errorf("diff: (-expected +actual)\n%s", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMultilineSingleQuotedScalarString(t *testing.T) {
|
|
|
|
src := `<? '
|
|
|
|
$test
|
|
|
|
';`
|
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
|
|
|
Expr: &scalar.String{Value: "'\n\t$test\n\t'"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-01-06 14:05:48 +00:00
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
actual, _, _ := parser.Parse(bytes.NewBufferString(src), "test.php")
|
2018-01-06 14:05:48 +00:00
|
|
|
|
|
|
|
if diff := pretty.Compare(expected, actual); diff != "" {
|
|
|
|
t.Errorf("diff: (-expected +actual)\n%s", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPlainHeredocScalarString(t *testing.T) {
|
|
|
|
src := `<? <<<CAD
|
|
|
|
hello
|
|
|
|
CAD;
|
|
|
|
`
|
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
|
|
|
Expr: &scalar.String{Value: "\thello\n"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-01-06 14:05:48 +00:00
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
actual, _, _ := parser.Parse(bytes.NewBufferString(src), "test.php")
|
2018-01-06 14:05:48 +00:00
|
|
|
|
|
|
|
if diff := pretty.Compare(expected, actual); diff != "" {
|
|
|
|
t.Errorf("diff: (-expected +actual)\n%s", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHeredocScalarString(t *testing.T) {
|
|
|
|
src := `<? <<<"CAD"
|
|
|
|
hello
|
|
|
|
CAD;
|
|
|
|
`
|
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
|
|
|
Expr: &scalar.String{Value: "\thello\n"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-01-06 14:05:48 +00:00
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
actual, _, _ := parser.Parse(bytes.NewBufferString(src), "test.php")
|
2018-01-06 14:05:48 +00:00
|
|
|
|
|
|
|
if diff := pretty.Compare(expected, actual); diff != "" {
|
|
|
|
t.Errorf("diff: (-expected +actual)\n%s", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNowdocScalarString(t *testing.T) {
|
|
|
|
src := `<? <<<'CAD'
|
|
|
|
hello $world
|
|
|
|
CAD;
|
|
|
|
`
|
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
expected := &stmt.StmtList{
|
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
|
|
|
Expr: &scalar.String{Value: "\thello $world\n"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-01-06 14:05:48 +00:00
|
|
|
|
2018-01-09 13:51:32 +00:00
|
|
|
actual, _, _ := parser.Parse(bytes.NewBufferString(src), "test.php")
|
2018-01-06 14:05:48 +00:00
|
|
|
|
|
|
|
if diff := pretty.Compare(expected, actual); diff != "" {
|
|
|
|
t.Errorf("diff: (-expected +actual)\n%s", diff)
|
|
|
|
}
|
|
|
|
}
|