forked from blackbaud/skyux-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.js
276 lines (236 loc) · 6.15 KB
/
common.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
/*jshint node: true*/
/*global browser, element, by*/
'use strict';
const fs = require('fs');
const path = require('path');
const merge = require('merge');
const portfinder = require('portfinder');
const HttpServer = require('http-server');
const childProcessSpawn = require('child_process').spawn;
const tmp = './.e2e-tmp/';
const cwdOpts = { cwd: tmp };
const skyuxConfigPath = path.resolve(process.cwd(), tmp, 'skyuxconfig.json');
const cliPath = `../e2e/shared/cli`;
let skyuxConfigOriginal;
let webpackServer;
let httpServer;
let _exitCode;
let _port;
/**
* Closes the http-server if it's running.
* Kills the serve process if it's running.
*/
function afterAll() {
if (httpServer) {
httpServer.close();
}
if (webpackServer) {
webpackServer.kill();
}
resetConfig();
};
/**
* Adds event listeners to serve and resolves a promise.
*/
function bindServe() {
return new Promise((resolve, reject) => {
// Logging "warnings" but not rejecting test
webpackServer.stderr.on('data', data => log(data));
webpackServer.stdout.on('data', data => {
const dataAsString = log(data);
if (dataAsString.indexOf('webpack: Compiled successfully.') > -1) {
resolve(_port);
}
if (dataAsString.indexOf('webpack: Failed to compile.') > -1) {
reject(dataAsString);
}
});
});
}
/**
* Generic handler for rejected promises.
* @name catchReject
*/
function catchReject(err) {
throw new Error(err);
}
/**
* Spawns a child_process and returns a promise.
* @name exec
*/
function exec(cmd, args, opts) {
console.log(`Running command: ${cmd} ${args.join(' ')}`);
const cp = childProcessSpawn(cmd, args, opts);
cp.stdout.on('data', data => log(data));
cp.stderr.on('data', data => log(data));
return new Promise((resolve, reject) => {
cp.on('error', err => reject(log(err)));
cp.on('exit', code => resolve(code));
});
}
/**
* Returns the last exit code.
*/
function getExitCode() {
return _exitCode;
}
/**
* Logs a buffer.
* Returns the buffer as a string.
*/
function log(buffer) {
const bufferAsString = buffer.toString('utf8');
console.log(bufferAsString);
return bufferAsString;
}
/**
* Run build given the following skyuxconfig object.
* Spawns http-server and resolves when ready.
*/
function prepareBuild(config) {
function serve(exitCode) {
// Save our exitCode for testing
_exitCode = exitCode;
// Reset skyuxconfig.json
resetConfig();
// Create our server
httpServer = HttpServer.createServer({ root: tmp, cache: 0 });
return new Promise((resolve, reject) => {
portfinder.getPortPromise()
.then(port => {
httpServer.listen(port, 'localhost', () => {
browser.get(`http://localhost:${port}/dist/`).then(resolve, reject);
});
})
.catch(err => reject(err));
});
}
writeConfig(config);
return new Promise((resolve, reject) => {
exec(`rm`, [`-rf`, `${tmp}/dist`])
.then(() => exec(`node`, [cliPath, `build`], cwdOpts))
.then(serve)
.then(resolve)
.catch(err => reject(err));
});
}
/**
* Spawns `skyux serve` and resolves once webpack is ready.
*/
function prepareServe() {
if (webpackServer) {
return bindServe();
} else {
return new Promise((resolve, reject) => {
portfinder.getPortPromise()
.then(writeConfigServe)
.then(bindServe)
.then(resolve)
.catch(err => reject(err));
});
}
}
/**
* Resets to the default config.
*/
function resetConfig() {
writeConfig(skyuxConfigOriginal);
}
/**
* Writes the specified json to the skyuxconfig.json file
*/
function writeConfig(json) {
if (!skyuxConfigOriginal) {
skyuxConfigOriginal = JSON.parse(fs.readFileSync(skyuxConfigPath));
}
fs.writeFileSync(skyuxConfigPath, JSON.stringify(json), 'utf8');
}
/**
* Write the config needed for serve
*/
function writeConfigServe(port) {
return new Promise(resolve => {
_port = port;
const skyuxConfigWithPort = merge(true, skyuxConfigOriginal, {
app: {
port: port
}
});
writeConfig(skyuxConfigWithPort);
webpackServer = childProcessSpawn(`node`, [cliPath, `serve`, `-l`, `none`], cwdOpts);
resetConfig();
resolve();
});
}
/**
* Write a file into the src/app folder -- Used for injecting files prior to build
* that we don't want to include in the skyux-template but need to test
*/
function writeAppFile(filePath, content) {
return new Promise((resolve, reject) => {
const resolvedFilePath = path.join(path.resolve(tmp), 'src', 'app', filePath);
fs.writeFile(resolvedFilePath, content, (err) => {
if (err) {
reject(err);
return;
}
resolve();
});
});
}
/**
* Verify directory exists in src/app folder
*/
function verifyAppFolder(folderPath) {
const resolvedFolderPath = path.join(path.resolve(tmp), 'src', 'app', folderPath);
return new Promise((resolve, reject) => {
if (!fs.existsSync(resolvedFolderPath)) {
fs.mkdirSync(resolvedFolderPath);
}
resolve();
});
}
/**
* Remove directory if it exists in src/app folder
*/
function removeAppFolder(folderPath) {
const resolvedFolderPath = path.join(path.resolve(tmp), 'src', 'app', folderPath);
return new Promise((resolve, reject) => {
if (fs.existsSync(resolvedFolderPath)) {
fs.rmdirSync(resolvedFolderPath);
}
resolve();
});
}
/**
* Remove file from the src/app folder -- Used for cleaning up after we've injected
* files for a specific test or group of tests
*/
function removeAppFile(filePath) {
return new Promise((resolve, reject) => {
const resolvedFilePath = path.join(path.resolve(tmp), 'src', 'app', filePath);
fs.unlink(resolvedFilePath, (err) => {
if (err) {
reject(err);
return;
}
resolve();
});
});
}
module.exports = {
afterAll: afterAll,
catchReject: catchReject,
cliPath: cliPath,
cwdOpts: cwdOpts,
exec: exec,
bindServe: bindServe,
getExitCode: getExitCode,
prepareBuild: prepareBuild,
prepareServe: prepareServe,
tmp: tmp,
writeAppFile: writeAppFile,
removeAppFile: removeAppFile,
verifyAppFolder: verifyAppFolder,
removeAppFolder: removeAppFolder
};