string_feature.test
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
""
''
"foo"
'foo'
"foo
bar"
'foo
bar'
"'foo'"
'"bar"'
"$@"
"${foo}"
<< STRING_END
foo
bar
STRING_END
<< EOF
foo $@
bar
EOF
<< 'EOF'
'single quoted string'
"double quoted string"
EOF
<< "EOF"
foo
bar
EOF
----------------------------------------------------
[
["string", ["\"\""]],
["string", ["''"]],
["string", ["\"foo\""]],
["string", ["'foo'"]],
["string", ["\"foo\r\nbar\""]],
["string", ["'foo\r\nbar'"]],
["string", ["\"'foo'\""]],
["string", ["'\"bar\"'"]],
["string", [
"\"", ["variable", "$@"], "\""
]],
["string", [
"\"", ["variable", "${foo}"], "\""
]],
["operator", "<<"],
["string", ["STRING_END\r\nfoo\r\nbar\r\nSTRING_END"]],
["operator", "<<"],
["string", ["EOF\r\nfoo ", ["variable", "$@"], "\r\nbar\r\nEOF"]],
["operator", "<<"],
["string", ["'EOF'\r\n'single quoted string'\r\n\"double quoted string\"\r\nEOF"]],
["operator", "<<"],
["string", ["\"EOF\"\r\nfoo\r\nbar\r\nEOF"]]
]
----------------------------------------------------
Checks for single-quoted and double-quoted strings.
Also checks for variables in strings.