-
Notifications
You must be signed in to change notification settings - Fork 1
/
promise-all.test.js
114 lines (100 loc) · 3.06 KB
/
promise-all.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
102
103
104
105
106
107
108
109
110
111
112
113
114
const axios = require("axios");
function myPromiseAll(promises) {
return new Promise((resolve, reject) => {
const results = [];
let resolvedCounter = 0;
promises.forEach((promise, index) => {
Promise.resolve(promise)
.then((value) => {
results[index] = value;
resolvedCounter++;
if (resolvedCounter === promises.length) resolve(results);
})
.catch((err) => reject(err));
});
});
}
jest.useRealTimers();
describe("myPromiseAll unit test", () => {
it("Resolve all promise", async () => {
// Arrange
const promise1 = Promise.resolve("Value 1");
const promise2 = Promise.resolve("Value 2");
const promise3 = Promise.resolve("Value 3");
const results = await myPromiseAll([promise1, promise2, promise3]);
expect(results).toEqual(["Value 1", "Value 2", "Value 3"]);
});
it("Rejects all if one promise get rejected", async () => {
// Arrange
const promise1 = Promise.resolve("Value 1");
const promise2 = Promise.reject("Error");
const promise3 = Promise.resolve("Value 3");
try {
await myPromiseAll([promise1, promise2, promise3]);
} catch (error) {
expect(error).toEqual("Error");
}
});
it("Resolve all delayed promise", async () => {
// Arrange
const promise1 = new Promise((res, rej) => {
setTimeout(res, 1000, "Value 1");
});
const promise2 = new Promise((res, rej) => {
setTimeout(res, 100, "Value 2");
});
const promise3 = "Value 3";
const results = await myPromiseAll([promise1, promise2, promise3]);
expect(results).toEqual(["Value 1", "Value 2", "Value 3"]);
});
it("Should resolve all API calls", async () => {
function makeRequest(url) {
return new Promise((resolve, reject) => {
axios
.get(url)
.then((response) => {
resolve(response.data);
})
.catch((error) => {
reject(error);
});
});
}
const urls = [
"https://jsonplaceholder.typicode.com/posts/1",
"https://jsonplaceholder.typicode.com/posts/2",
"https://jsonplaceholder.typicode.com/posts/3",
];
const promises = urls.map((url) => makeRequest(url));
myPromiseAll(promises)
.then((data) => {
expect(data.length).toBe(3);
})
.catch((error) => {});
});
it("Should not resolve all API calls if any of them fails", async () => {
function makeRequest(url) {
return new Promise((resolve, reject) => {
axios
.get(url)
.then((response) => {
resolve(response.data);
})
.catch((error) => {
reject(error);
});
});
}
const urls = [
"https://jsonplaceholder.typicode.com/posts/1",
"https://jsonplaceholder.tt.typicode.tt.com/posts/2",
"https://jsonplaceholder.typicode.com/posts/3",
];
const promises = urls.map((url) => makeRequest(url));
myPromiseAll(promises)
.then((data) => {})
.catch((error) => {
expect(error).not.toBeNull();
});
});
});