-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiterational-cjs.test.js
101 lines (78 loc) · 3.32 KB
/
iterational-cjs.test.js
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
import { describe, it, expect, vi } from 'vitest';
const { sync, seq, parallel } = require('../gen/index.cjs');
describe('Iterational Tests', () => {
describe('sync()', () => {
it('should execute the callback for each item in order', () => {
const mockCallback = vi.fn();
const items = [1, 2, 3];
sync(items, mockCallback);
expect(mockCallback).toHaveBeenCalledTimes(items.length);
expect(mockCallback.mock.calls).toEqual([[1], [2], [3]]);
});
it('should handle an empty array without errors', () => {
const mockCallback = vi.fn();
sync([], mockCallback);
expect(mockCallback).not.toHaveBeenCalled();
});
});
describe('seq()', () => {
it('should execute the callback sequentially for each item', async () => {
const callOrder = [];
const mockCallback = vi.fn(async (item) => {
callOrder.push(item);
});
const items = [1, 2, 3];
await seq(items, mockCallback);
expect(mockCallback).toHaveBeenCalledTimes(items.length);
expect(callOrder).toEqual(items);
});
it('should handle an empty array without errors', async () => {
const mockCallback = vi.fn();
await seq([], mockCallback);
expect(mockCallback).not.toHaveBeenCalled();
});
it('should await async operations in order', async () => {
const results = [];
const mockCallback = vi.fn(async (item) => {
await new Promise((resolve) => setTimeout(resolve, 50));
results.push(item);
});
const items = [1, 2, 3];
await seq(items, mockCallback);
expect(results).toEqual(items);
});
});
describe('parallel()', () => {
it('should execute the callback for each item in parallel', async () => {
const mockCallback = vi.fn(async (item) => {
await new Promise((resolve) => setTimeout(resolve, 50));
return item * 2;
});
const items = [1, 2, 3];
const results = await parallel(items, mockCallback);
expect(mockCallback).toHaveBeenCalledTimes(items.length);
expect(results).toEqual([2, 4, 6]);
});
it('should handle an empty array without errors', async () => {
const mockCallback = vi.fn();
const results = await parallel([], mockCallback);
expect(mockCallback).not.toHaveBeenCalled();
expect(results).toEqual([]);
});
it('should execute all callbacks concurrently', async () => {
const startTime = Date.now();
const delay = (ms) =>
new Promise((resolve) => setTimeout(resolve, ms));
const mockCallback = vi.fn(async (item) => {
await delay(100);
return item;
});
const items = [1, 2, 3];
await parallel(items, mockCallback);
const endTime = Date.now();
const duration = endTime - startTime;
// Since all async tasks run in parallel, duration should be close to 100ms (not 300ms)
expect(duration).toBeLessThan(150);
});
});
});