@johnf/react-native-owl
Version:
Visual regression testing for React Native
297 lines (296 loc) • 13.1 kB
JavaScript
"use strict";
var _execa = _interopRequireDefault(require("execa"));
var xcrun = _interopRequireWildcard(require("./xcrun.js"));
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
describe('xcrun.ts', () => {
jest.spyOn(process, 'cwd').mockReturnValue('/Users/johndoe/Projects/my-project');
const execKillMock = {
kill: jest.fn(),
stdout: 'bundleId'
};
const execMock = jest.spyOn(_execa.default, 'command').mockReturnValue(execKillMock);
beforeEach(() => {
execMock.mockClear();
});
describe('xcrunStatusBar', () => {
it('updates the status bar with default config', async () => {
await xcrun.xcrunStatusBar({
device: 'iPhone 13 Pro'
});
expect(execMock).toHaveBeenCalledTimes(1);
expect(execMock).toHaveBeenCalledWith('xcrun simctl status_bar iPhone\\ 13\\ Pro override --time 9:41', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator',
stdio: 'ignore'
});
});
it('updates the status bar with debug', async () => {
await xcrun.xcrunStatusBar({
device: 'iPhone 13 Pro',
debug: true
});
expect(execMock).toHaveBeenCalledTimes(1);
expect(execMock).toHaveBeenCalledWith('xcrun simctl status_bar iPhone\\ 13\\ Pro override --time 9:41', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator',
stdio: 'inherit'
});
});
it('updates the status bar with custom configuration', async () => {
await xcrun.xcrunStatusBar({
device: 'iPhone 13 Pro',
configuration: 'Release'
});
expect(execMock).toHaveBeenCalledTimes(1);
expect(execMock).toHaveBeenCalledWith('xcrun simctl status_bar iPhone\\ 13\\ Pro override --time 9:41', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Release-iphonesimulator',
stdio: 'ignore'
});
});
it('updates the status bar with custom binaryPath', async () => {
await xcrun.xcrunStatusBar({
device: 'iPhone 13 Pro',
binaryPath: '/some/path/to/my/app.app'
});
expect(execMock).toHaveBeenCalledTimes(1);
expect(execMock).toHaveBeenCalledWith('xcrun simctl status_bar iPhone\\ 13\\ Pro override --time 9:41', {
cwd: '/some/path/to/my',
stdio: 'ignore'
});
});
});
describe('xcrunInstall', () => {
it('installs the app with default config', async () => {
await xcrun.xcrunInstall({
device: 'iPhone 13 Pro',
scheme: 'MyApp'
});
expect(execMock).toHaveBeenCalledTimes(1);
expect(execMock).toHaveBeenCalledWith('xcrun simctl install iPhone\\ 13\\ Pro MyApp.app', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator',
stdio: 'ignore'
});
});
it('installs the app with debug', async () => {
await xcrun.xcrunInstall({
device: 'iPhone 13 Pro',
scheme: 'MyApp',
debug: true
});
expect(execMock).toHaveBeenCalledTimes(1);
expect(execMock).toHaveBeenCalledWith('xcrun simctl install iPhone\\ 13\\ Pro MyApp.app', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator',
stdio: 'inherit'
});
});
it('installs the app with custom configuration', async () => {
await xcrun.xcrunInstall({
device: 'iPhone 13 Pro',
scheme: 'MyApp',
configuration: 'Release'
});
expect(execMock).toHaveBeenCalledTimes(1);
expect(execMock).toHaveBeenCalledWith('xcrun simctl install iPhone\\ 13\\ Pro MyApp.app', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Release-iphonesimulator',
stdio: 'ignore'
});
});
it('installs the app with custom binaryPath', async () => {
await xcrun.xcrunInstall({
device: 'iPhone 13 Pro',
configuration: 'Release',
binaryPath: '/some/path/to/my/app.app'
});
expect(execMock).toHaveBeenCalledTimes(1);
expect(execMock).toHaveBeenCalledWith('xcrun simctl install iPhone\\ 13\\ Pro app.app', {
cwd: '/some/path/to/my',
stdio: 'ignore'
});
});
});
describe('xcrunTerminate', () => {
it('terminates the app with default config', async () => {
await xcrun.xcrunTerminate({
device: 'iPhone 13 Pro',
scheme: 'MyApp'
});
expect(execMock).toHaveBeenCalledTimes(2);
expect(execMock).toHaveBeenNthCalledWith(1, "./PlistBuddy -c 'Print CFBundleIdentifier' /Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator/MyApp.app/Info.plist", {
cwd: '/usr/libexec',
shell: true
});
expect(execMock).toHaveBeenNthCalledWith(2, 'xcrun simctl terminate iPhone\\ 13\\ Pro bundleId', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator',
stdio: 'ignore'
});
});
it('terminates the app with debug', async () => {
await xcrun.xcrunTerminate({
device: 'iPhone 13 Pro',
scheme: 'MyApp',
debug: true
});
expect(execMock).toHaveBeenCalledTimes(2);
expect(execMock).toHaveBeenNthCalledWith(2, 'xcrun simctl terminate iPhone\\ 13\\ Pro bundleId', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator',
stdio: 'inherit'
});
});
it('terminates the app with custom configuration', async () => {
await xcrun.xcrunTerminate({
device: 'iPhone 13 Pro',
scheme: 'MyApp',
configuration: 'Release'
});
expect(execMock).toHaveBeenCalledTimes(2);
expect(execMock).toHaveBeenNthCalledWith(1, "./PlistBuddy -c 'Print CFBundleIdentifier' /Users/johndoe/Projects/my-project/ios/build/Build/Products/Release-iphonesimulator/MyApp.app/Info.plist", {
cwd: '/usr/libexec',
shell: true
});
expect(execMock).toHaveBeenNthCalledWith(2, 'xcrun simctl terminate iPhone\\ 13\\ Pro bundleId', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Release-iphonesimulator',
stdio: 'ignore'
});
});
it('terminates the app with custom binaryPath', async () => {
await xcrun.xcrunTerminate({
device: 'iPhone 13 Pro',
configuration: 'Release',
binaryPath: '/some/path/to/my/app.app'
});
expect(execMock).toHaveBeenCalledTimes(2);
expect(execMock).toHaveBeenNthCalledWith(1, "./PlistBuddy -c 'Print CFBundleIdentifier' /some/path/to/my/app.app/Info.plist", {
cwd: '/usr/libexec',
shell: true
});
expect(execMock).toHaveBeenNthCalledWith(2, 'xcrun simctl terminate iPhone\\ 13\\ Pro bundleId', {
cwd: '/some/path/to/my',
stdio: 'ignore'
});
});
});
describe('xcrunLaunch', () => {
it('launches the app with default config', async () => {
await xcrun.xcrunLaunch({
device: 'iPhone 13 Pro',
scheme: 'MyApp'
});
expect(execMock).toHaveBeenCalledTimes(2);
expect(execMock).toHaveBeenNthCalledWith(1, "./PlistBuddy -c 'Print CFBundleIdentifier' /Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator/MyApp.app/Info.plist", {
cwd: '/usr/libexec',
shell: true
});
expect(execMock).toHaveBeenNthCalledWith(2, 'xcrun simctl launch iPhone\\ 13\\ Pro bundleId', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator',
stdio: 'ignore'
});
});
it('launches the app with debug', async () => {
await xcrun.xcrunLaunch({
device: 'iPhone 13 Pro',
scheme: 'MyApp',
debug: true
});
expect(execMock).toHaveBeenCalledTimes(2);
expect(execMock).toHaveBeenNthCalledWith(2, 'xcrun simctl launch iPhone\\ 13\\ Pro bundleId', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator',
stdio: 'inherit'
});
});
it('launches the app with custom configuration', async () => {
await xcrun.xcrunLaunch({
device: 'iPhone 13 Pro',
scheme: 'MyApp',
configuration: 'Release'
});
expect(execMock).toHaveBeenCalledTimes(2);
expect(execMock).toHaveBeenNthCalledWith(1, "./PlistBuddy -c 'Print CFBundleIdentifier' /Users/johndoe/Projects/my-project/ios/build/Build/Products/Release-iphonesimulator/MyApp.app/Info.plist", {
cwd: '/usr/libexec',
shell: true
});
expect(execMock).toHaveBeenNthCalledWith(2, 'xcrun simctl launch iPhone\\ 13\\ Pro bundleId', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Release-iphonesimulator',
stdio: 'ignore'
});
});
it('launches the app with custom binaryPath', async () => {
await xcrun.xcrunLaunch({
device: 'iPhone 13 Pro',
configuration: 'Release',
binaryPath: '/some/path/to/my/app.app'
});
expect(execMock).toHaveBeenCalledTimes(2);
expect(execMock).toHaveBeenNthCalledWith(1, "./PlistBuddy -c 'Print CFBundleIdentifier' /some/path/to/my/app.app/Info.plist", {
cwd: '/usr/libexec',
shell: true
});
expect(execMock).toHaveBeenNthCalledWith(2, 'xcrun simctl launch iPhone\\ 13\\ Pro bundleId', {
cwd: '/some/path/to/my',
stdio: 'ignore'
});
});
});
describe('xcrunUi', () => {
it('sets the simulator UI with default config', async () => {
await xcrun.xcrunUi({
device: 'iPhone 13 Pro'
});
expect(execMock).toHaveBeenCalledTimes(2);
expect(execMock).toHaveBeenNthCalledWith(1, 'xcrun simctl ui iPhone\\ 13\\ Pro appearance dark', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator',
stdio: 'ignore'
});
expect(execMock).toHaveBeenNthCalledWith(2, 'xcrun simctl ui iPhone\\ 13\\ Pro appearance light', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator',
stdio: 'ignore'
});
});
it('sets the simulator UI with debug', async () => {
await xcrun.xcrunUi({
device: 'iPhone 13 Pro',
debug: true
});
expect(execMock).toHaveBeenCalledTimes(2);
expect(execMock).toHaveBeenNthCalledWith(1, 'xcrun simctl ui iPhone\\ 13\\ Pro appearance dark', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator',
stdio: 'inherit'
});
expect(execMock).toHaveBeenNthCalledWith(2, 'xcrun simctl ui iPhone\\ 13\\ Pro appearance light', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Debug-iphonesimulator',
stdio: 'inherit'
});
});
it('sets the simulator UI with custom configuration', async () => {
await xcrun.xcrunUi({
device: 'iPhone 13 Pro',
configuration: 'Release'
});
expect(execMock).toHaveBeenCalledTimes(2);
expect(execMock).toHaveBeenNthCalledWith(1, 'xcrun simctl ui iPhone\\ 13\\ Pro appearance dark', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Release-iphonesimulator',
stdio: 'ignore'
});
expect(execMock).toHaveBeenNthCalledWith(2, 'xcrun simctl ui iPhone\\ 13\\ Pro appearance light', {
cwd: '/Users/johndoe/Projects/my-project/ios/build/Build/Products/Release-iphonesimulator',
stdio: 'ignore'
});
});
it('sets the simulator UI with custom binaryPath', async () => {
await xcrun.xcrunUi({
device: 'iPhone 13 Pro',
configuration: 'Release',
binaryPath: '/some/path/to/my/app.app'
});
expect(execMock).toHaveBeenCalledTimes(2);
expect(execMock).toHaveBeenNthCalledWith(1, 'xcrun simctl ui iPhone\\ 13\\ Pro appearance dark', {
cwd: '/some/path/to/my',
stdio: 'ignore'
});
expect(execMock).toHaveBeenNthCalledWith(2, 'xcrun simctl ui iPhone\\ 13\\ Pro appearance light', {
cwd: '/some/path/to/my',
stdio: 'ignore'
});
});
});
});
//# sourceMappingURL=xcrun.test.js.map