126 lines
2.9 KiB
Go
126 lines
2.9 KiB
Go
package scalar_test
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
|
|
"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"
|
|
"github.com/z7zmey/php-parser/php7"
|
|
)
|
|
|
|
func TestDoubleQuotedScalarString(t *testing.T) {
|
|
src := `<? "test";`
|
|
|
|
expected := &node.Root{
|
|
Stmts: []node.Node{
|
|
&stmt.Expression{
|
|
Expr: &scalar.String{Value: "\"test\""},
|
|
},
|
|
},
|
|
}
|
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
php7parser.Parse()
|
|
actual := php7parser.GetRootNode()
|
|
assertEqual(t, expected, actual)
|
|
|
|
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
|
|
php5parser.Parse()
|
|
actual = php5parser.GetRootNode()
|
|
assertEqual(t, expected, actual)
|
|
}
|
|
func TestDoubleQuotedScalarStringWithEscapedVar(t *testing.T) {
|
|
src := `<? "\$test";`
|
|
|
|
expected := &node.Root{
|
|
Stmts: []node.Node{
|
|
&stmt.Expression{
|
|
Expr: &scalar.String{Value: "\"\\$test\""},
|
|
},
|
|
},
|
|
}
|
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
php7parser.Parse()
|
|
actual := php7parser.GetRootNode()
|
|
assertEqual(t, expected, actual)
|
|
|
|
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
|
|
php5parser.Parse()
|
|
actual = php5parser.GetRootNode()
|
|
assertEqual(t, expected, actual)
|
|
}
|
|
|
|
func TestMultilineDoubleQuotedScalarString(t *testing.T) {
|
|
src := `<? "
|
|
test
|
|
";`
|
|
|
|
expected := &node.Root{
|
|
Stmts: []node.Node{
|
|
&stmt.Expression{
|
|
Expr: &scalar.String{Value: "\"\n\ttest\n\t\""},
|
|
},
|
|
},
|
|
}
|
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
php7parser.Parse()
|
|
actual := php7parser.GetRootNode()
|
|
assertEqual(t, expected, actual)
|
|
|
|
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
|
|
php5parser.Parse()
|
|
actual = php5parser.GetRootNode()
|
|
assertEqual(t, expected, actual)
|
|
}
|
|
|
|
func TestSingleQuotedScalarString(t *testing.T) {
|
|
src := `<? '$test';`
|
|
|
|
expected := &node.Root{
|
|
Stmts: []node.Node{
|
|
&stmt.Expression{
|
|
Expr: &scalar.String{Value: "'$test'"},
|
|
},
|
|
},
|
|
}
|
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
php7parser.Parse()
|
|
actual := php7parser.GetRootNode()
|
|
assertEqual(t, expected, actual)
|
|
|
|
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
|
|
php5parser.Parse()
|
|
actual = php5parser.GetRootNode()
|
|
assertEqual(t, expected, actual)
|
|
}
|
|
|
|
func TestMultilineSingleQuotedScalarString(t *testing.T) {
|
|
src := `<? '
|
|
$test
|
|
';`
|
|
|
|
expected := &node.Root{
|
|
Stmts: []node.Node{
|
|
&stmt.Expression{
|
|
Expr: &scalar.String{Value: "'\n\t$test\n\t'"},
|
|
},
|
|
},
|
|
}
|
|
|
|
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
|
|
php7parser.Parse()
|
|
actual := php7parser.GetRootNode()
|
|
assertEqual(t, expected, actual)
|
|
|
|
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
|
|
php5parser.Parse()
|
|
actual = php5parser.GetRootNode()
|
|
assertEqual(t, expected, actual)
|
|
}
|