mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
5bb0caf858
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/33870 I'm fixing a broken CI on master for `test_windows` as `metro-memory-fs` doesn't automatically recognize the platform but needs to have it passed in input. It was currently failing to parse a `C:\...` path. This fixes it. Changelog: [Internal] [Changed] - Fix `test_windows` by passing the correct platform to the Metro Virtual FS Reviewed By: cipolleschi Differential Revision: D36507564 fbshipit-source-id: 39dfd7e9ce492d126fbb513a70ec5a60965c61fd
251 lines
6.3 KiB
JavaScript
251 lines
6.3 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import * as path from 'path';
|
|
|
|
const {
|
|
copyBuildScripts,
|
|
downloadHermesTarball,
|
|
expandHermesTarball,
|
|
getHermesTagSHA,
|
|
readHermesTag,
|
|
setHermesTag,
|
|
} = require('../hermes/hermes-utils');
|
|
|
|
const hermesTag =
|
|
'hermes-2022-04-28-RNv0.69.0-15d07c2edd29a4ea0b8f15ab0588a0c1adb1200f';
|
|
const tarballContents = 'dummy string';
|
|
const hermesTagSha = '5244f819b2f3949ca94a3a1bf75d54a8ed59d94a';
|
|
|
|
const ROOT_DIR = path.normalize(path.join(__dirname, '..', '..'));
|
|
const SDKS_DIR = path.join(ROOT_DIR, 'sdks');
|
|
|
|
const MemoryFs = require('metro-memory-fs');
|
|
|
|
let execCalls;
|
|
let fs;
|
|
let shelljs;
|
|
|
|
jest.mock('shelljs', () => ({
|
|
echo: jest.fn(),
|
|
exec: jest.fn(command => {
|
|
if (command.startsWith('curl')) {
|
|
fs.writeFileSync(
|
|
path.join(SDKS_DIR, 'download', `hermes-${hermesTagSha}.tgz`),
|
|
tarballContents,
|
|
);
|
|
execCalls.curl = true;
|
|
return {code: 0};
|
|
}
|
|
|
|
if (command.startsWith('git')) {
|
|
execCalls.git = true;
|
|
return hermesTagSha + '\n';
|
|
}
|
|
|
|
if (command.startsWith('tar')) {
|
|
fs.mkdirSync(path.join(SDKS_DIR, 'hermes', 'utils'), {
|
|
recursive: true,
|
|
});
|
|
fs.writeFileSync(path.join(SDKS_DIR, 'hermes', `package.json`), '{}');
|
|
execCalls.tar = true;
|
|
return {code: 0};
|
|
}
|
|
}),
|
|
exit: jest.fn(),
|
|
}));
|
|
|
|
function populateMockFilesystem() {
|
|
fs.mkdirSync(path.join(SDKS_DIR, 'hermes-engine', 'utils'), {
|
|
recursive: true,
|
|
});
|
|
fs.writeFileSync(
|
|
path.join(
|
|
ROOT_DIR,
|
|
'sdks',
|
|
'hermes-engine',
|
|
'utils',
|
|
'build-apple-framework.sh',
|
|
),
|
|
'Dummy file',
|
|
);
|
|
fs.writeFileSync(
|
|
path.join(
|
|
ROOT_DIR,
|
|
'sdks',
|
|
'hermes-engine',
|
|
'utils',
|
|
'build-ios-framework.sh',
|
|
),
|
|
'Dummy file',
|
|
);
|
|
fs.writeFileSync(
|
|
path.join(
|
|
ROOT_DIR,
|
|
'sdks',
|
|
'hermes-engine',
|
|
'utils',
|
|
'build-mac-framework.sh',
|
|
),
|
|
'Dummy file',
|
|
);
|
|
fs.writeFileSync(
|
|
path.join(SDKS_DIR, 'hermes-engine', 'hermes-engine.podspec'),
|
|
'Dummy file',
|
|
);
|
|
}
|
|
|
|
describe('hermes-utils', () => {
|
|
beforeEach(() => {
|
|
jest.resetModules();
|
|
|
|
jest.mock(
|
|
'fs',
|
|
() =>
|
|
new MemoryFs({
|
|
platform: process.platform === 'win32' ? 'win32' : 'posix',
|
|
}),
|
|
);
|
|
fs = require('fs');
|
|
fs.reset();
|
|
|
|
populateMockFilesystem();
|
|
|
|
execCalls = Object.create(null);
|
|
shelljs = require('shelljs');
|
|
});
|
|
describe('readHermesTag', () => {
|
|
it('should return main if .hermesversion does not exist', () => {
|
|
expect(readHermesTag()).toEqual('main');
|
|
});
|
|
it('should return tag from .hermesversion if file exists', () => {
|
|
fs.writeFileSync(path.join(SDKS_DIR, '.hermesversion'), hermesTag);
|
|
expect(readHermesTag()).toEqual(hermesTag);
|
|
});
|
|
});
|
|
describe('setHermesTag', () => {
|
|
it('should write tag to .hermesversion file', () => {
|
|
setHermesTag(hermesTag);
|
|
expect(
|
|
fs.readFileSync(path.join(SDKS_DIR, '.hermesversion'), {
|
|
encoding: 'utf8',
|
|
flag: 'r',
|
|
}),
|
|
).toEqual(hermesTag);
|
|
});
|
|
it('should set Hermes tag and read it back', () => {
|
|
setHermesTag(hermesTag);
|
|
expect(readHermesTag()).toEqual(hermesTag);
|
|
});
|
|
});
|
|
describe('getHermesTagSHA', () => {
|
|
it('should return trimmed commit SHA for Hermes tag', () => {
|
|
expect(getHermesTagSHA(hermesTag)).toEqual(hermesTagSha);
|
|
expect(execCalls.git).toBeTruthy();
|
|
});
|
|
});
|
|
describe('downloadHermesTarball', () => {
|
|
it('should download Hermes tarball to download dir', () => {
|
|
downloadHermesTarball();
|
|
expect(execCalls.curl).toBeTruthy();
|
|
expect(
|
|
fs.readFileSync(
|
|
path.join(SDKS_DIR, 'download', `hermes-${hermesTagSha}.tgz`),
|
|
{
|
|
encoding: 'utf8',
|
|
flag: 'r',
|
|
},
|
|
),
|
|
).toEqual(tarballContents);
|
|
});
|
|
it('should not re-download Hermes tarball if tarball exists', () => {
|
|
fs.mkdirSync(path.join(SDKS_DIR, 'download'), {recursive: true});
|
|
fs.writeFileSync(
|
|
path.join(SDKS_DIR, 'download', `hermes-${hermesTagSha}.tgz`),
|
|
tarballContents,
|
|
);
|
|
|
|
downloadHermesTarball();
|
|
expect(execCalls.curl).toBeUndefined();
|
|
});
|
|
});
|
|
describe('expandHermesTarball', () => {
|
|
it('should expand Hermes tarball to Hermes source dir', () => {
|
|
fs.mkdirSync(path.join(SDKS_DIR, 'download'), {recursive: true});
|
|
fs.writeFileSync(
|
|
path.join(SDKS_DIR, 'download', `hermes-${hermesTagSha}.tgz`),
|
|
tarballContents,
|
|
);
|
|
expect(fs.existsSync(path.join(SDKS_DIR, 'hermes'))).toBeFalsy();
|
|
expandHermesTarball();
|
|
expect(execCalls.tar).toBe(true);
|
|
expect(fs.existsSync(path.join(SDKS_DIR, 'hermes'))).toBeTruthy();
|
|
});
|
|
it('should fail if Hermes tarball does not exist', () => {
|
|
expandHermesTarball();
|
|
expect(execCalls.tar).toBeUndefined();
|
|
expect(shelljs.exit.mock.calls.length).toBeGreaterThan(0);
|
|
});
|
|
});
|
|
describe('copyBuildScripts', () => {
|
|
it('should copy React Native Hermes build scripts to Hermes source directory', () => {
|
|
fs.mkdirSync(path.join(SDKS_DIR, 'hermes', 'utils'), {
|
|
recursive: true,
|
|
});
|
|
copyBuildScripts();
|
|
expect(
|
|
fs.readFileSync(
|
|
path.join(
|
|
ROOT_DIR,
|
|
'sdks',
|
|
'hermes',
|
|
'utils',
|
|
'build-mac-framework.sh',
|
|
),
|
|
{
|
|
encoding: 'utf8',
|
|
flag: 'r',
|
|
},
|
|
),
|
|
).toEqual(
|
|
fs.readFileSync(
|
|
path.join(
|
|
ROOT_DIR,
|
|
'sdks',
|
|
'hermes-engine',
|
|
'utils',
|
|
'build-mac-framework.sh',
|
|
),
|
|
{
|
|
encoding: 'utf8',
|
|
flag: 'r',
|
|
},
|
|
),
|
|
);
|
|
expect(
|
|
fs.readFileSync(
|
|
path.join(SDKS_DIR, 'hermes', 'hermes-engine.podspec'),
|
|
{
|
|
encoding: 'utf8',
|
|
flag: 'r',
|
|
},
|
|
),
|
|
).toEqual(
|
|
fs.readFileSync(
|
|
path.join(SDKS_DIR, 'hermes-engine', 'hermes-engine.podspec'),
|
|
{
|
|
encoding: 'utf8',
|
|
flag: 'r',
|
|
},
|
|
),
|
|
);
|
|
});
|
|
});
|
|
});
|