mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/48006 Changelog: [internal] This implements symbolication of error stack traces in Fantom tests. We just needed to ask Metro to generate source maps and use the `source-map` package to process the stack traces that we get back from the runtime. Reviewed By: sammy-SC Differential Revision: D66577818 fbshipit-source-id: 672c66c246ad8646646d5ed31cabca39eb4f7aca
332 lines
8.6 KiB
JavaScript
332 lines
8.6 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.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
* @oncall react_native
|
|
*/
|
|
|
|
import type {TestSuiteResult} from '../runtime/setup';
|
|
|
|
import entrypointTemplate from './entrypoint-template';
|
|
import {spawnSync} from 'child_process';
|
|
import crypto from 'crypto';
|
|
import fs from 'fs';
|
|
// $FlowExpectedError[untyped-import]
|
|
import {formatResultsErrors} from 'jest-message-util';
|
|
import Metro from 'metro';
|
|
import nullthrows from 'nullthrows';
|
|
import os from 'os';
|
|
import path from 'path';
|
|
// $FlowExpectedError[untyped-import]
|
|
import {SourceMapConsumer} from 'source-map';
|
|
|
|
const BUILD_OUTPUT_PATH = path.resolve(__dirname, '..', 'build');
|
|
|
|
const ENABLE_OPTIMIZED_MODE: false = false;
|
|
const PRINT_FANTOM_OUTPUT: false = false;
|
|
|
|
function parseRNTesterCommandResult(
|
|
commandArgs: $ReadOnlyArray<string>,
|
|
result: ReturnType<typeof spawnSync>,
|
|
): {logs: string, testResult: TestSuiteResult} {
|
|
const stdout = result.stdout.toString();
|
|
|
|
const outputArray = stdout
|
|
.trim()
|
|
.split('\n')
|
|
.filter(log => !log.startsWith('Running "')); // remove AppRegistry logs.
|
|
|
|
// The last line should be the test output in JSON format
|
|
const testResultJSON = outputArray.pop();
|
|
|
|
let testResult;
|
|
try {
|
|
testResult = JSON.parse(nullthrows(testResultJSON));
|
|
} catch (error) {
|
|
throw new Error(
|
|
[
|
|
'Failed to parse test results from RN tester binary result. Full output:',
|
|
'buck2 ' + commandArgs.join(' '),
|
|
'stdout:',
|
|
stdout,
|
|
'stderr:',
|
|
result.stderr.toString(),
|
|
].join('\n'),
|
|
);
|
|
}
|
|
|
|
return {logs: outputArray.join('\n'), testResult};
|
|
}
|
|
|
|
function getBuckModeForPlatform() {
|
|
const mode = ENABLE_OPTIMIZED_MODE ? 'opt' : 'dev';
|
|
|
|
switch (os.platform()) {
|
|
case 'linux':
|
|
return `@//arvr/mode/linux/${mode}`;
|
|
case 'darwin':
|
|
return os.arch() === 'arm64'
|
|
? `@//arvr/mode/mac-arm/${mode}`
|
|
: `@//arvr/mode/mac/${mode}`;
|
|
case 'win32':
|
|
return `@//arvr/mode/win/${mode}`;
|
|
default:
|
|
throw new Error(`Unsupported platform: ${os.platform()}`);
|
|
}
|
|
}
|
|
|
|
function getShortHash(contents: string): string {
|
|
return crypto.createHash('md5').update(contents).digest('hex').slice(0, 8);
|
|
}
|
|
|
|
function generateBytecodeBundle({
|
|
sourcePath,
|
|
bytecodePath,
|
|
}: {
|
|
sourcePath: string,
|
|
bytecodePath: string,
|
|
}): void {
|
|
const hermesCompilerCommandArgs = [
|
|
'run',
|
|
getBuckModeForPlatform(),
|
|
'//xplat/hermes/tools/hermesc:hermesc',
|
|
'--',
|
|
'-emit-binary',
|
|
'-O',
|
|
'-max-diagnostic-width',
|
|
'80',
|
|
'-out',
|
|
bytecodePath,
|
|
sourcePath,
|
|
];
|
|
|
|
const hermesCompilerCommandResult = spawnSync(
|
|
'buck2',
|
|
hermesCompilerCommandArgs,
|
|
{
|
|
encoding: 'utf8',
|
|
env: {
|
|
...process.env,
|
|
PATH: `/usr/local/bin:${process.env.PATH ?? ''}`,
|
|
},
|
|
},
|
|
);
|
|
|
|
if (hermesCompilerCommandResult.status !== 0) {
|
|
throw new Error(
|
|
[
|
|
'Failed to run Hermes compiler. Full output:',
|
|
'buck2 ' + hermesCompilerCommandArgs.join(' '),
|
|
'stdout:',
|
|
hermesCompilerCommandResult.stdout,
|
|
'stderr:',
|
|
hermesCompilerCommandResult.stderr,
|
|
'error:',
|
|
hermesCompilerCommandResult.error,
|
|
].join('\n'),
|
|
);
|
|
}
|
|
}
|
|
|
|
function symbolicateStackTrace(
|
|
sourceMapPath: string,
|
|
stackTrace: string,
|
|
): string {
|
|
const sourceMapData = JSON.parse(fs.readFileSync(sourceMapPath, 'utf8'));
|
|
const consumer = new SourceMapConsumer(sourceMapData);
|
|
|
|
return stackTrace
|
|
.split('\n')
|
|
.map(line => {
|
|
const match = line.match(/at (.*) \((.*):(\d+):(\d+)\)/);
|
|
if (match) {
|
|
const functionName = match[1];
|
|
// const fileName = match[2];
|
|
const lineNumber = parseInt(match[3], 10);
|
|
const columnNumber = parseInt(match[4], 10);
|
|
// Get the original position
|
|
const originalPosition = consumer.originalPositionFor({
|
|
line: lineNumber,
|
|
column: columnNumber,
|
|
});
|
|
return `at ${originalPosition.name ?? functionName} (${originalPosition.source}:${originalPosition.line}:${originalPosition.column})`;
|
|
} else {
|
|
return line;
|
|
}
|
|
})
|
|
.join('\n');
|
|
}
|
|
|
|
module.exports = async function runTest(
|
|
globalConfig: {...},
|
|
config: {...},
|
|
environment: {...},
|
|
runtime: {...},
|
|
testPath: string,
|
|
): mixed {
|
|
const startTime = Date.now();
|
|
|
|
const isOptimizedMode = ENABLE_OPTIMIZED_MODE;
|
|
|
|
const metroConfig = await Metro.loadConfig({
|
|
config: path.resolve(__dirname, '..', 'config', 'metro.config.js'),
|
|
});
|
|
|
|
const setupModulePath = path.resolve(__dirname, '../runtime/setup.js');
|
|
|
|
const entrypointContents = entrypointTemplate({
|
|
testPath: `${path.relative(BUILD_OUTPUT_PATH, testPath)}`,
|
|
setupModulePath: `${path.relative(BUILD_OUTPUT_PATH, setupModulePath)}`,
|
|
});
|
|
|
|
const entrypointPath = path.join(
|
|
BUILD_OUTPUT_PATH,
|
|
`${getShortHash(entrypointContents)}-${path.basename(testPath)}`,
|
|
);
|
|
const testBundlePath = entrypointPath + '.bundle';
|
|
const testJSBundlePath = testBundlePath + '.js';
|
|
const testBytecodeBundlePath = testJSBundlePath + '.hbc';
|
|
|
|
fs.mkdirSync(path.dirname(entrypointPath), {recursive: true});
|
|
fs.writeFileSync(entrypointPath, entrypointContents, 'utf8');
|
|
|
|
const sourceMapPath = path.join(
|
|
path.dirname(testJSBundlePath),
|
|
path.basename(testJSBundlePath, '.js') + '.map',
|
|
);
|
|
|
|
await Metro.runBuild(metroConfig, {
|
|
entry: entrypointPath,
|
|
out: testJSBundlePath,
|
|
platform: 'android',
|
|
minify: isOptimizedMode,
|
|
dev: !isOptimizedMode,
|
|
sourceMap: true,
|
|
sourceMapUrl: sourceMapPath,
|
|
});
|
|
|
|
if (isOptimizedMode) {
|
|
generateBytecodeBundle({
|
|
sourcePath: testJSBundlePath,
|
|
bytecodePath: testBytecodeBundlePath,
|
|
});
|
|
}
|
|
|
|
const rnTesterCommandArgs = [
|
|
'run',
|
|
getBuckModeForPlatform(),
|
|
'//xplat/ReactNative/react-native-cxx/samples/tester:tester',
|
|
'--',
|
|
'--bundlePath',
|
|
testBundlePath,
|
|
];
|
|
const rnTesterCommandResult = spawnSync('buck2', rnTesterCommandArgs, {
|
|
encoding: 'utf8',
|
|
env: {
|
|
...process.env,
|
|
PATH: `/usr/local/bin:${process.env.PATH ?? ''}`,
|
|
},
|
|
});
|
|
|
|
if (rnTesterCommandResult.status !== 0) {
|
|
throw new Error(
|
|
[
|
|
'Failed to run test in RN tester binary. Full output:',
|
|
'buck2 ' + rnTesterCommandArgs.join(' '),
|
|
'stdout:',
|
|
rnTesterCommandResult.stdout,
|
|
'stderr:',
|
|
rnTesterCommandResult.stderr,
|
|
'error:',
|
|
rnTesterCommandResult.error,
|
|
].join('\n'),
|
|
);
|
|
}
|
|
|
|
if (PRINT_FANTOM_OUTPUT) {
|
|
console.log(
|
|
[
|
|
'RN tester binary. Full output:',
|
|
'buck2 ' + rnTesterCommandArgs.join(' '),
|
|
'stdout:',
|
|
rnTesterCommandResult.stdout,
|
|
'stderr:',
|
|
rnTesterCommandResult.stderr,
|
|
'error:',
|
|
rnTesterCommandResult.error,
|
|
].join('\n'),
|
|
);
|
|
}
|
|
|
|
const rnTesterParsedOutput = parseRNTesterCommandResult(
|
|
rnTesterCommandArgs,
|
|
rnTesterCommandResult,
|
|
);
|
|
|
|
const testResultError = rnTesterParsedOutput.testResult.error;
|
|
if (testResultError) {
|
|
const error = new Error(testResultError.message);
|
|
error.stack = symbolicateStackTrace(sourceMapPath, testResultError.stack);
|
|
throw error;
|
|
}
|
|
|
|
const endTime = Date.now();
|
|
|
|
if (process.env.SANDCASTLE == null) {
|
|
console.log(rnTesterParsedOutput.logs);
|
|
}
|
|
|
|
const testResults =
|
|
nullthrows(rnTesterParsedOutput.testResult.testResults).map(testResult => ({
|
|
ancestorTitles: [] as Array<string>,
|
|
failureDetails: [] as Array<string>,
|
|
testFilePath: testPath,
|
|
...testResult,
|
|
failureMessages: testResult.failureMessages.map(maybeStackTrace =>
|
|
symbolicateStackTrace(sourceMapPath, maybeStackTrace),
|
|
),
|
|
})) ?? [];
|
|
|
|
return {
|
|
testFilePath: testPath,
|
|
failureMessage: formatResultsErrors(
|
|
testResults,
|
|
config,
|
|
globalConfig,
|
|
testPath,
|
|
),
|
|
leaks: false,
|
|
openHandles: [],
|
|
perfStats: {
|
|
start: startTime,
|
|
end: endTime,
|
|
duration: endTime - startTime,
|
|
runtime: endTime - startTime,
|
|
slow: false,
|
|
},
|
|
snapshot: {
|
|
added: 0,
|
|
fileDeleted: false,
|
|
matched: 0,
|
|
unchecked: 0,
|
|
uncheckedKeys: [],
|
|
unmatched: 0,
|
|
updated: 0,
|
|
},
|
|
numTotalTests: testResults.length,
|
|
numPassingTests: testResults.filter(test => test.status === 'passed')
|
|
.length,
|
|
numFailingTests: testResults.filter(test => test.status === 'failed')
|
|
.length,
|
|
numPendingTests: testResults.filter(test => test.status === 'pending')
|
|
.length,
|
|
numTodoTests: 0,
|
|
skipped: false,
|
|
testResults,
|
|
};
|
|
};
|