UNPKG

@sentry/wizard

Version:

Sentry wizard helping you to configure your project

402 lines (338 loc) 13.2 kB
/* eslint-disable no-useless-escape */ import { addSentryWithBundledScriptsToBundleShellScript, addSentryWithCliToBundleShellScript, doesBundlePhaseIncludeSentry, findBundlePhase, findDebugFilesUploadPhase, removeSentryFromBundleShellScript, } from '../../src/react-native/xcode'; describe('react-native xcode', () => { describe('addSentryWithCliToBundleShellScript', () => { it('adds sentry cli to rn bundle build phase', () => { const input = `set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" /bin/sh -c "$WITH_ENVIRONMENT $REACT_NATIVE_XCODE"`; // actual shell script looks like this: // /bin/sh -c "$WITH_ENVIRONMENT \"$REACT_NATIVE_XCODE\"" // but during parsing xcode library removes the quotes const expectedOutput = `export SENTRY_PROPERTIES=sentry.properties export EXTRA_PACKAGER_ARGS="--sourcemap-output $DERIVED_FILE_DIR/main.jsbundle.map" set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" /bin/sh -c "$WITH_ENVIRONMENT \\"../node_modules/@sentry/cli/bin/sentry-cli react-native xcode $REACT_NATIVE_XCODE\\"" /bin/sh -c "$WITH_ENVIRONMENT ../node_modules/@sentry/react-native/scripts/collect-modules.sh" `; expect(addSentryWithCliToBundleShellScript(input)).toBe(expectedOutput); }); }); describe('addSentryBundledScriptsToBundleShellScript', () => { it('adds sentry cli to rn bundle build phase', () => { const input = `set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" /bin/sh -c "$WITH_ENVIRONMENT $REACT_NATIVE_XCODE"`; // actual shell script looks like this: // /bin/sh -c "$WITH_ENVIRONMENT \"$REACT_NATIVE_XCODE\"" // but during parsing xcode library removes the quotes const expectedOutput = `set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" /bin/sh -c "$WITH_ENVIRONMENT \\"/bin/sh ../node_modules/@sentry/react-native/scripts/sentry-xcode.sh $REACT_NATIVE_XCODE\\""`; expect(addSentryWithBundledScriptsToBundleShellScript(input)).toBe( expectedOutput, ); }); it('adds sentry cli to expo bundle build phase', () => { const input = ` if [[ -f "$PODS_ROOT/../.xcode.env" ]]; then source "$PODS_ROOT/../.xcode.env" fi if [[ -f "$PODS_ROOT/../.xcode.env.local" ]]; then source "$PODS_ROOT/../.xcode.env.local" fi # The project root by default is one level up from the ios directory export PROJECT_ROOT="$PROJECT_DIR"/.. if [[ "$CONFIGURATION" = *Debug* ]]; then export SKIP_BUNDLING=1 fi if [[ -z "$ENTRY_FILE" ]]; then # Set the entry JS file using the bundler's entry resolution. export ENTRY_FILE="$("$NODE_BINARY" -e "require('expo/scripts/resolveAppEntry')" "$PROJECT_ROOT" ios absolute | tail -n 1)" fi if [[ -z "$CLI_PATH" ]]; then # Use Expo CLI export CLI_PATH="$("$NODE_BINARY" --print "require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })")" fi if [[ -z "$BUNDLE_COMMAND" ]]; then # Default Expo CLI command for bundling export BUNDLE_COMMAND="export:embed" fi # Source .xcode.env.updates if it exists to allow # SKIP_BUNDLING to be unset if needed if [[ -f "$PODS_ROOT/../.xcode.env.updates" ]]; then source "$PODS_ROOT/../.xcode.env.updates" fi # Source local changes to allow overrides # if needed if [[ -f "$PODS_ROOT/../.xcode.env.local" ]]; then source "$PODS_ROOT/../.xcode.env.local" fi \`"$NODE_BINARY" --print "require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'"\` `; const expectedOutput = ` if [[ -f "$PODS_ROOT/../.xcode.env" ]]; then source "$PODS_ROOT/../.xcode.env" fi if [[ -f "$PODS_ROOT/../.xcode.env.local" ]]; then source "$PODS_ROOT/../.xcode.env.local" fi # The project root by default is one level up from the ios directory export PROJECT_ROOT="$PROJECT_DIR"/.. if [[ "$CONFIGURATION" = *Debug* ]]; then export SKIP_BUNDLING=1 fi if [[ -z "$ENTRY_FILE" ]]; then # Set the entry JS file using the bundler's entry resolution. export ENTRY_FILE="$("$NODE_BINARY" -e "require('expo/scripts/resolveAppEntry')" "$PROJECT_ROOT" ios absolute | tail -n 1)" fi if [[ -z "$CLI_PATH" ]]; then # Use Expo CLI export CLI_PATH="$("$NODE_BINARY" --print "require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })")" fi if [[ -z "$BUNDLE_COMMAND" ]]; then # Default Expo CLI command for bundling export BUNDLE_COMMAND="export:embed" fi # Source .xcode.env.updates if it exists to allow # SKIP_BUNDLING to be unset if needed if [[ -f "$PODS_ROOT/../.xcode.env.updates" ]]; then source "$PODS_ROOT/../.xcode.env.updates" fi # Source local changes to allow overrides # if needed if [[ -f "$PODS_ROOT/../.xcode.env.local" ]]; then source "$PODS_ROOT/../.xcode.env.local" fi /bin/sh \`"$NODE_BINARY" --print "require('path').dirname(require.resolve('@sentry/react-native/package.json')) + '/scripts/sentry-xcode.sh'"\` \`"$NODE_BINARY" --print "require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'"\` `; expect(addSentryWithBundledScriptsToBundleShellScript(input)).toBe( expectedOutput, ); }); }); describe('removeSentryFromBundleShellScript', () => { it('removes sentry cli from rn bundle build phase', () => { const input = `export SENTRY_PROPERTIES=sentry.properties export EXTRA_PACKAGER_ARGS="--sourcemap-output $DERIVED_FILE_DIR/main.jsbundle.map" set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" /bin/sh -c "$WITH_ENVIRONMENT \"../node_modules/@sentry/cli/bin/sentry-cli react-native xcode $REACT_NATIVE_XCODE\"" /bin/sh -c "$WITH_ENVIRONMENT ../node_modules/@sentry/react-native/scripts/collect-modules.sh" `; const expectedOutput = `export EXTRA_PACKAGER_ARGS="--sourcemap-output $DERIVED_FILE_DIR/main.jsbundle.map" set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" /bin/sh -c "$WITH_ENVIRONMENT \"$REACT_NATIVE_XCODE\"" `; expect(removeSentryFromBundleShellScript(input)).toBe(expectedOutput); }); it('removes sentry bundled scripts from rn bundle build phase', () => { const input = `set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" /bin/sh -c "$WITH_ENVIRONMENT \"/bin/sh ../node_modules/@sentry/react-native/scripts/sentry-xcode.sh $REACT_NATIVE_XCODE\""`; const expectedOutput = `set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" /bin/sh -c "$WITH_ENVIRONMENT \"$REACT_NATIVE_XCODE\""`; expect(removeSentryFromBundleShellScript(input)).toBe(expectedOutput); }); }); describe('findBundlePhase', () => { it('returns build phase with react native xcode shell script', () => { const inputMap = { 1: { shellScript: 'foo', }, 2: { shellScript: 'bar', }, 3: { shellScript: `set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" /bin/sh -c "$WITH_ENVIRONMENT \"$REACT_NATIVE_XCODE\"" `, }, 4: { shellScript: 'qux', }, }; const expected = { shellScript: `set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" /bin/sh -c "$WITH_ENVIRONMENT \"$REACT_NATIVE_XCODE\"" `, }; expect(findBundlePhase(inputMap)).toEqual(expected); }); it('returns undefined if bundle phase not present', () => { const inputMap = { 1: { shellScript: 'foo', }, 2: { shellScript: 'bar', }, 3: { // note different path to the script shellScript: `set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/unknown/react-native-xcode.sh" /bin/sh -c "$WITH_ENVIRONMENT \"$REACT_NATIVE_XCODE\"" `, }, 4: { shellScript: 'qux', }, }; expect(findBundlePhase(inputMap)).toBeUndefined(); }); }); describe('doesBundlePhaseIncludeSentry', () => { it('returns true for script containing sentry cli calling react native xcode command', () => { const input = { shellScript: `set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" SENTRY_CLI="sentry-cli react-native xcode" /bin/sh -c "$WITH_ENVIRONMENT \"$SENTRY_CLI $REACT_NATIVE_XCODE\"" `, }; expect(doesBundlePhaseIncludeSentry(input)).toBeTruthy(); }); it('returns true for script containing sentry bundled script', () => { const input = { shellScript: `set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" SENTRY_CLI="sentry-cli react-native xcode" /bin/sh -c "$WITH_ENVIRONMENT \\"/bin/sh ../node_modules/@sentry/react-native/scripts/sentry-xcode.sh $REACT_NATIVE_XCODE"\\" `, }; expect(doesBundlePhaseIncludeSentry(input)).toBeTruthy(); }); it('returns false', () => { const input = { // note sentry-cli can be part of the script but doesn't call react native xcode script shellScript: `set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" /bin/sh -c "$WITH_ENVIRONMENT \"$REACT_NATIVE_XCODE\"" sentry-cli --version `, }; expect(doesBundlePhaseIncludeSentry(input)).toBeFalsy(); }); }); describe('findDebugFilesUploadPhase', () => { it('returns debug files build phase using debug files command', () => { const input = { 1: { shellScript: 'foo', }, 2: { shellScript: `set -e sentry-cli debug-files upload path/to/dsym --include-sources `, }, }; const expected = [ '2', { shellScript: `set -e sentry-cli debug-files upload path/to/dsym --include-sources `, }, ]; expect(findDebugFilesUploadPhase(input)).toEqual(expected); }); it('returns debug files build phase with sentry-cli absolute path', () => { const input = { 1: { shellScript: 'foo', }, 2: { shellScript: `set -e /path/to/bin/sentry-cli debug-files upload path/to/dsym --include-sources `, }, }; const expected = [ '2', { shellScript: `set -e /path/to/bin/sentry-cli debug-files upload path/to/dsym --include-sources `, }, ]; expect(findDebugFilesUploadPhase(input)).toEqual(expected); }); it('returns debug files build phase using dsym command', () => { const input = { 1: { shellScript: 'foo', }, 2: { shellScript: `set -e sentry-cli upload-dsym path/to/dsym --include-sources `, }, }; const expected = [ '2', { shellScript: `set -e sentry-cli upload-dsym path/to/dsym --include-sources `, }, ]; expect(findDebugFilesUploadPhase(input)).toEqual(expected); }); it('returns debug files build phase using bundled scripts', () => { const input = { 1: { shellScript: 'foo', }, 2: { shellScript: `/bin/sh ../node_modules/@sentry/react-native/scripts/sentry-xcode-debug-files.sh`, }, }; const expected = [ '2', { shellScript: `/bin/sh ../node_modules/@sentry/react-native/scripts/sentry-xcode-debug-files.sh`, }, ]; expect(findDebugFilesUploadPhase(input)).toEqual(expected); }); it('returns undefined if build phase not present', () => { const input = { 1: { shellScript: 'foo', }, 2: { // sentry-cli present but with different command shellScript: 'sentry-cli sourcempas upload', }, }; expect(findDebugFilesUploadPhase(input)).toBeUndefined(); }); }); });