-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathlifecycle-scripts.js
191 lines (154 loc) · 6.66 KB
/
lifecycle-scripts.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
/* @flow */
import {existsSync} from 'fs';
import NoopReporter from '../src/reporters/base-reporter.js';
import makeTemp from './_temp';
import * as fs from '../src/util/fs.js';
const path = require('path');
const exec = require('child_process').exec;
const fixturesLoc = path.join(__dirname, './fixtures/lifecycle-scripts');
const yarnBin = path.join(__dirname, '../bin/yarn.js');
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
if (!existsSync(path.resolve(__dirname, '../lib'))) {
throw new Error('These tests require `yarn build` to have been run first.');
}
async function execCommand(cmd: string, packageName: string, env = process.env): Promise<string> {
const srcPackageDir = path.join(fixturesLoc, packageName);
const packageDir = await makeTemp(packageName);
await fs.copy(srcPackageDir, packageDir, new NoopReporter());
return new Promise((resolve, reject) => {
const cleanedEnv = {...env};
cleanedEnv['YARN_WRAP_OUTPUT'] = 1;
delete cleanedEnv['FORCE_COLOR'];
exec(
`node "${yarnBin}" ${cmd}`,
{
cwd: packageDir,
env: cleanedEnv,
},
(err, stdout) => {
if (err) {
reject(err);
} else {
resolve(stdout.toString());
}
},
);
});
}
test.concurrent('should add the global yarnrc arguments to the command line', async () => {
const stdout = await execCommand('cache dir', 'yarnrc-cli');
expect(stdout.replace(/\\/g, '/')).toMatch(/^(C:)?\/tmp\/foobar\/v[0-9]+(\/.*)?\n$/);
});
test.concurrent(
'should add the command-specific yarnrc arguments to the command line if the command name matches',
async () => {
const stdout = await execCommand('cache dir', 'yarnrc-cli-command-specific-ok');
expect(stdout.replace(/\\/g, '/')).toMatch(/^(C:)?\/tmp\/foobar\/v[0-9]+(\/.*)?\n$/);
},
);
test.concurrent("should not add the command-specific yarnrc arguments if the command name doesn't match", async () => {
const stdout = await execCommand('cache dir', 'yarnrc-cli-command-specific-ko');
expect(stdout.replace(/\\/g, '/')).not.toMatch(/^(C:)?\/tmp\/foobar\/v[0-9]+(\/.*)?\n$/);
});
test.concurrent('should allow overriding the yarnrc values from the command line', async () => {
const stdout = await execCommand('cache dir --cache-folder /tmp/toto', 'yarnrc-cli');
expect(stdout.replace(/\\/g, '/')).toMatch(/^(C:)?\/tmp\/toto\/v[0-9]+(\/.*)?\n$/);
});
// Test disabled for now, cf rc.js
test.concurrent('should resolve the yarnrc values relative to where the file lives', async () => {
const stdout = await execCommand('cache dir', 'yarnrc-cli-relative');
expect(stdout.replace(/\\/g, '/')).toMatch(/^(C:)?(\/[^\/]+)+\/foobar\/hello\/world\/v[0-9]+(\/.*)?\n$/);
});
test.concurrent(
'should expose `npm_config_argv` env variable to lifecycle scripts for back compatibility with npm',
async () => {
const env = Object.assign({}, process.env);
delete env.npm_config_argv;
const stdouts = await Promise.all([
execCommand('install', 'npm_config_argv_env_vars', env),
execCommand('', 'npm_config_argv_env_vars', env),
execCommand('run test', 'npm_config_argv_env_vars', env),
execCommand('test', 'npm_config_argv_env_vars', env),
]);
expect(stdouts[0]).toContain('"install"');
expect(stdouts[1]).toContain('"install"');
expect(stdouts[2]).toContain('"run","test"');
expect(stdouts[3]).toContain('"run","test"');
},
);
test.concurrent('should not run pre/post hooks for .bin executables', async () => {
const stdout = await execCommand('run lol', 'script_only_pre_post');
expect(stdout).toContain('lol');
expect(stdout).not.toContain('##prelol##');
expect(stdout).not.toContain('##postlol##');
});
test.concurrent('should not run pre/post hooks if they are .bin executables and not scripts', async () => {
const stdout = await execCommand('run lol', 'bin_pre_post');
expect(stdout).toContain('lol');
expect(stdout).not.toContain('##prelol##');
});
test.concurrent('should only expose non-internal configs', async () => {
const env = Object.assign({}, process.env);
const internalConfigKeys = ['lastUpdateCheck'];
const nonInternalConfigKeys = ['user_agent'];
const prefix = 'npm_config_';
[...internalConfigKeys, ...nonInternalConfigKeys].forEach(key => {
delete env[prefix + key];
});
let stdout = await execCommand('install', 'dont-expose-internal-configs-to-env', env);
stdout = stdout.substring(stdout.indexOf('##') + 2, stdout.lastIndexOf('##'));
let configs = {};
try {
configs = JSON.parse(stdout);
} catch (e) {}
internalConfigKeys.forEach(key => {
const val = configs[prefix + key];
expect(val).toBeUndefined();
});
nonInternalConfigKeys.forEach(key => {
const val = configs[prefix + key];
expect(val).toBeDefined();
});
});
test.concurrent('should run both prepublish and prepare when installing, but not prepublishOnly', async () => {
const stdout = await execCommand('install', 'lifecycle-scripts');
expect(stdout).toMatch(/^running the prepublish hook$/m);
expect(stdout).toMatch(/^running the prepare hook$/m);
expect(stdout).not.toMatch(/^running the prepublishOnly hook$/m);
});
test.concurrent('should run both prepack and postpack', async () => {
const stdout = await execCommand('pack', 'lifecycle-scripts');
expect(stdout).toMatch(/^running the prepack hook$/m);
expect(stdout).toMatch(/^running the postpack hook$/m);
});
test.concurrent('should allow setting environment variables via yarnrc', async () => {
const stdout = await execCommand('install', 'yarnrc-env');
expect(stdout).toMatch(/^BAR$/m);
});
test.concurrent('should inherit existing environment variables when setting via yarnrc', async () => {
const srcPackageDir = path.join(fixturesLoc, 'yarnrc-env');
const packageDir = await makeTemp('yarnrc-env-nested');
await fs.copy(srcPackageDir, packageDir, new NoopReporter());
const stdout = await new Promise((resolve, reject) => {
exec(`node "${yarnBin}" install`, {cwd: path.join(packageDir, 'nested')}, (err, stdout) => {
if (err) {
reject(err);
} else {
resolve(stdout.toString());
}
});
});
expect(stdout).toMatch(/^RAB$/m);
expect(stdout).toMatch(/^FOO$/m);
});
test('should not show any error messages when script ends successfully', async () => {
await expect(execCommand('test', 'script-success')).resolves.toBeDefined();
});
test('should throw error when the script ends with an exit code', async () => {
await expect(execCommand('test', 'script-fail')).rejects.toBeDefined();
});
if (process.platform === 'darwin') {
test('should throw error when the script ends with an exit signal', async () => {
await expect(execCommand('test', 'script-segfault')).rejects.toBeDefined();
});
}