-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtests.js
More file actions
181 lines (146 loc) · 3.88 KB
/
tests.js
File metadata and controls
181 lines (146 loc) · 3.88 KB
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
'use strict';
const fs = require('fs-extra');
const path = require('path');
const { expect } = require('chai');
const {
buildTmp,
processBin,
fixtureCompare: _fixtureCompare
} = require('git-fixtures');
const {
assertNoUnstaged,
assertCodemodRan
} = require('./helpers/assertions');
const run = require('ember-cli-update/src/run');
let manifest;
let fixturesPath;
let commitMessage;
if (process.env.TEST_TYPE === 'addon') {
manifest = require('ember-addon-codemods-manifest');
fixturesPath = 'test/fixtures/addon';
commitMessage = 'my-addon';
} else {
manifest = require('ember-app-codemods-manifest');
fixturesPath = 'test/fixtures/app';
commitMessage = 'my-app';
}
const codemods = Object.keys(manifest);
describe('runs codemods', function() {
this.timeout(5 * 60 * 1000);
let tmpPath;
let applicableCodemods;
async function merge({
statsOnly,
beforeMerge = () => Promise.resolve()
}) {
tmpPath = await buildTmp({
fixturesPath
});
await beforeMerge();
return processBin({
bin: 'ember-cli-update',
args: [
statsOnly ? '--stats-only' : '--run-codemods',
`--codemods-json='${JSON.stringify(manifest)}'`
],
cwd: tmpPath,
commitMessage,
expect
});
}
function fixtureCompare({
mergeFixtures
}) {
let actual = tmpPath;
let expected = mergeFixtures;
_fixtureCompare({
expect,
actual,
expected
});
}
async function getApplicableCodemods() {
let {
ps,
promise
} = await merge({
statsOnly: true
});
ps.stdout.pipe(process.stdout);
let stdout = '';
ps.stdout.on('data', data => {
stdout += data.toString();
});
await promise;
let applicableCodemods = stdout.match(/^applicable codemods: (.+)$/m)[1].split(', ');
return applicableCodemods;
}
// eslint-disable-next-line mocha/no-hooks-for-single-case
before(async function() {
applicableCodemods = await getApplicableCodemods();
});
for (let codemod of codemods) {
it(codemod, async function() {
if (!applicableCodemods.includes(codemod)) {
this.skip();
return;
}
async function _merge(src, dest) {
await fs.copy(
path.join(__dirname, `fixtures/codemods/${codemod}/${src}/my-app`),
dest,
{
overwrite: true,
recursive: true
}
);
}
let {
ps,
promise
} = await merge({
async beforeMerge() {
await _merge('local', tmpPath);
if (manifest[codemod].script) {
await run('npm install', { cwd: tmpPath });
}
}
});
ps.stdout.pipe(process.stdout);
function stdoutData(data) {
let str = data.toString();
if (str.includes('These codemods apply to your project.')) {
let down = '\u001b[B';
let space = ' ';
let enter = '\n';
let i = applicableCodemods.indexOf(codemod);
ps.stdin.write(`${down.repeat(i)}${space}${enter}`);
ps.stdout.removeListener('data', stdoutData);
}
}
ps.stdout.on('data', stdoutData);
let {
status
} = await promise;
assertNoUnstaged(status);
assertCodemodRan(status);
await fs.remove(path.join(tmpPath, 'package-lock.json'));
// file is indeterminent between OS's, so ignore
await fs.remove(path.join(tmpPath, 'MODULE_REPORT.md'));
// remove dist and node_modules before fixture compare
await run('git clean -fdX', { cwd: tmpPath });
let nodeVersion = 'latest-node';
if (process.env.NODE_LTS) {
nodeVersion = 'min-node';
}
let mergeFixtures = await buildTmp({
fixturesPath,
noGit: true
});
await _merge(nodeVersion, mergeFixtures);
fixtureCompare({
mergeFixtures
});
});
}
});