-
Notifications
You must be signed in to change notification settings - Fork 939
Expand file tree
/
Copy pathconfig.test.ts
More file actions
283 lines (238 loc) · 7.93 KB
/
config.test.ts
File metadata and controls
283 lines (238 loc) · 7.93 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
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
277
278
279
280
281
282
283
import path from 'path';
import fs from 'fs';
import {wrap} from 'jest-snapshot-serializer-raw';
import {
runCLI,
getTempDirectory,
cleanup,
writeFiles,
spawnScript,
replaceProjectRootInOutput,
} from '../jest/helpers';
const DIR = getTempDirectory('test_root');
function isValidJSON(text: string) {
try {
JSON.parse(text);
return true;
} catch {
return false;
}
}
// We have to check whether setup_env script fails, if it does then we shouldn't log any info to the console
function createCorruptedSetupEnvScript() {
const originalSetupEnvPath = path.join(
__dirname,
'../packages/cli/setup_env.sh',
);
const originalSetupEnv = fs.readFileSync(originalSetupEnvPath);
const corruptedScript = '#!/bin/sh\n exit 1;';
fs.writeFileSync(originalSetupEnvPath, corruptedScript);
return () => {
fs.writeFileSync(originalSetupEnvPath, originalSetupEnv);
};
}
const modifyPackageJson = (dir: string, key: string, value: string) => {
const packageJsonPath = path.join(dir, 'package.json');
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
packageJson[key] = value;
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));
};
beforeEach(() => {
// Clean up folder and re-create a new project
cleanup(DIR);
writeFiles(DIR, {});
// Initialise React Native project
runCLI(DIR, ['init', 'TestProject', '--install-pods']);
// Link CLI to the project
const cliPath = path.resolve(__dirname, '../packages/cli');
spawnScript('yarn', ['link'], {
cwd: cliPath,
});
spawnScript('yarn', ['link', '@react-native-community/cli'], {
cwd: path.join(DIR, 'TestProject'),
});
});
afterAll(() => {
cleanup(DIR);
});
test('shows up current config without unnecessary output', () => {
const {stdout} = runCLI(path.join(DIR, 'TestProject'), ['config']);
const parsedStdout = JSON.parse(stdout);
// Strip unnecessary parts
parsedStdout.commands = parsedStdout.commands.map((command: any) => ({
...command,
examples: command.examples && ['<<REPLACED>>'],
options: command.options && ['<<REPLACED>>'],
}));
expect(parsedStdout.reactNativeVersion).toMatch(/^\d+\.\d+(\.\d+)?$/);
parsedStdout.reactNativeVersion = '<<REPLACED>>';
const expectedXcodeProject =
process.platform === 'darwin'
? {
name: 'TestProject.xcworkspace',
isWorkspace: true,
path: '.',
}
: {
name: 'TestProject.xcodeproj',
isWorkspace: false,
path: '.',
};
expect(parsedStdout.project.ios.xcodeProject).toStrictEqual(
expectedXcodeProject,
);
delete parsedStdout.project.ios.xcodeProject;
const configWithReplacedProjectRoots = replaceProjectRootInOutput(
JSON.stringify(parsedStdout, null, 2).replace(/\\\\/g, '\\'),
DIR,
);
expect(wrap(configWithReplacedProjectRoots)).toMatchSnapshot();
});
test('should log only valid JSON config if setting up env throws an error', () => {
const restoreOriginalSetupEnvScript = createCorruptedSetupEnvScript();
const {stdout, stderr} = runCLI(path.join(DIR, 'TestProject'), ['config']);
const filteredStderr =
process.platform === 'darwin'
? stderr
.split('\n')
.filter(
(line: string) =>
!line.startsWith('warn Multiple Podfiles were found'),
)
.join('\n')
: stderr;
restoreOriginalSetupEnvScript();
expect(isValidJSON(stdout)).toBe(true);
expect(filteredStderr).toBe('');
});
const USER_CONFIG = `
module.exports = {
commands: [
{
name: 'test-command',
description: 'test command',
func: () => {
console.log('test-command');
},
},
],
};
`;
const USER_CONFIG_TS = `
export default {
commands: [
{
name: 'test-command-ts',
description: 'test command',
func: () => {
console.log('test-command-ts');
},
},
],
};
`;
const USER_CONFIG_ESM = `
export default {
commands: [
{
name: 'test-command-esm',
description: 'test command',
func: () => {
console.log('test-command-esm');
},
},
],
};
`;
test('should read user config from react-native.config.js', () => {
writeFiles(path.join(DIR, 'TestProject'), {
'react-native.config.js': USER_CONFIG,
});
const {stdout} = runCLI(path.join(DIR, 'TestProject'), ['test-command']);
expect(stdout).toBe('test-command');
});
test('should read user config from react-native.config.ts', () => {
writeFiles(path.join(DIR, 'TestProject'), {
'react-native.config.ts': USER_CONFIG_TS,
});
const {stdout} = runCLI(path.join(DIR, 'TestProject'), ['test-command-ts']);
expect(stdout).toBe('test-command-ts');
});
test('should read user config from react-native.config.mjs', () => {
writeFiles(path.join(DIR, 'TestProject'), {
'react-native.config.mjs': USER_CONFIG_ESM,
});
const {stdout} = runCLI(path.join(DIR, 'TestProject'), ['test-command-esm']);
expect(stdout).toBe('test-command-esm');
});
test('should fail if using require() in ES module in react-native.config.mjs', () => {
writeFiles(path.join(DIR, 'TestProject'), {
'react-native.config.mjs': `
const packageJSON = require('./package.json');
${USER_CONFIG_ESM}
`,
});
const {stderr, stdout} = runCLI(path.join(DIR, 'TestProject'), [
'test-command-esm',
]);
expect(stderr).toMatch('error Failed to load configuration of your project');
expect(stdout).toMatch(/require is not defined in ES module scope/);
});
test('should fail if using require() in ES module with "type": "module" in package.json', () => {
writeFiles(path.join(DIR, 'TestProject'), {
'react-native.config.js': `
const packageJSON = require('./package.json');
${USER_CONFIG_ESM}
`,
});
modifyPackageJson(path.join(DIR, 'TestProject'), 'type', 'module');
const {stderr} = runCLI(path.join(DIR, 'TestProject'), ['test-command-esm']);
console.log(stderr);
expect(stderr).toMatch('error Failed to load configuration of your project');
});
test('should read config if using createRequire() helper in react-native.config.js with "type": "module" in package.json', () => {
writeFiles(path.join(DIR, 'TestProject'), {
'react-native.config.js': `
import { createRequire } from 'node:module';
const require = createRequire(import.meta.url);
const packageJSON = require('./package.json');
${USER_CONFIG_ESM}
`,
});
modifyPackageJson(path.join(DIR, 'TestProject'), 'type', 'module');
const {stdout} = runCLI(path.join(DIR, 'TestProject'), ['test-command-esm']);
expect(stdout).toBe('test-command-esm');
});
test('should read config if using require() in react-native.config.cjs with "type": "module" in package.json', () => {
writeFiles(path.join(DIR, 'TestProject'), {
'react-native.config.cjs': `
const packageJSON = require('./package.json');
${USER_CONFIG}
`,
});
modifyPackageJson(path.join(DIR, 'TestProject'), 'type', 'module');
const {stdout} = runCLI(path.join(DIR, 'TestProject'), ['test-command']);
expect(stdout).toMatch('test-command');
});
test('should read config if using import/export in react-native.config.js with "type": "module" package.json', () => {
writeFiles(path.join(DIR, 'TestProject'), {
'react-native.config.js': `
import {} from 'react';
${USER_CONFIG_ESM}
`,
});
modifyPackageJson(path.join(DIR, 'TestProject'), 'type', 'module');
const {stdout} = runCLI(path.join(DIR, 'TestProject'), ['test-command-esm']);
expect(stdout).toMatch('test-command-esm');
});
test('should read config if using import/export in react-native.config.mjs with "type": "commonjs" package.json', () => {
writeFiles(path.join(DIR, 'TestProject'), {
'react-native.config.mjs': `
import {} from 'react';
${USER_CONFIG_ESM}
`,
});
modifyPackageJson(path.join(DIR, 'TestProject'), 'type', 'commonjs');
const {stdout} = runCLI(path.join(DIR, 'TestProject'), ['test-command-esm']);
expect(stdout).toMatch('test-command-esm');
});