-
Notifications
You must be signed in to change notification settings - Fork 510
/
Copy pathcircular-reference-problem.spec.ts
151 lines (125 loc) · 3.62 KB
/
circular-reference-problem.spec.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
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
import 'reflect-metadata';
import { instanceToInstance, instanceToPlain, plainToInstance } from '../../src/index';
import { defaultMetadataStorage } from '../../src/storage';
import { TransformOperationExecutor } from '../../src/TransformOperationExecutor';
describe('circular reference problem', () => {
it('should skip circular reference objects in instanceToPlain operation', () => {
defaultMetadataStorage.clear();
class Caption {
text: string;
}
class Photo {
id: number;
filename: string;
user: User;
users: User[];
caption: Caption;
}
class User {
id: number;
firstName: string;
caption: Caption;
photos: Photo[];
}
const photo1 = new Photo();
photo1.id = 1;
photo1.filename = 'me.jpg';
const photo2 = new Photo();
photo2.id = 2;
photo2.filename = 'she.jpg';
const caption = new Caption();
caption.text = 'cool photo';
const user = new User();
user.caption = caption;
user.firstName = 'Umed Khudoiberdiev';
user.photos = [photo1, photo2];
photo1.user = user;
photo2.user = user;
photo1.users = [user];
photo2.users = [user];
photo1.caption = caption;
photo2.caption = caption;
const plainUser = instanceToPlain(user, { enableCircularCheck: true });
expect(plainUser).toEqual({
firstName: 'Umed Khudoiberdiev',
caption: { text: 'cool photo' },
photos: [
{
id: 1,
filename: 'me.jpg',
users: [],
caption: { text: 'cool photo' },
},
{
id: 2,
filename: 'she.jpg',
users: [],
caption: { text: 'cool photo' },
},
],
});
});
it('should not skip circular reference objects, but handle it correctly in instanceToInstance operation', () => {
defaultMetadataStorage.clear();
class Photo {
id: number;
filename: string;
user: User;
users: User[];
}
class User {
id: number;
firstName: string;
photos: Photo[];
}
const photo1 = new Photo();
photo1.id = 1;
photo1.filename = 'me.jpg';
const photo2 = new Photo();
photo2.id = 2;
photo2.filename = 'she.jpg';
const user = new User();
user.firstName = 'Umed Khudoiberdiev';
user.photos = [photo1, photo2];
photo1.user = user;
photo2.user = user;
photo1.users = [user];
photo2.users = [user];
const classUser = instanceToInstance(user, { enableCircularCheck: true });
expect(classUser).not.toBe(user);
expect(classUser).toBeInstanceOf(User);
expect(classUser).toEqual(user);
});
describe('enableCircularCheck option', () => {
class Photo {
id: number;
filename: string;
}
class User {
id: number;
firstName: string;
photos: Photo[];
}
let isCircularSpy: jest.SpyInstance;
const photo1 = new Photo();
photo1.id = 1;
photo1.filename = 'me.jpg';
const user = new User();
user.firstName = 'Umed Khudoiberdiev';
user.photos = [photo1];
beforeEach(() => {
isCircularSpy = jest.spyOn(TransformOperationExecutor.prototype, 'isCircular' as any);
});
afterEach(() => {
isCircularSpy.mockRestore();
});
it('enableCircularCheck option is undefined (default)', () => {
plainToInstance<User, Record<string, any>>(User, user);
expect(isCircularSpy).not.toHaveBeenCalled();
});
it('enableCircularCheck option is true', () => {
plainToInstance<User, Record<string, any>>(User, user, { enableCircularCheck: true });
expect(isCircularSpy).toHaveBeenCalled();
});
});
});