-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathtypescript.js
executable file
·114 lines (83 loc) · 4.3 KB
/
typescript.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
'use strict';
const Fs = require('fs');
const Path = require('path');
const Code = require('@hapi/code');
const _Lab = require('../test_runner');
const RunCli = require('./run_cli');
const Ts = require('typescript');
const Typescript = require('../lib/modules/typescript');
const internals = {
cwd: process.cwd()
};
const { describe, it, afterEach } = exports.lab = _Lab.script();
const expect = Code.expect;
describe('TypeScript', () => {
afterEach(() => process.chdir(internals.cwd));
it('supports TypeScript', async () => {
process.chdir(Path.join(__dirname, 'cli_typescript'));
const result = await RunCli(['simple.ts', '-m', '2000', '--typescript']);
expect(result.errorOutput).to.equal('');
expect(result.code).to.equal(0);
expect(result.output).to.contain('2 tests complete');
});
it('supports TypeScript with ESM', async () => {
process.chdir(Path.join(__dirname, 'cli_typescript_esm'));
const result = await RunCli(['simple.ts', '-m', '2000', '--typescript']);
expect(result.errorOutput).to.equal('');
expect(result.code).to.equal(0);
expect(result.output).to.contain('2 tests complete');
// Ensure scripts are run together, not independently
expect(result.output.split('Test duration').length - 1).to.equal(1);
});
it('handles errors', async () => {
process.chdir(Path.join(__dirname, 'cli_typescript'));
const result = await RunCli(['error.ts', '-m', '2000', '--typescript']);
expect(result.errorOutput).to.equal('');
expect(result.code).to.equal(1);
expect(result.output).to.contain('error.ts:10:26');
});
it('supports coverage', async () => {
process.chdir(Path.join(__dirname, 'cli_typescript'));
const result = await RunCli(['simple.ts', '-m', '2000', '-t', '100', '--typescript']);
expect(result.errorOutput).to.equal('');
expect(result.code).to.equal(0);
expect(result.output).to.contain('2 tests complete');
expect(result.output).to.contain('Coverage: 100.00%');
});
describe('transform', () => {
it('errors when failing to find a tsconfig file', () => {
const path = Path.join(__dirname, 'cli', 'simple.js');
expect(
() => Typescript.extensions[0].transform(Fs.readFileSync(path, { encoding: 'utf8' }), path)
).to.throw(/^Cannot find a tsconfig file for .+cli[\/\\]simple\.js/);
});
it('errors when unable to read a tsconfig file', (flags) => {
const path = Path.join(__dirname, 'cli_typescript', 'simple.ts');
const origReadFile = Ts.sys.readFile;
flags.onCleanup = () => Object.assign(Ts.sys, { readFile: origReadFile });
Ts.sys.readFile = () => {
throw new Error('Oops!');
};
expect(
() => Typescript.extensions[0].transform(Fs.readFileSync(path, { encoding: 'utf8' }), path)
).to.throw(/^TypeScript config error in .+?cli_typescript\/tsconfig\.json: Cannot read file \'.+?\/cli_typescript\/tsconfig\.json\': Oops!/);
});
it('generates embedded sourcemap with sourcesContent', () => {
const smre = /\/\/\#\s*sourceMappingURL=data:application\/json[^,]+base64,(.*)\r?\n?$/;
const path = Path.join(__dirname, 'cli_typescript', 'simple.ts');
const transformed = Typescript.extensions[0].transform(Fs.readFileSync(path, { encoding: 'utf8' }), path);
const matches = smre.exec(transformed);
expect(matches).to.exist();
const sourcemap = JSON.parse(Buffer.from(matches[1], 'base64').toString());
expect(sourcemap.sources).to.equal(['simple.ts']);
expect(sourcemap.sourcesContent).to.exist();
expect(sourcemap.sourcesContent).to.have.length(1);
});
it('transforms identically when called multiple times', () => {
// This covers config file caching behavior, which is not directly observable by consumers.
const path = Path.join(__dirname, 'cli_typescript', 'simple.ts');
const transform = () => Typescript.extensions[0].transform(Fs.readFileSync(path, { encoding: 'utf8' }), path);
expect(transform()).to.equal(transform());
});
});
});