-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.js
283 lines (235 loc) · 5.93 KB
/
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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
const babel = require('babel-core');
const plugin = require('./index');
const classPropertyTransformer = require('babel-plugin-transform-class-properties');
console.group = jest.fn();
console.groupEnd = jest.fn();
it('wraps console.log inside a group', () => {
const example = `
function something() {
console.log('wut');
}
`;
const code = babel.transform(example, { plugins: [plugin] }).code;
expect(code).toMatchSnapshot();
});
it('wraps only the inner console.log inside a group', () => {
const example = `
function something() {
function another() {
console.log('wut');
}
}
`;
const code = babel.transform(example, { plugins: [plugin] }).code;
expect(code).toMatchSnapshot();
});
it('maintains the hierarchy when multiple logs are encountered', () => {
const example = `
function something() {
console.log('whut');
function another() {
console.log('wut');
}
}
`;
const code = babel.transform(example, { plugins: [plugin] }).code;
expect(code).toMatchSnapshot();
});
it('works with a return statement', () => {
const example = `
function something() {
console.log('wut');
return 1;
}
`;
const code = babel.transform(example, { plugins: [plugin] }).code;
expect(code).toMatchSnapshot();
});
it('works with a multiple log statements', () => {
const example = `
function something() {
console.log('one');
console.log('two');
console.log('three');
console.log('four');
}
`;
const code = babel.transform(example, { plugins: [plugin] }).code;
expect(code).toMatchSnapshot();
});
it('works with a multiple log statements, and a return statement', () => {
const example = `
function something() {
console.log('one');
console.log('two');
return 0;
console.log('three');
console.log('four');
}
`;
const code = babel.transform(example, { plugins: [plugin] }).code;
expect(code).toMatchSnapshot();
});
it('works with anonymous functions', () => {
const example = `
setTimeout(function() {
console.log('one');
return 0;
}, 0);
`;
const code = babel.transform(example, { plugins: [plugin] }).code;
expect(code).toMatchSnapshot();
});
it('works with arrow functions', () => {
const example = `
const fun = () => {
console.log('one');
return 0;
}
`;
const code = babel.transform(example, { plugins: [plugin] }).code;
expect(code).toMatchSnapshot();
});
it('works with class methods', () => {
const example = `
class A {
componentWillReceiveProps (nextProps) {
console.log(this.props);
console.log(nextProps)
}
}
`;
const code = babel.transform(example, { plugins: [plugin] }).code;
expect(code).toMatchSnapshot();
});
it('works with class function properties', () => {
const example = `
class A {
componentWillReceiveProps = (nextProps) => {
console.log(this.props);
console.log(nextProps)
}
}
`;
const code = babel.transform(example, { plugins: [plugin, classPropertyTransformer] }).code;
expect(code).toMatchSnapshot();
});
it('does not add a grouping if one is already present', () => {
const example = `
class A {
componentWillReceiveProps = (nextProps) => {
console.group('one');
console.log(this.props);
console.log(nextProps)
}
}
`;
const code = babel.transform(example, { plugins: [plugin, classPropertyTransformer] }).code;
expect(code).toMatchSnapshot();
});
it('does not add extra groupend just because of return', () => {
const example = `
function a () {
return;
}
`;
const code = babel.transform(example, { plugins: [plugin, classPropertyTransformer] }).code;
expect(code).toMatchSnapshot();
});
it('works normally for async functions', () => {
const example = `
const foo = () => {
console.log('this is foo');
}
const bar = () => {
console.log('this is bar');
setTimeout(foo);
console.log('this comes after the setTimeout');
}
`;
const code = babel.transform(example, { plugins: [plugin, classPropertyTransformer] }).code;
expect(code).toMatchSnapshot();
});
it('adds correct indentation for early return cases in if statements', () => {
const example = `
const foo = option => {
console.log('hi')
if (option) {
return 'Early Return!';
}
return 'Late Return!';
}
foo(true);
foo(false);
`;
const code = babel.transform(example, { plugins: [plugin, classPropertyTransformer] }).code;
expect(code).toMatchSnapshot();
});
it('adds correct indentation for early return cases in switch statements', () => {
const example = `
const foo = option => {
console.log('hi')
switch (option.toLocaleString()) {
case 'true': {
return 'Early Return!';
}
case 'false': {
return 'Another Early Return!';
}
}
return 'Late Return!';
}
foo(true);
foo(false);
`;
const code = babel.transform(example, { plugins: [plugin, classPropertyTransformer] }).code;
expect(code).toMatchSnapshot();
});
it('avoid unnecessary groups in deep hierarchies', () => {
const example = `
function request() {
if (true) {
// do something
if (true) {
// do something esle
if (true) {
console.log('whaaat!')
}
}
}
}
`
const code = babel.transform(example, { plugins: [plugin, classPropertyTransformer] }).code;
expect(code).toMatchSnapshot();
});
describe('promises', () => {
it('works with named functions as args to then', () => {
const example = `
const a = new Promise((resolve, reject) => {
resolve(42);
});
const thenFunc = (value) => {
console.log(value);
}
a.then(thenFunc);
`;
const code = babel.transform(example, { plugins: [plugin, classPropertyTransformer] }).code;
expect(code).toMatchSnapshot();
});
});
describe("console.log after early return", () => {
it("skips grouping to avoid deep nesting during loops", () => {
const example = `
function something() {
return null;
console.log('wut');
}
// this usage should not create too many nested logs
for (var i = 0; i < 10; ++i) {
something();
}
`;
const code = babel.transform(example, { plugins: [plugin, classPropertyTransformer] }).code;
expect(code).toMatchSnapshot();
});
});