|
| 1 | +import {type CliCommandArguments, type CliCommandContext} from '@sanity/cli' |
| 2 | +import {beforeEach, describe, expect, it, type Mock, vi} from 'vitest' |
| 3 | + |
| 4 | +import {type UserApplication} from '../../deploy/helpers' |
| 5 | +import * as _helpers from '../../deploy/helpers' |
| 6 | +import undeployCoreAppAction from '../undeployAction' |
| 7 | + |
| 8 | +// Mock dependencies |
| 9 | +vi.mock('../../deploy/helpers') |
| 10 | + |
| 11 | +const helpers = vi.mocked(_helpers) |
| 12 | +type SpinnerInstance = { |
| 13 | + start: Mock<() => SpinnerInstance> |
| 14 | + succeed: Mock<() => SpinnerInstance> |
| 15 | + fail: Mock<() => SpinnerInstance> |
| 16 | +} |
| 17 | + |
| 18 | +describe('undeployCoreAppAction', () => { |
| 19 | + let mockContext: CliCommandContext |
| 20 | + |
| 21 | + const mockApplication: UserApplication = { |
| 22 | + id: 'app-id', |
| 23 | + organizationId: 'org-id', |
| 24 | + appHost: 'app-host', |
| 25 | + createdAt: new Date().toISOString(), |
| 26 | + updatedAt: new Date().toISOString(), |
| 27 | + urlType: 'internal', |
| 28 | + projectId: null, |
| 29 | + title: null, |
| 30 | + type: 'coreApp', |
| 31 | + } |
| 32 | + |
| 33 | + let spinnerInstance: SpinnerInstance |
| 34 | + |
| 35 | + beforeEach(() => { |
| 36 | + vi.clearAllMocks() |
| 37 | + |
| 38 | + spinnerInstance = { |
| 39 | + start: vi.fn(() => spinnerInstance), |
| 40 | + succeed: vi.fn(() => spinnerInstance), |
| 41 | + fail: vi.fn(() => spinnerInstance), |
| 42 | + } |
| 43 | + |
| 44 | + mockContext = { |
| 45 | + apiClient: vi.fn().mockReturnValue({ |
| 46 | + withConfig: vi.fn().mockReturnThis(), |
| 47 | + }), |
| 48 | + chalk: {yellow: vi.fn((str) => str), red: vi.fn((str) => str)}, |
| 49 | + output: { |
| 50 | + print: vi.fn(), |
| 51 | + spinner: vi.fn().mockReturnValue(spinnerInstance), |
| 52 | + }, |
| 53 | + prompt: {single: vi.fn()}, |
| 54 | + cliConfig: {}, |
| 55 | + } as unknown as CliCommandContext |
| 56 | + }) |
| 57 | + |
| 58 | + it('does nothing if there is no user application', async () => { |
| 59 | + helpers.getUserApplication.mockResolvedValueOnce(null) |
| 60 | + |
| 61 | + await undeployCoreAppAction({} as CliCommandArguments<Record<string, unknown>>, mockContext) |
| 62 | + |
| 63 | + expect(mockContext.output.print).toHaveBeenCalledWith( |
| 64 | + 'Your project has not been assigned a Core application ID', |
| 65 | + ) |
| 66 | + expect(mockContext.output.print).toHaveBeenCalledWith( |
| 67 | + 'or you do not have __experimental_coreAppConfiguration set in sanity.cli.js or sanity.cli.ts.', |
| 68 | + ) |
| 69 | + expect(mockContext.output.print).toHaveBeenCalledWith('Nothing to undeploy.') |
| 70 | + }) |
| 71 | + |
| 72 | + it('prompts the user for confirmation and undeploys if confirmed', async () => { |
| 73 | + helpers.getUserApplication.mockResolvedValueOnce(mockApplication) |
| 74 | + helpers.deleteUserApplication.mockResolvedValueOnce(undefined) |
| 75 | + ;(mockContext.prompt.single as Mock<typeof mockContext.prompt.single>).mockResolvedValueOnce( |
| 76 | + true, |
| 77 | + ) // User confirms |
| 78 | + |
| 79 | + await undeployCoreAppAction({} as CliCommandArguments<Record<string, unknown>>, mockContext) |
| 80 | + |
| 81 | + expect(mockContext.prompt.single).toHaveBeenCalledWith({ |
| 82 | + type: 'confirm', |
| 83 | + default: false, |
| 84 | + message: expect.stringContaining('undeploy'), |
| 85 | + }) |
| 86 | + expect(helpers.deleteUserApplication).toHaveBeenCalledWith({ |
| 87 | + client: expect.anything(), |
| 88 | + applicationId: 'app-id', |
| 89 | + appType: 'coreApp', |
| 90 | + }) |
| 91 | + expect(mockContext.output.print).toHaveBeenCalledWith( |
| 92 | + expect.stringContaining('Application undeploy scheduled.'), |
| 93 | + ) |
| 94 | + }) |
| 95 | + |
| 96 | + it('does not undeploy if the user cancels the prompt', async () => { |
| 97 | + helpers.getUserApplication.mockResolvedValueOnce(mockApplication) |
| 98 | + ;(mockContext.prompt.single as Mock<typeof mockContext.prompt.single>).mockResolvedValueOnce( |
| 99 | + false, |
| 100 | + ) // User cancels |
| 101 | + |
| 102 | + await undeployCoreAppAction({} as CliCommandArguments<Record<string, unknown>>, mockContext) |
| 103 | + |
| 104 | + expect(mockContext.prompt.single).toHaveBeenCalledWith({ |
| 105 | + type: 'confirm', |
| 106 | + default: false, |
| 107 | + message: expect.stringContaining('undeploy'), |
| 108 | + }) |
| 109 | + expect(helpers.deleteUserApplication).not.toHaveBeenCalled() |
| 110 | + }) |
| 111 | + |
| 112 | + it('handles errors during the undeploy process', async () => { |
| 113 | + const errorMessage = 'Example error' |
| 114 | + helpers.getUserApplication.mockResolvedValueOnce(mockApplication) |
| 115 | + helpers.deleteUserApplication.mockRejectedValueOnce(new Error(errorMessage)) |
| 116 | + ;(mockContext.prompt.single as Mock<typeof mockContext.prompt.single>).mockResolvedValueOnce( |
| 117 | + true, |
| 118 | + ) // User confirms |
| 119 | + |
| 120 | + await expect( |
| 121 | + undeployCoreAppAction({} as CliCommandArguments<Record<string, unknown>>, mockContext), |
| 122 | + ).rejects.toThrow(errorMessage) |
| 123 | + |
| 124 | + expect(mockContext.output.spinner('').fail).toHaveBeenCalled() |
| 125 | + }) |
| 126 | +}) |
0 commit comments