2018-01-12 07:41:08 +00:00
|
|
|
package scalar_test
|
2018-01-06 14:05:48 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
2019-02-13 20:18:07 +00:00
|
|
|
"gotest.tools/assert"
|
|
|
|
|
2018-01-06 14:05:48 +00:00
|
|
|
"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-06-24 07:19:44 +00:00
|
|
|
"github.com/z7zmey/php-parser/position"
|
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-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 10,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 10,
|
|
|
|
},
|
|
|
|
Expr: &scalar.String{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 9,
|
|
|
|
},
|
|
|
|
Value: "\"test\"",
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
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()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(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()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-01-06 14:05:48 +00:00
|
|
|
}
|
2018-06-24 07:19:44 +00:00
|
|
|
|
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-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 12,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 12,
|
|
|
|
},
|
|
|
|
Expr: &scalar.String{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 11,
|
|
|
|
},
|
|
|
|
Value: "\"\\$test\"",
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
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()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(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()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(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-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 3,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 14,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 3,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Expr: &scalar.String{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 3,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 13,
|
|
|
|
},
|
|
|
|
Value: "\"\n\ttest\n\t\"",
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
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()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(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()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(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-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 11,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 11,
|
|
|
|
},
|
|
|
|
Expr: &scalar.String{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 1,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 10,
|
|
|
|
},
|
|
|
|
Value: "'$test'",
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
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()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(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()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(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-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 3,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 15,
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
Stmts: []node.Node{
|
|
|
|
&stmt.Expression{
|
2018-06-24 07:19:44 +00:00
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 3,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 15,
|
|
|
|
},
|
|
|
|
Expr: &scalar.String{
|
|
|
|
Position: &position.Position{
|
|
|
|
StartLine: 1,
|
|
|
|
EndLine: 3,
|
|
|
|
StartPos: 4,
|
|
|
|
EndPos: 14,
|
|
|
|
},
|
|
|
|
Value: "'\n\t$test\n\t'",
|
|
|
|
},
|
2018-01-09 13:51:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
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()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(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()
|
2019-02-13 20:18:07 +00:00
|
|
|
assert.DeepEqual(t, expected, actual)
|
2018-04-09 20:26:44 +00:00
|
|
|
}
|