UNPKG

expo-updates

Version:

Fetches and manages remotely-hosted assets and updates to your app's JS bundle.

90 lines (78 loc) 2.48 kB
import { by, device, element, waitFor } from 'detox'; import jestExpect from 'expect'; import Server from './utils/server'; import Update from './utils/update'; const projectRoot = process.env.PROJECT_ROOT || process.cwd(); const platform = device.getPlatform(); const protocolVersion = 1; const testElementValueAsync = async (testID: string) => { const attributes: any = await element(by.id(testID)).getAttributes(); return attributes?.text || ''; }; const waitForAppToBecomeVisible = async () => { await waitFor(element(by.id('updateString'))) .toBeVisible() .withTimeout(2000); }; describe('Basic tests', () => { afterEach(async () => { await device.uninstallApp(); Server.stop(); }); it('downloads new update before launching', async () => { const bundleFilename = 'bundle1.js'; const newNotifyString = 'test-update-1'; const hash = await Update.copyBundleToStaticFolder( projectRoot, bundleFilename, newNotifyString, platform ); const manifest = Update.getUpdateManifestForBundleFilename( new Date(), hash, 'test-update-1-key', bundleFilename, [], projectRoot ); Server.start(Update.serverPort, protocolVersion, 1000); await Server.serveSignedManifest(manifest, projectRoot); await device.installApp(); await device.launchApp({ newInstance: true, }); await waitForAppToBecomeVisible(); const message = await testElementValueAsync('updateString'); jestExpect(message).toBe('test-update-1'); await device.terminateApp(); }); it('does not download new update when it takes longer than timeout', async () => { const bundleFilename = 'bundle1.js'; const newNotifyString = 'test-update-1'; const hash = await Update.copyBundleToStaticFolder( projectRoot, bundleFilename, newNotifyString, platform ); const manifest = Update.getUpdateManifestForBundleFilename( new Date(), hash, 'test-update-1-key', bundleFilename, [], projectRoot ); Server.start(Update.serverPort, protocolVersion, 5000); await Server.serveSignedManifest(manifest, projectRoot); await device.installApp(); await device.launchApp({ newInstance: true, }); await waitForAppToBecomeVisible(); const message = await testElementValueAsync('updateString'); jestExpect(message).toBe('test'); await device.terminateApp(); }); });