-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathActionPanel.test.js
More file actions
531 lines (504 loc) · 22.8 KB
/
ActionPanel.test.js
File metadata and controls
531 lines (504 loc) · 22.8 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
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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
// @flow
import React from 'react';
import Adapter from 'enzyme-adapter-react-16';
import { configure, mount } from 'enzyme';
import { IntlProvider } from 'react-intl';
import ActionPanel from './ActionPanel';
import ProgramSequence from './ProgramSequence';
import messages from './messages.json';
configure({ adapter: new Adapter()});
function createMountActionPanel(props) {
const mockDeleteHandler = jest.fn();
const mockReplaceHandler = jest.fn();
const mockMoveToPreviousStep = jest.fn();
const mockMoveToNextStep = jest.fn();
const wrapper = mount(
React.createElement(
ActionPanel,
Object.assign(
{
focusedOptionName: null,
selectedCommandName: 'right45',
programSequence: new ProgramSequence(
[
{block: 'forward1'},
{block: 'left45'},
{block: 'right45'}
],
0,
0,
new Map()
),
pressedStepIndex: 1,
position: {
top: 0,
right: 0
},
onDelete: mockDeleteHandler,
onReplace: mockReplaceHandler,
onMoveToPreviousStep: mockMoveToPreviousStep,
onMoveToNextStep: mockMoveToNextStep
},
props
)
),
{
wrappingComponent: IntlProvider,
wrappingComponentProps: {
locale: 'en',
defaultLocale: 'en',
messages: messages.en
}
}
);
return {
wrapper,
mockDeleteHandler,
mockReplaceHandler,
mockMoveToPreviousStep,
mockMoveToNextStep
};
}
function getActionPanelOptionButtons(actionPanelWrapper, controlName) {
return actionPanelWrapper.find({name: controlName}).at(0);
}
describe('ActionPanel options', () => {
test('When the deleteCurrentStep option is selected on second step turn left 45 of the program', () => {
const pressedStepIndex = 1;
const { wrapper, mockDeleteHandler } = createMountActionPanel({
pressedStepIndex: pressedStepIndex
});
const deleteButton = getActionPanelOptionButtons(wrapper, 'deleteCurrentStep');
const expectedAriaLabel = 'Delete Step 2 turn left 45 degrees';
expect(deleteButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
deleteButton.simulate('click');
expect(mockDeleteHandler.mock.calls.length).toBe(1);
expect(mockDeleteHandler.mock.calls[0][0]).toBe(pressedStepIndex);
});
test('When the replaceCurrentStep option is selected on second step turn left 45 of the program', () => {
const pressedStepIndex = 1;
const { wrapper, mockReplaceHandler } = createMountActionPanel({
pressedStepIndex: pressedStepIndex
});
const replaceCurrentStepButton = getActionPanelOptionButtons(wrapper, 'replaceCurrentStep');
const expectedAriaLabel = 'Replace Step 2 turn left 45 degrees with selected action turn right 45 degrees';
expect(replaceCurrentStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
replaceCurrentStepButton.simulate('click');
expect(mockReplaceHandler.mock.calls.length).toBe(1);
expect(mockReplaceHandler.mock.calls[0][0]).toBe(pressedStepIndex);
});
test('When the moveToPreviousStep option is selected on second step turn left 45 of the program', () => {
const pressedStepIndex = 1;
const { wrapper, mockMoveToPreviousStep } = createMountActionPanel({
pressedStepIndex: pressedStepIndex
});
const moveToPreviousStepButton = getActionPanelOptionButtons(wrapper, 'moveToPreviousStep');
const expectedAriaLabel = 'Move Step 2 turn left 45 degrees before step 1 forward 1 square';
expect(moveToPreviousStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
moveToPreviousStepButton.simulate('click');
expect(mockMoveToPreviousStep.mock.calls.length).toBe(1);
expect(mockMoveToPreviousStep.mock.calls[0][0]).toBe(pressedStepIndex);
});
test('When the moveToPreviousStep option is selected on first step of the program', () => {
const { wrapper, mockMoveToPreviousStep } = createMountActionPanel({
pressedStepIndex: 0
});
const moveToPreviousStepButton = getActionPanelOptionButtons(wrapper, 'moveToPreviousStep');
const expectedAriaLabel = 'Move Step 1 forward 1 square ';
expect(moveToPreviousStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
expect(moveToPreviousStepButton.get(0).props['disabled']).toBe(true);
moveToPreviousStepButton.simulate('click');
// Move to previous button is disabled when a block is the first block, clicking doesn't do anything
expect(mockMoveToPreviousStep.mock.calls.length).toBe(0);
});
test('When the moveToPreviousStep option is selected on a startLoop block at the beginning', () => {
const { wrapper, mockMoveToPreviousStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{block: 'startLoop', label: 'A', iterations: 1},
{block: 'forward1'},
{block: 'endLoop', label: 'A' }
],
0,
1,
new Map()
),
pressedStepIndex: 0
});
const moveToPreviousStepButton = getActionPanelOptionButtons(wrapper, 'moveToPreviousStep');
const expectedAriaLabel = "Move Step 1 loop A ";
expect(moveToPreviousStepButton.get(0).props['disabled']).toBe(true);
moveToPreviousStepButton.simulate('click');
expect(moveToPreviousStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
// Move to previous button is disabled when a block is the first block, clicking doesn't do anything
expect(mockMoveToPreviousStep.mock.calls.length).toBe(0);
});
test('When the moveToPreviousStep option is selected on an endLoop block with its pair startLoop block at the beginning', () => {
const { wrapper, mockMoveToPreviousStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{block: 'startLoop', label: 'A', iterations: 1},
{block: 'forward1'},
{block: 'endLoop', label: 'A' }
],
0,
1,
new Map()
),
pressedStepIndex: 2
});
const moveToPreviousStepButton = getActionPanelOptionButtons(wrapper, 'moveToPreviousStep');
const expectedAriaLabel = "Move Step 3 loop A ";
expect(moveToPreviousStepButton.get(0).props['disabled']).toBe(true);
moveToPreviousStepButton.simulate('click');
expect(moveToPreviousStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
// Move to previous button is disabled when a block is the first block, clicking doesn't do anything
expect(mockMoveToPreviousStep.mock.calls.length).toBe(0);
});
test('When the moveToPreviousStep option is selected on a startLoop block on second step of a program', () => {
const { wrapper, mockMoveToPreviousStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{block: 'forward1'},
{block: 'startLoop', label: 'A', iterations: 1},
{block: 'endLoop', label: 'A' }
],
0,
1,
new Map()
),
pressedStepIndex: 1
});
const moveToPreviousStepButton = getActionPanelOptionButtons(wrapper, 'moveToPreviousStep');
const expectedAriaLabel = "Move Step 2 loop A before step 1 forward 1 square";
moveToPreviousStepButton.simulate('click');
expect(moveToPreviousStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
expect(mockMoveToPreviousStep.mock.calls.length).toBe(1);
});
test('When the moveToPreviousStep option is selected on a endLoop block on third step of a program', () => {
const { wrapper, mockMoveToPreviousStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{block: 'forward1'},
{block: 'startLoop', label: 'A', iterations: 1},
{block: 'endLoop', label: 'A' }
],
0,
1,
new Map()
),
pressedStepIndex: 2
});
const moveToPreviousStepButton = getActionPanelOptionButtons(wrapper, 'moveToPreviousStep');
const expectedAriaLabel = "Move Step 3 loop A before step 1 forward 1 square";
moveToPreviousStepButton.simulate('click');
expect(moveToPreviousStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
expect(mockMoveToPreviousStep.mock.calls.length).toBe(1);
});
test('When the moveToPreviousStep option is selected on a step next to a startLoop', () => {
const { wrapper, mockMoveToPreviousStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{
block: 'startLoop',
label: 'A',
iterations: 1
},
{
block: 'forward1',
cache: new Map([
['containingLoopPosition', 1],
['containingLoopLabel', 'A']
])
},
{
block: 'endLoop',
label: 'A'
}
],
0,
1,
new Map()
),
pressedStepIndex: 1
});
const moveToPreviousStepButton = getActionPanelOptionButtons(wrapper, 'moveToPreviousStep');
const expectedAriaLabel = "Move Step 1 forward 1 square out before loop A";
moveToPreviousStepButton.simulate('click');
expect(moveToPreviousStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
expect(mockMoveToPreviousStep.mock.calls.length).toBe(1);
});
test('When the moveToPreviousStep option is selected on a step next to a endLoop', () => {
const { wrapper, mockMoveToPreviousStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{block: 'startLoop', label: 'A', iterations: 1},
{block: 'endLoop', label: 'A' },
{block: 'forward1'}
],
0,
1,
new Map()
),
pressedStepIndex: 2
});
const moveToPreviousStepButton = getActionPanelOptionButtons(wrapper, 'moveToPreviousStep');
const expectedAriaLabel = "Move Step 3 forward 1 square into the end of loop A";
moveToPreviousStepButton.simulate('click');
expect(moveToPreviousStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
expect(mockMoveToPreviousStep.mock.calls.length).toBe(1);
});
test('When the moveToPreviousStep option is selected on second step in a loop', () => {
const { wrapper, mockMoveToPreviousStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{
block: 'startLoop',
label: 'A',
iterations: 1
},
{
block: 'forward1',
cache: new Map([
['containingLoopPosition', 1],
['containingLoopLabel', 'A']
])
},
{
block: 'forward2',
cache: new Map([
['containingLoopPosition', 2],
['containingLoopLabel', 'A']
])
},
{
block: 'endLoop',
label: 'A'
}
],
0,
1,
new Map()
),
pressedStepIndex: 2
});
const moveToPreviousStepButton = getActionPanelOptionButtons(wrapper, 'moveToPreviousStep');
const expectedAriaLabel = "Move Step 2 forward 2 squares before step 1 forward 1 square of loop A";
moveToPreviousStepButton.simulate('click');
expect(moveToPreviousStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
expect(mockMoveToPreviousStep.mock.calls.length).toBe(1);
});
test('When the moveToNextStep option is selected on second step turn left 45 of the program', () => {
const pressedStepIndex = 1;
const { wrapper, mockMoveToNextStep } = createMountActionPanel({
pressedStepIndex: pressedStepIndex
});
const moveToNextStepButton = getActionPanelOptionButtons(wrapper, 'moveToNextStep');
const expectedAriaLabel = 'Move Step 2 turn left 45 degrees after step 3 turn right 45 degrees';
expect(moveToNextStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
moveToNextStepButton.simulate('click');
expect(mockMoveToNextStep.mock.calls.length).toBe(1);
expect(mockMoveToNextStep.mock.calls[0][0]).toBe(pressedStepIndex);
});
test('When the moveToNextStep option is selected on last step of the program', () => {
const { wrapper, mockMoveToNextStep } = createMountActionPanel({
pressedStepIndex: 2
});
const moveToNextStepButton = getActionPanelOptionButtons(wrapper, 'moveToNextStep');
const expectedAriaLabel = 'Move Step 3 turn right 45 degrees ';
expect(moveToNextStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
expect(moveToNextStepButton.get(0).props['disabled']).toBe(true);
moveToNextStepButton.simulate('click');
// Move to next button is disabled when a block is the last block, clicking doesn't do anything
expect(mockMoveToNextStep.mock.calls.length).toBe(0);
});
test('When the moveToNextStep option is selected on a startLoop block at the beginning with its pair endLoop block at the end', () => {
const { wrapper, mockMoveToNextStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{block: 'startLoop', label: 'A', iterations: 1},
{block: 'forward1'},
{block: 'endLoop', label: 'A' }
],
0,
1,
new Map()
),
pressedStepIndex: 0
});
const moveToNextStepButton = getActionPanelOptionButtons(wrapper, 'moveToNextStep');
const expectedAriaLabel = "Move Step 1 loop A ";
expect(moveToNextStepButton.get(0).props['disabled']).toBe(true);
moveToNextStepButton.simulate('click');
expect(moveToNextStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
// Move to previous button is disabled when a block is the first block, clicking doesn't do anything
expect(mockMoveToNextStep.mock.calls.length).toBe(0);
});
test('When the moveToNextStep option is selected on an endLoop block with its pair startLoop block at the beginning', () => {
const { wrapper, mockMoveToNextStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{block: 'startLoop', label: 'A', iterations: 1},
{block: 'forward1'},
{block: 'endLoop', label: 'A' }
],
0,
1,
new Map()
),
pressedStepIndex: 2
});
const moveToNextStepButton = getActionPanelOptionButtons(wrapper, 'moveToNextStep');
const expectedAriaLabel = "Move Step 3 loop A ";
expect(moveToNextStepButton.get(0).props['disabled']).toBe(true);
moveToNextStepButton.simulate('click');
expect(moveToNextStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
// Move to previous button is disabled when a block is the first block, clicking doesn't do anything
expect(mockMoveToNextStep.mock.calls.length).toBe(0);
});
test('When the moveToNextStep option is selected on a startLoop block on first step of a program', () => {
const { wrapper, mockMoveToNextStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{block: 'startLoop', label: 'A', iterations: 1},
{block: 'endLoop', label: 'A' },
{block: 'forward1'}
],
0,
1,
new Map()
),
pressedStepIndex: 0
});
const moveToNextStepButton = getActionPanelOptionButtons(wrapper, 'moveToNextStep');
const expectedAriaLabel = "Move Step 1 loop A after step 3 forward 1 square";
moveToNextStepButton.simulate('click');
expect(moveToNextStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
expect(mockMoveToNextStep.mock.calls.length).toBe(1);
});
test('When the moveToNextStep option is selected on a endLoop block on third step of a program', () => {
const { wrapper, mockMoveToNextStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{block: 'startLoop', label: 'A', iterations: 1},
{block: 'endLoop', label: 'A' },
{block: 'forward1'}
],
0,
1,
new Map()
),
pressedStepIndex: 1
});
const moveToNextStepButton = getActionPanelOptionButtons(wrapper, 'moveToNextStep');
const expectedAriaLabel = "Move Step 2 loop A after step 3 forward 1 square";
moveToNextStepButton.simulate('click');
expect(moveToNextStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
expect(mockMoveToNextStep.mock.calls.length).toBe(1);
});
test('When the moveToNextStep option is selected on a step next to a endLoop', () => {
const { wrapper, mockMoveToNextStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{
block: 'startLoop',
label: 'A',
iterations: 1
},
{
block: 'forward1',
cache: new Map([
['containingLoopPosition', 1],
['containingLoopLabel', 'A']
])
},
{
block: 'endLoop',
label: 'A'
}
],
0,
1,
new Map()
),
pressedStepIndex: 1
});
const moveToNextStepButton = getActionPanelOptionButtons(wrapper, 'moveToNextStep');
const expectedAriaLabel = "Move Step 1 forward 1 square out after loop A";
moveToNextStepButton.simulate('click');
expect(moveToNextStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
expect(mockMoveToNextStep.mock.calls.length).toBe(1);
});
test('When the moveToNextStep option is selected on a step next to a startLoop', () => {
const { wrapper, mockMoveToNextStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{block: 'forward1'},
{block: 'startLoop', label: 'A', iterations: 1},
{block: 'endLoop', label: 'A' }
],
0,
1,
new Map()
),
pressedStepIndex: 0
});
const moveToNextStepButton = getActionPanelOptionButtons(wrapper, 'moveToNextStep');
const expectedAriaLabel = "Move Step 1 forward 1 square into the beginning of loop A";
moveToNextStepButton.simulate('click');
expect(moveToNextStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
expect(mockMoveToNextStep.mock.calls.length).toBe(1);
});
test('When the moveToNextStep option is selected on first step in a loop', () => {
const { wrapper, mockMoveToNextStep } = createMountActionPanel({
programSequence: new ProgramSequence(
[
{
block: 'startLoop',
label: 'A',
iterations: 1
},
{
block: 'forward1',
cache: new Map([
['containingLoopPosition', 1],
['containingLoopLabel', 'A']
])
},
{
block: 'forward2',
cache: new Map([
['containingLoopPosition', 2],
['containingLoopLabel', 'A']
])
},
{
block: 'endLoop',
label: 'A'
}
],
0,
1,
new Map()
),
pressedStepIndex: 1
});
const moveToNextStepButton = getActionPanelOptionButtons(wrapper, 'moveToNextStep');
const expectedAriaLabel = "Move Step 1 forward 1 square after step 2 forward 2 squares of loop A";
moveToNextStepButton.simulate('click');
expect(moveToNextStepButton.get(0).props['aria-label']).toBe(expectedAriaLabel);
expect(mockMoveToNextStep.mock.calls.length).toBe(1);
});
});
test('When ActionPanel renders, auto scroll to show full ActionPanel', () => {
const mockScrollIntoView = jest.fn();
window.HTMLElement.prototype.scrollIntoView = mockScrollIntoView
expect(mockScrollIntoView.mock.calls.length).toBe(0);
createMountActionPanel();
expect(mockScrollIntoView.mock.calls.length).toBe(1);
expect(mockScrollIntoView.mock.calls[0][0]).toStrictEqual({
behavior: 'auto',
block: 'nearest',
inline: 'nearest'
});
});