aboutsummaryrefslogtreecommitdiff
path: root/unit-tests/lexer/quoting.test
blob: a44d6afa4a97dd4051ee656e702e3219aa8c711e (plain)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# file      : unit-tests/lexer/quoting.test
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

test.options += -q

: unquoted
:
$* <'foo' >>EOO
'foo'
<newline>
EOO

: comp
:
{
  : single
  :
  $* <":'foo':" >>EOO
  :
  'foo' [S/C]
  :
  <newline>
  EOO

  : double
  :
  $* <':"foo":' >>EOO
  :
  'foo' [D/C]
  :
  <newline>
  EOO

  : single-empty
  :
  $* <"''" >>EOO
  '' [S/C]
  <newline>
  EOO

  : double-empty
  :
  $* <'""' >>EOO
  '' [D/C]
  <newline>
  EOO
}

: part
{
  : quoted
  {
    : start
    : Token start already quoted
    :
    $* <'"$foo"' >>EOO
    '' [D/P]
    $ [D/C]
    'foo' [D/P]
    <newline>
    EOO

    : end
    : Token end still quoted
    :
    $* <'"foo$"' >>EOO
    'foo' [D/P]
    $ [D/C]
    '' [D/P]
    <newline>
    EOO
  }

  : unquoted
  {
    : start
    : Token starts with unquoted character
    :
    $* <'f"oo"' >>EOO
    'foo' [D/P]
    <newline>
    EOO

    : end
    : Token continous with unquoted character
    :
    $* <'"fo"o' >>EOO
    'foo' [D/P]
    <newline>
    EOO

    : escape
    : Token continous with unquoted escaped character
    :
    $* <'"fo"\"' >>EOO
    'fo"' [D/P]
    <newline>
    EOO
  }
}

: mixed
:
$* <"\"fo\"'o'" >>EOO
'foo' [M/P]
<newline>
EOO