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-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-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-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-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-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-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-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-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-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-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
|
|
|
}
|