-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathember-cli-update-test.js
More file actions
154 lines (131 loc) · 3.3 KB
/
ember-cli-update-test.js
File metadata and controls
154 lines (131 loc) · 3.3 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
'use strict';
const fs = require('fs-extra');
const path = require('path');
const { expect } = require('chai');
const {
processBin,
fixtureCompare: _fixtureCompare
} = require('git-fixtures');
const buildTmp = require('../helpers/build-tmp');
const {
assertNormalUpdate,
assertNoUnstaged,
assertCodemodRan
} = require('../helpers/assertions');
const semver = require('semver');
const commitMessage = 'add files';
const shouldSkipCodemods = process.platform === 'linux' && semver.satisfies(semver.valid(process.version), '6');
describe('Acceptance - ember-cli-update', function() {
this.timeout(30 * 1000);
let tmpPath;
function merge({
fixturesPath,
runCodemods,
subDir = ''
}) {
tmpPath = buildTmp({
fixturesPath,
commitMessage,
subDir
});
let args = [
'--to',
'3.2.0-beta.1',
'--resolve-conflicts'
];
if (runCodemods) {
args = [
'--run-codemods'
];
}
return processBin({
binFile: 'ember-cli-update',
args,
cwd: tmpPath,
commitMessage,
expect
});
}
function fixtureCompare({
mergeFixtures
}) {
let actual = tmpPath;
let expected = mergeFixtures;
_fixtureCompare({
expect,
actual,
expected
});
}
it('updates app', function() {
return merge({
fixturesPath: 'test/fixtures/local/my-app'
}).promise.then(({
status
}) => {
fixtureCompare({
mergeFixtures: 'test/fixtures/merge/my-app'
});
assertNormalUpdate(status);
assertNoUnstaged(status);
});
});
// it('updates addon', function() {
// return merge({
// fixturesPath: 'test/fixtures/local/my-addon'
// }).promise.then(({
// status
// }) => {
// fixtureCompare({
// mergeFixtures: 'test/fixtures/merge/my-addon'
// });
// assertNormalUpdate(status);
// assertNoUnstaged(status);
// });
// });
// (shouldSkipCodemods ? it.skip : it)('runs codemods', function() {
// this.timeout(5 * 60 * 1000);
// let {
// ps,
// promise
// } = merge({
// fixturesPath: 'test/fixtures/merge/my-app',
// runCodemods: true
// });
// ps.stdout.on('data', data => {
// let str = data.toString();
// if (str.includes('These codemods apply to your project.')) {
// ps.stdin.write('a\n');
// }
// });
// return promise.then(({
// status
// }) => {
// // file is indeterminent between OS's, so ignore
// fs.removeSync(path.join(tmpPath, 'MODULE_REPORT.md'));
// let mergeFixtures = 'test/fixtures/codemod/latest-node/my-app';
// if (process.env.NODE_LTS) {
// mergeFixtures = 'test/fixtures/codemod/min-node/my-app';
// }
// fixtureCompare({
// mergeFixtures
// });
// assertNoUnstaged(status);
// assertCodemodRan(status);
// });
// });
// it('scopes to sub dir if run from there', function() {
// return merge({
// fixturesPath: 'test/fixtures/local/my-app',
// subDir: 'foo/bar'
// }).promise.then(({
// status
// }) => {
// fixtureCompare({
// mergeFixtures: 'test/fixtures/merge/my-app'
// });
// assertNormalUpdate(status);
// assertNoUnstaged(status);
// });
// });
});