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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\Tests\SpecTestsuites\Core;
use Nsfisis\Waddiwasi\Tests\SpecTestsuites\SpecTestsuiteBase;
use PHPUnit\Framework\Attributes\DoesNotPerformAssertions;
final class FuncPtrsTest extends SpecTestsuiteBase
{
public function testModule0(): void
{
$this->runModuleCommand(
filename: 'func_ptrs.0.wasm',
name: null,
line: 1,
);
}
public function testAssertReturn1(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'one', 'args' => []],
expected: [['type' => 'i32', 'value' => '13']],
line: 27,
);
}
public function testAssertReturn2(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'two', 'args' => [['type' => 'i32', 'value' => '13']]],
expected: [['type' => 'i32', 'value' => '14']],
line: 28,
);
}
public function testAssertReturn3(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'three', 'args' => [['type' => 'i32', 'value' => '13']]],
expected: [['type' => 'i32', 'value' => '11']],
line: 29,
);
}
public function testAction4(): void
{
$this->runActionCommand(
action: ['type' => 'invoke', 'field' => 'four', 'args' => [['type' => 'i32', 'value' => '83']]],
line: 30,
);
}
public function testAssertInvalid5(): void
{
$this->runAssertInvalidCommand(
filename: 'func_ptrs.1.wasm',
text: 'unknown table',
line: 32,
);
}
public function testAssertInvalid6(): void
{
$this->runAssertInvalidCommand(
filename: 'func_ptrs.2.wasm',
text: 'unknown table',
line: 33,
);
}
public function testAssertInvalid7(): void
{
$this->runAssertInvalidCommand(
filename: 'func_ptrs.3.wasm',
text: 'type mismatch',
line: 36,
);
}
public function testAssertInvalid8(): void
{
$this->runAssertInvalidCommand(
filename: 'func_ptrs.4.wasm',
text: 'constant expression required',
line: 40,
);
}
public function testAssertInvalid9(): void
{
$this->runAssertInvalidCommand(
filename: 'func_ptrs.5.wasm',
text: 'constant expression required',
line: 44,
);
}
public function testAssertInvalid10(): void
{
$this->runAssertInvalidCommand(
filename: 'func_ptrs.6.wasm',
text: 'unknown type',
line: 48,
);
}
public function testAssertInvalid11(): void
{
$this->runAssertInvalidCommand(
filename: 'func_ptrs.7.wasm',
text: 'unknown type',
line: 49,
);
}
public function testModule12(): void
{
$this->runModuleCommand(
filename: 'func_ptrs.8.wasm',
name: null,
line: 51,
);
}
public function testAssertReturn13(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callt', 'args' => [['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i32', 'value' => '1']],
line: 71,
);
}
public function testAssertReturn14(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callt', 'args' => [['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i32', 'value' => '2']],
line: 72,
);
}
public function testAssertReturn15(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callt', 'args' => [['type' => 'i32', 'value' => '2']]],
expected: [['type' => 'i32', 'value' => '3']],
line: 73,
);
}
public function testAssertReturn16(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callt', 'args' => [['type' => 'i32', 'value' => '3']]],
expected: [['type' => 'i32', 'value' => '4']],
line: 74,
);
}
public function testAssertReturn17(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callt', 'args' => [['type' => 'i32', 'value' => '4']]],
expected: [['type' => 'i32', 'value' => '5']],
line: 75,
);
}
public function testAssertReturn18(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callt', 'args' => [['type' => 'i32', 'value' => '5']]],
expected: [['type' => 'i32', 'value' => '1']],
line: 76,
);
}
public function testAssertReturn19(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callt', 'args' => [['type' => 'i32', 'value' => '6']]],
expected: [['type' => 'i32', 'value' => '3']],
line: 77,
);
}
public function testAssertTrap20(): void
{
$this->runAssertTrapCommand(
action: ['type' => 'invoke', 'field' => 'callt', 'args' => [['type' => 'i32', 'value' => '7']]],
text: 'undefined element',
line: 78,
);
}
public function testAssertTrap21(): void
{
$this->runAssertTrapCommand(
action: ['type' => 'invoke', 'field' => 'callt', 'args' => [['type' => 'i32', 'value' => '100']]],
text: 'undefined element',
line: 79,
);
}
public function testAssertTrap22(): void
{
$this->runAssertTrapCommand(
action: ['type' => 'invoke', 'field' => 'callt', 'args' => [['type' => 'i32', 'value' => '4294967295']]],
text: 'undefined element',
line: 80,
);
}
public function testAssertReturn23(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callu', 'args' => [['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i32', 'value' => '1']],
line: 82,
);
}
public function testAssertReturn24(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callu', 'args' => [['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i32', 'value' => '2']],
line: 83,
);
}
public function testAssertReturn25(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callu', 'args' => [['type' => 'i32', 'value' => '2']]],
expected: [['type' => 'i32', 'value' => '3']],
line: 84,
);
}
public function testAssertReturn26(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callu', 'args' => [['type' => 'i32', 'value' => '3']]],
expected: [['type' => 'i32', 'value' => '4']],
line: 85,
);
}
public function testAssertReturn27(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callu', 'args' => [['type' => 'i32', 'value' => '4']]],
expected: [['type' => 'i32', 'value' => '5']],
line: 86,
);
}
public function testAssertReturn28(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callu', 'args' => [['type' => 'i32', 'value' => '5']]],
expected: [['type' => 'i32', 'value' => '1']],
line: 87,
);
}
public function testAssertReturn29(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callu', 'args' => [['type' => 'i32', 'value' => '6']]],
expected: [['type' => 'i32', 'value' => '3']],
line: 88,
);
}
public function testAssertTrap30(): void
{
$this->runAssertTrapCommand(
action: ['type' => 'invoke', 'field' => 'callu', 'args' => [['type' => 'i32', 'value' => '7']]],
text: 'undefined element',
line: 89,
);
}
public function testAssertTrap31(): void
{
$this->runAssertTrapCommand(
action: ['type' => 'invoke', 'field' => 'callu', 'args' => [['type' => 'i32', 'value' => '100']]],
text: 'undefined element',
line: 90,
);
}
public function testAssertTrap32(): void
{
$this->runAssertTrapCommand(
action: ['type' => 'invoke', 'field' => 'callu', 'args' => [['type' => 'i32', 'value' => '4294967295']]],
text: 'undefined element',
line: 91,
);
}
public function testModule33(): void
{
$this->runModuleCommand(
filename: 'func_ptrs.9.wasm',
name: null,
line: 93,
);
}
public function testAssertReturn34(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callt', 'args' => [['type' => 'i32', 'value' => '0']]],
expected: [['type' => 'i32', 'value' => '1']],
line: 105,
);
}
public function testAssertReturn35(): void
{
$this->runAssertReturnCommand(
action: ['type' => 'invoke', 'field' => 'callt', 'args' => [['type' => 'i32', 'value' => '1']]],
expected: [['type' => 'i32', 'value' => '2']],
line: 106,
);
}
}
|