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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
Testing utpl switch statements.
1. Ensure that execution starts at the first matching case.
-- Expect stdout --
1a
-- End --
-- Testcase --
{%
switch (1) {
case 1:
print("1a\n");
break;
case 1:
print("1b\n");
break;
case 2:
print("2\n");
break;
}
%}
-- End --
2. Ensure that default case is only used if no case matches,
even if declared first.
-- Expect stdout --
1
default
-- End --
-- Testcase --
{%
for (n in [1, 3]) {
switch (n) {
default:
print("default\n");
break;
case 1:
print("1\n");
break;
case 2:
print("2\n");
break;
}
}
%}
-- End --
3. Ensure that cases without break fall through into
subsequent cases.
-- Expect stdout --
1
2
default
1
2
-- End --
-- Testcase --
{%
for (n in [1, 3]) {
switch (n) {
default:
print("default\n");
case 1:
print("1\n");
case 2:
print("2\n");
}
}
%}
-- End --
4. Ensure that duplicate default cases emit a syntax
error during parsing.
-- Expect stderr --
Syntax error: more than one switch default case
In line 6, byte 9:
` default:`
Near here -----^
-- End --
-- Testcase --
{%
switch (1) {
default:
print("default1\n");
default:
print("default2\n");
}
%}
-- End --
5. Ensure that case values use strict comparison.
-- Expect stdout --
b
b
-- End --
-- Testcase --
{%
switch (1.0) {
case 1:
print("a\n");
break;
case 1.0:
print("b\n");
break;
}
switch ("123") {
case 123:
print("a\n");
break;
case "123":
print("b\n");
break;
}
%}
-- End --
6. Ensure that case values may be complex expressions.
-- Expect stdout --
2, 3, 1
-- End --
-- Testcase --
{%
switch (1) {
case a = 2, b = 3, c = 1:
print(join(", ", [ a, b, c ]), "\n");
break;
}
%}
-- End --
7. Ensure that empty switch statements are accepted by the
parser and that the test expression is evaluated.
-- Expect stdout --
true
-- End --
-- Testcase --
{%
x = false;
switch (x = true) {
}
print(x, "\n");
%}
-- End --
|