aboutsummaryrefslogtreecommitdiff
path: root/adapter_ecmascript_test.go
blob: 30bc165dfa08c1ae15b821a6af38204333aaf92d (plain) (blame)
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
package main

import (
	"github.com/Fuwn/iku/engine"
	"testing"
)

type ecmaScriptTestCase struct {
	name     string
	source   string
	expected string
}

var ecmaScriptTestCases = []ecmaScriptTestCase{
	{
		name: "blank lines around if block",
		source: `const x = 1;
if (x > 0) {
  doSomething();
}
const y = 2;
`,
		expected: `const x = 1;

if (x > 0) {
  doSomething();
}

const y = 2;
`,
	},
	{
		name: "blank lines around for loop",
		source: `const items = [1, 2, 3];
for (const item of items) {
  process(item);
}
const result = done();
`,
		expected: `const items = [1, 2, 3];

for (const item of items) {
  process(item);
}

const result = done();
`,
	},
	{
		name: "blank lines between different top-level types",
		source: `import { foo } from "bar";
const x = 1;
function main() {
  return x;
}
class Foo {
  bar() {}
}
`,
		expected: `import { foo } from "bar";

const x = 1;

function main() {
  return x;
}

class Foo {
  bar() {}
}
`,
	},
	{
		name: "no blank between same type",
		source: `const x = 1;
const y = 2;
const z = 3;
`,
		expected: `const x = 1;
const y = 2;
const z = 3;
`,
	},
	{
		name: "consecutive imports stay together",
		source: `import { a } from "a";
import { b } from "b";
import { c } from "c";
`,
		expected: `import { a } from "a";
import { b } from "b";
import { c } from "c";
`,
	},
	{
		name: "switch with case clauses",
		source: `const x = getValue();
switch (x) {
case "a":
  handleA();
  break;
case "b":
  handleB();
  break;
}
cleanup();
`,
		expected: `const x = getValue();

switch (x) {
case "a":
  handleA();
  break;
case "b":
  handleB();
  break;
}

cleanup();
`,
	},
	{
		name: "try catch finally",
		source: `setup();
try {
  riskyOperation();
} catch (error) {
  handleError(error);
} finally {
  cleanup();
}
done();
`,
		expected: `setup();

try {
  riskyOperation();
} catch (error) {
  handleError(error);
} finally {
  cleanup();
}

done();
`,
	},
	{
		name: "consecutive scoped blocks",
		source: `if (a) {
  doA();
}
if (b) {
  doB();
}
`,
		expected: `if (a) {
  doA();
}

if (b) {
  doB();
}
`,
	},
	{
		name: "export prefixes",
		source: `export const x = 1;
export function foo() {
  return x;
}
export class Bar {
  baz() {}
}
`,
		expected: `export const x = 1;

export function foo() {
  return x;
}

export class Bar {
  baz() {}
}
`,
	},
	{
		name: "async function",
		source: `const data = prepare();
async function fetchData() {
  return await fetch(url);
}
const result = process();
`,
		expected: `const data = prepare();

async function fetchData() {
  return await fetch(url);
}

const result = process();
`,
	},
	{
		name: "typescript interface and type",
		source: `type ID = string;
interface User {
  name: string;
  id: ID;
}
const defaultUser: User = { name: "", id: "" };
`,
		expected: `type ID = string;

interface User {
  name: string;
  id: ID;
}

const defaultUser: User = { name: "", id: "" };
`,
	},
	{
		name: "multi-line function call preserved",
		source: `const result = someFunction(
  longArgument,
  otherArgument,
);
const next = 1;
`,
		expected: `const result = someFunction(
  longArgument,
  otherArgument,
);
const next = 1;
`,
	},
	{
		name: "method chaining preserved",
		source: `const result = someArray
  .filter(x => x > 0)
  .map(x => x * 2);
const next = 1;
`,
		expected: `const result = someArray
  .filter(x => x > 0)
  .map(x => x * 2);
const next = 1;
`,
	},
	{
		name: "block comment passthrough",
		source: `/*
 * This is a block comment
 */
const x = 1;
`,
		expected: `/*
 * This is a block comment
 */
const x = 1;
`,
	},
	{
		name: "collapses extra blank lines",
		source: `const x = 1;


const y = 2;
`,
		expected: `const x = 1;
const y = 2;
`,
	},
	{
		name: "while loop",
		source: `let count = 0;
while (count < 10) {
  count++;
}
const done = true;
`,
		expected: `let count = 0;

while (count < 10) {
  count++;
}

const done = true;
`,
	},
	{
		name: "nested scopes",
		source: `function main() {
  const x = 1;
  if (x > 0) {
    for (let i = 0; i < x; i++) {
      process(i);
    }
    cleanup();
  }
  return x;
}
`,
		expected: `function main() {
  const x = 1;

  if (x > 0) {
    for (let i = 0; i < x; i++) {
      process(i);
    }

    cleanup();
  }

  return x;
}
`,
	},
	{
		name:     "template literal passthrough",
		source:   "const x = `\nhello\n\nworld\n`;\nconst y = 1;\n",
		expected: "const x = `\nhello\n\nworld\n`;\nconst y = 1;\n",
	},
	{
		name: "jsx expressions",
		source: `function Component() {
  const data = useMemo();
  if (!data) {
    return null;
  }
  return (
    <div>
      <span>{data}</span>
    </div>
  );
}
`,
		expected: `function Component() {
  const data = useMemo();

  if (!data) {
    return null;
  }

  return (
    <div>
      <span>{data}</span>
    </div>
  );
}
`,
	},
	{
		name: "expression after scoped block",
		source: `function main() {
  if (x) {
    return;
  }
  doSomething();
}
`,
		expected: `function main() {
  if (x) {
    return;
  }

  doSomething();
}
`,
	},
	{
		name: "enum declaration",
		source: `type Color = string;
enum Direction {
  Up,
  Down,
}
const x = Direction.Up;
`,
		expected: `type Color = string;

enum Direction {
  Up,
  Down,
}

const x = Direction.Up;
`,
	},
}

