-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeoryUtil.test.ts
43 lines (41 loc) · 1.45 KB
/
theoryUtil.test.ts
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
import {
rotateArray,
rotateBackToFront,
rotateFrontToBack,
} from "./theoryUtil";
describe("theory util tests", () => {
describe("rotate tests", () => {
it.each`
rotationFunction | array | expected
${rotateFrontToBack} | ${[]} | ${[]}
${rotateFrontToBack} | ${[1]} | ${[1]}
${rotateFrontToBack} | ${[1, 2, 3]} | ${[2, 3, 1]}
${rotateBackToFront} | ${[]} | ${[]}
${rotateBackToFront} | ${[1]} | ${[1]}
${rotateBackToFront} | ${[1, 2, 3]} | ${[3, 1, 2]}
`(
"$function should return $expected if array is $array",
({ rotationFunction, array, expected }) => {
rotationFunction(array);
expect(array).toEqual(expected);
},
);
});
describe("rotateArray tests", () => {
it.each`
array | times | direction | expected
${[]} | ${100} | ${"frontToBack"} | ${[]}
${[1]} | ${100} | ${"frontToBack"} | ${[1]}
${[1, 2, 3]} | ${3} | ${"frontToBack"} | ${[1, 2, 3]}
${[1, 2, 3]} | ${3} | ${"backToFront"} | ${[1, 2, 3]}
${[1, 2, 3]} | ${2} | ${"frontToBack"} | ${[3, 1, 2]}
${[1, 2, 3]} | ${2} | ${"backToFront"} | ${[2, 3, 1]}
`(
"rotate $array $times times in $direction direction and expect $expected",
({ array, times, direction, expected }) => {
rotateArray(array, times, direction);
expect(array).toEqual(expected);
},
);
});
});