/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/community-cli-plugin/src/commands/bundle/__tests__/getAssetDestPathAndroid-test.js
88 строк
2 KB
Tim Yung
RN: Delete `@oncall` Annotations (#51416)
18 май 2025, 02:18
18 май 2025, 02:18
84de8a0
Код
Авторство
О чём код?
/** * 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 */ import getAssetDestPathAndroid from '../getAssetDestPathAndroid'; const path = require('path'); jest.dontMock('../getAssetDestPathAndroid').dontMock('../assetPathUtils'); describe('getAssetDestPathAndroid', () => { test('should use the right destination folder', () => { const asset = { name: 'icon', type: 'png', httpServerLocation: '/assets/test', }; const expectDestPathForScaleToStartWith = ( scale: number, location: string, ) => { if (!getAssetDestPathAndroid(asset, scale).startsWith(location)) { throw new Error( `asset for scale ${scale} should start with path '${location}'`, ); } }; expectDestPathForScaleToStartWith(1, 'drawable-mdpi'); expectDestPathForScaleToStartWith(1.5, 'drawable-hdpi'); expectDestPathForScaleToStartWith(2, 'drawable-xhdpi'); expectDestPathForScaleToStartWith(3, 'drawable-xxhdpi'); expectDestPathForScaleToStartWith(4, 'drawable-xxxhdpi'); }); test('should lowercase path', () => { const asset = { name: 'Icon', type: 'png', httpServerLocation: '/assets/App/Test', }; expect(getAssetDestPathAndroid(asset, 1)).toBe( path.normalize('drawable-mdpi/app_test_icon.png'), ); }); test('should remove `assets/` prefix', () => { const asset = { name: 'icon', type: 'png', httpServerLocation: '/assets/RKJSModules/Apps/AndroidSample/Assets', }; expect(getAssetDestPathAndroid(asset, 1).startsWith('assets_')).toBeFalsy(); }); test('should put non-drawable resources to `raw/`', () => { const asset = { name: 'video', type: 'mp4', httpServerLocation: '/assets/app/test', }; expect(getAssetDestPathAndroid(asset, 1)).toBe( path.normalize('raw/app_test_video.mp4'), ); }); test('should handle assets with a relative path outside of root', () => { const asset = { name: 'icon', type: 'png', httpServerLocation: '/assets/../../test', }; expect(getAssetDestPathAndroid(asset, 1)).toBe( path.normalize('drawable-mdpi/__test_icon.png'), ); }); });