Skip to content

Commit 7f1ecf8

Browse files
author
N.Onishchuk
committed
1.1.18 + badges
1 parent 2b0bb71 commit 7f1ecf8

File tree

2 files changed

+94
-28
lines changed

2 files changed

+94
-28
lines changed

__test__/index.test.js

+90-27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use strict';
22
const {arrMergeAsync, arrMergeSync} = require("../index");
3+
const ENV = ['prod', 'develop'];
34

45
function deepCopy(item) {
56
let copy = null;
@@ -12,15 +13,41 @@ function deepCopy(item) {
1213
return copy;
1314
}
1415

15-
function identifier(item) {
16+
function identifierOk(item) {
1617
return `${item.key}${item.child.key}`;
1718
}
1819

20+
function identifierThrow(item) {
21+
throw new Error('some error');
22+
}
23+
1924
function after(arr1, arr2) {
2025
arr1[0].value = 'AA';
2126
arr2[1].value = 'DD';
2227
}
2328

29+
function makeCircularObject() {
30+
this.abc = "abc";
31+
this.circular = this;
32+
}
33+
34+
// let cyrc = new makeCircularObject();
35+
36+
function makeCircularTest(testArr) {
37+
let item = deepCopy(testArr[0]);
38+
item.name = 'C1';
39+
item.description = 'Circular object in array';
40+
item.arr1 = [1];
41+
item.arr1.push(new makeCircularObject());
42+
item.arr2 = [2];
43+
item.arr2.push(new makeCircularObject());
44+
item.expect = [];
45+
item.expect.push(1);
46+
item.expect.push(new makeCircularObject());
47+
item.expect.push(2);
48+
testArr.push(item);
49+
}
50+
2451
let testSet = [
2552
{
2653
name: 'test 1',
@@ -59,7 +86,7 @@ let testSet = [
5986
description: 'Objects arrays; identifier as function.',
6087
arr1: [{key: 'A', text: 'text-A', child: {key: 'A'}}, {key: 'A', text: 'text-B', child: {key: 'B'}}],
6188
arr2: [{key: 'A', text: 'text-C', child: {key: 'B'}}, {key: 'B', text: 'text-D', child: {key: 'A'}}],
62-
identifierAsFunc: true,
89+
identifierAsFunc: 1,
6390
expect: [{key: 'A', text: 'text-A', child: {key: 'A'}}, {key: 'A', text: 'text-C', child: {key: 'B'}}, {
6491
key: 'B',
6592
text: 'text-D',
@@ -68,6 +95,25 @@ let testSet = [
6895
},
6996
{
7097
name: 'test 6',
98+
description: 'Objects arrays; identifier as wrong function',
99+
arr1: [
100+
{key: 'A', text: 'text-A', child: {key: 'A'}},
101+
{key: 'A', text: 'text-B', child: {key: 'B'}}
102+
],
103+
arr2: [
104+
{key: 'A', text: 'text-C', child: {key: 'B'}},
105+
{key: 'B', text: 'text-D', child: {key: 'A'}}
106+
],
107+
identifierAsFunc: 2,
108+
expect: [
109+
{key: 'A', text: 'text-A', child: {key: 'A'}},
110+
{key: 'A', text: 'text-B', child: {key: 'B'}},
111+
{key: 'A', text: 'text-C', child: {key: 'B'}},
112+
{key: 'B', text: 'text-D', child: {key: 'A'}}
113+
]
114+
},
115+
{
116+
name: 'test 7',
71117
description: 'Objects arrays; result array has objects copies.',
72118
arr1: [{id: 1, value: 'A'}, {id: 2, value: 'B'}],
73119
arr2: [{id: 2, value: 'C'}, {id: 3, value: 'D'}],
@@ -109,34 +155,51 @@ let testSet = [
109155
},
110156
];
111157

158+
112159
describe('Sync tests', () => {
113-
let testSetSync = deepCopy(testSet);
114-
for (let item of testSetSync) {
115-
test(item.name, () => {
116-
if (item.identifierAsFunc) {
117-
item.identifier = identifier;
118-
}
119-
let merged = arrMergeSync(item.arr1, item.arr2, item.identifier);
120-
if (item.after) {
121-
after(item.arr1, item.arr2);
122-
}
123-
expect(merged.sort()).toEqual(item.expect.sort());
124-
});
125-
}
160+
for (let env of ENV) {
161+
process.env.NODE_ENV = env;
162+
let testSetSync = deepCopy(testSet);
163+
makeCircularTest(testSetSync);
164+
for (let item of testSetSync) {
165+
test(`${env}, ${item.name}: ${item.description}`, () => {
166+
if (item.identifierAsFunc === 1) {
167+
item.identifier = identifierOk;
168+
}
169+
if (item.identifierAsFunc === 2) {
170+
item.identifier = identifierThrow;
171+
}
172+
let merged = arrMergeSync(item.arr1, item.arr2, item.identifier);
173+
if (item.after) {
174+
after(item.arr1, item.arr2);
175+
}
176+
merged.sort();
177+
item.expect.sort();
178+
expect(merged).toEqual(item.expect);
179+
});
180+
}
181+
}
126182
})
127183

128184
describe('Async tests', () => {
129-
let testSetAsync = deepCopy(testSet);
130-
for (let item of testSetAsync) {
131-
test(item.name, async () => {
132-
if (item.identifierAsFunc) {
133-
item.identifier = identifier;
134-
}
135-
let merged = await arrMergeAsync(item.arr1, item.arr2, item.identifier);
136-
if (item.after) {
137-
after(item.arr1, item.arr2);
138-
}
139-
expect(merged.sort()).toEqual(item.expect.sort());
140-
});
185+
for (let env of ENV) {
186+
process.env.NODE_ENV = env;
187+
let testSetAsync = deepCopy(testSet);
188+
makeCircularTest(testSetAsync);
189+
for (let item of testSetAsync) {
190+
test(`${env}, ${item.name}: ${item.description}`, async () => {
191+
if (item.identifierAsFunc === 1) {
192+
item.identifier = identifierOk;
193+
}
194+
if (item.identifierAsFunc === 2) {
195+
item.identifier = identifierThrow;
196+
}
197+
let merged = await arrMergeAsync(item.arr1, item.arr2, item.identifier);
198+
if (item.after) {
199+
after(item.arr1, item.arr2);
200+
}
201+
expect(merged.sort()).toEqual(item.expect.sort());
202+
});
203+
}
141204
}
142205
})

index.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use strict';
22

33
const md5 = require('md5');
4-
const PROD = process.env.NODE_ENV !== 'develop';
54

65
////////////////////////////////////////////////////////////////////////////////
76
// Private (service) functions
@@ -80,6 +79,8 @@ async function _hashObjectAsync(obj) {
8079
* @returns {Promise<*[]>}
8180
*/
8281
async function arrMergeAsync(arrOriginal, arrUpdate, identifier) {
82+
const PROD = process.env.NODE_ENV !== 'develop';
83+
8384
// check input
8485
if (!arrOriginal) {
8586
arrOriginal = [];
@@ -171,6 +172,8 @@ async function arrMergeAsync(arrOriginal, arrUpdate, identifier) {
171172
* @returns {*[]}
172173
*/
173174
function arrMergeSync(arrOriginal, arrUpdate, identifier) {
175+
const PROD = process.env.NODE_ENV !== 'develop';
176+
174177
// check input
175178
if (!arrOriginal) {
176179
arrOriginal = [];

0 commit comments

Comments
 (0)