func TestEcmaScriptAdapter(t *testing.T) {
	for _, testCase := range ecmaScriptTestCases {
		t.Run(testCase.name, func(t *testing.T) {
			adapter := &EcmaScriptAdapter{}
			_, events, err := adapter.Analyze([]byte(testCase.source))

			if err != nil {
				t.Fatalf("adapter error: %v", err)
			}

			formattingEngine := &engine.Engine{CommentMode: engine.CommentsFollow}
			result := formattingEngine.FormatToString(events)

			if result != testCase.expected {
				t.Errorf("mismatch\ngot:\n%s\nwant:\n%s", result, testCase.expected)
			}
		})
	}
}

func TestClassifyEcmaScriptStatement(t *testing.T) {
	cases := []struct {
		input                string
		expectedType         string
		expectedScope        bool
		expectedContinuation bool
	}{
		{"function foo() {", "function", true, false},
		{"async function foo() {", "function", true, false},
		{"export function foo() {", "function", true, false},
		{"export default function() {", "function", true, false},
		{"class Foo {", "class", true, false},
		{"export class Foo {", "class", true, false},
		{"if (x) {", "if", true, false},
		{"else if (y) {", "if", true, true},
		{"else {", "if", true, true},
		{"for (const x of items) {", "for", true, false},
		{"while (true) {", "while", true, false},
		{"do {", "do", true, false},
		{"switch (x) {", "switch", true, false},
		{"try {", "try", true, false},
		{"catch (e) {", "try", true, true},
		{"finally {", "try", true, true},
		{"interface Foo {", "interface", true, false},
		{"enum Direction {", "enum", true, false},
		{"namespace Foo {", "namespace", true, false},
		{"const x = 1;", "const", false, false},
		{"let x = 1;", "let", false, false},
		{"var x = 1;", "var", false, false},
		{"import { foo } from 'bar';", "import", false, false},
		{"type Foo = string;", "type", false, false},
		{"return x;", "return", false, false},
		{"return;", "return", false, false},
		{"throw new Error();", "throw", false, false},
		{"await fetch(url);", "await", false, false},
		{"yield value;", "yield", false, false},
		{"export const x = 1;", "const", false, false},
		{"export default class Foo {", "class", true, false},
		{"declare const x: number;", "const", false, false},
		{"declare function foo(): void;", "function", true, false},
		{"foo();", "", false, false},
		{"x = 1;", "", false, false},
		{"", "", false, false},
	}

	for _, testCase := range cases {
		statementType, isScoped, isContinuation := classifyEcmaScriptStatement(testCase.input)

		if statementType != testCase.expectedType || isScoped != testCase.expectedScope || isContinuation != testCase.expectedContinuation {
			t.Errorf("classifyEcmaScriptStatement(%q) = (%q, %v, %v), want (%q, %v, %v)",
				testCase.input, statementType, isScoped, isContinuation, testCase.expectedType, testCase.expectedScope, testCase.expectedContinuation)
		}
	}
}