php-parser/node/scalar/t_string_test.go

126 lines
2.9 KiB
Go
Raw Normal View History

2018-01-12 07:41:08 +00:00
package scalar_test
2018-01-06 14:05:48 +00:00
import (
"bytes"
"testing"
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/node/scalar"
"github.com/z7zmey/php-parser/node/stmt"
2018-02-08 10:48:38 +00:00
"github.com/z7zmey/php-parser/php5"
2018-02-04 19:44:58 +00:00
"github.com/z7zmey/php-parser/php7"
2018-01-06 14:05:48 +00:00
)
func TestDoubleQuotedScalarString(t *testing.T) {
src := `<? "test";`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-01-09 13:51:32 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &scalar.String{Value: "\"test\""},
},
},
}
2018-01-06 14:05:48 +00:00
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-01-06 14:05:48 +00:00
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-01-06 14:05:48 +00:00
}
func TestDoubleQuotedScalarStringWithEscapedVar(t *testing.T) {
src := `<? "\$test";`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-01-09 13:51:32 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &scalar.String{Value: "\"\\$test\""},
},
},
}
2018-01-06 14:05:48 +00:00
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-01-06 14:05:48 +00:00
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-01-06 14:05:48 +00:00
}
func TestMultilineDoubleQuotedScalarString(t *testing.T) {
src := `<? "
test
";`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-01-09 13:51:32 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &scalar.String{Value: "\"\n\ttest\n\t\""},
},
},
}
2018-01-06 14:05:48 +00:00
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-01-06 14:05:48 +00:00
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-01-06 14:05:48 +00:00
}
func TestSingleQuotedScalarString(t *testing.T) {
src := `<? '$test';`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-01-09 13:51:32 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &scalar.String{Value: "'$test'"},
},
},
}
2018-01-06 14:05:48 +00:00
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-01-06 14:05:48 +00:00
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-01-06 14:05:48 +00:00
}
func TestMultilineSingleQuotedScalarString(t *testing.T) {
src := `<? '
$test
';`
2018-05-02 09:14:24 +00:00
expected := &node.Root{
2018-01-09 13:51:32 +00:00
Stmts: []node.Node{
&stmt.Expression{
Expr: &scalar.String{Value: "'\n\t$test\n\t'"},
},
},
}
2018-01-06 14:05:48 +00:00
2018-04-10 12:23:13 +00:00
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-01-06 14:05:48 +00:00
2018-04-10 12:23:13 +00:00
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
2018-02-08 10:48:38 +00:00
assertEqual(t, expected, actual)
2018-04-09 20:26:44 +00:00
}