|
| 1 | +/* Copyright Contributors to the Open Cluster Management project */ |
| 2 | +import { cleanup, render, screen, waitFor } from '@testing-library/react' |
| 3 | +import userEvent from '@testing-library/user-event' |
| 4 | +import { RecoilRoot } from 'recoil' |
| 5 | +import { fetchRetry } from '../../../resources/utils/resource-request' |
| 6 | +import { VMActionModal } from './VMActionModal' |
| 7 | + |
| 8 | +jest.mock('../../../resources/utils/resource-request', () => ({ |
| 9 | + getBackendUrl: jest.fn(() => ''), |
| 10 | + fetchRetry: jest.fn(({ url }) => { |
| 11 | + if (url === '/apis/subresources.kubevirt.io/v1/namespaces/testVMNamespace/virtualmachines/testVM/noop') { |
| 12 | + return Promise.reject(new Error()) |
| 13 | + } else if ( |
| 14 | + url === '/apis/subresources.kubevirt.io/v1/namespaces/testVMNamespace/virtualmachines/testVM/unauthorized' |
| 15 | + ) { |
| 16 | + return Promise.reject(new Error('Error: Unauthorized')) |
| 17 | + } |
| 18 | + return Promise.resolve() |
| 19 | + }), |
| 20 | +})) |
| 21 | + |
| 22 | +describe('VMActionModal', () => { |
| 23 | + afterEach(cleanup) |
| 24 | + test('renders VMActionModal correctly and successfully calls start action on hub vm', async () => { |
| 25 | + const abortController = new AbortController() |
| 26 | + const { getByTestId } = render( |
| 27 | + <RecoilRoot> |
| 28 | + <VMActionModal |
| 29 | + open={true} |
| 30 | + close={() => {}} |
| 31 | + action={'start'} |
| 32 | + method={'PUT'} |
| 33 | + item={{ |
| 34 | + name: 'testVM', |
| 35 | + namespace: 'testVMNamespace', |
| 36 | + cluster: 'test-cluster', |
| 37 | + _hubClusterResource: 'true', |
| 38 | + }} |
| 39 | + /> |
| 40 | + </RecoilRoot> |
| 41 | + ) |
| 42 | + await waitFor(() => expect(screen.queryByText('start VirtualMachine?')).toBeInTheDocument()) |
| 43 | + await waitFor(() => |
| 44 | + expect( |
| 45 | + screen.queryByText('Are you sure you want to start testVM in namespace testVMNamespace?') |
| 46 | + ).toBeInTheDocument() |
| 47 | + ) |
| 48 | + |
| 49 | + // verify click launch button |
| 50 | + const confirmButton = getByTestId('vm-modal-confirm') |
| 51 | + expect(confirmButton).toBeTruthy() |
| 52 | + userEvent.click(confirmButton) |
| 53 | + |
| 54 | + expect(fetchRetry).toHaveBeenCalledWith({ |
| 55 | + data: { |
| 56 | + body: {}, |
| 57 | + managedCluster: 'test-cluster', |
| 58 | + vmName: 'testVM', |
| 59 | + vmNamespace: 'testVMNamespace', |
| 60 | + }, |
| 61 | + disableRedirectUnauthorizedLogin: true, |
| 62 | + headers: { |
| 63 | + Accept: '*/*', |
| 64 | + }, |
| 65 | + method: 'PUT', |
| 66 | + retries: 0, |
| 67 | + signal: abortController.signal, |
| 68 | + url: '/apis/subresources.kubevirt.io/v1/namespaces/testVMNamespace/virtualmachines/testVM/start', |
| 69 | + }) |
| 70 | + }) |
| 71 | + |
| 72 | + test('renders VMActionModal correctly and successfully calls start action on managed cluster vm', async () => { |
| 73 | + const abortController = new AbortController() |
| 74 | + const { getByTestId } = render( |
| 75 | + <RecoilRoot> |
| 76 | + <VMActionModal |
| 77 | + open={true} |
| 78 | + close={() => {}} |
| 79 | + action={'start'} |
| 80 | + method={'PUT'} |
| 81 | + item={{ |
| 82 | + name: 'testVM', |
| 83 | + namespace: 'testVMNamespace', |
| 84 | + cluster: 'test-cluster', |
| 85 | + }} |
| 86 | + /> |
| 87 | + </RecoilRoot> |
| 88 | + ) |
| 89 | + await waitFor(() => expect(screen.queryByText('start VirtualMachine?')).toBeInTheDocument()) |
| 90 | + await waitFor(() => |
| 91 | + expect( |
| 92 | + screen.queryByText('Are you sure you want to start testVM in namespace testVMNamespace?') |
| 93 | + ).toBeInTheDocument() |
| 94 | + ) |
| 95 | + |
| 96 | + // verify click launch button |
| 97 | + const confirmButton = getByTestId('vm-modal-confirm') |
| 98 | + expect(confirmButton).toBeTruthy() |
| 99 | + userEvent.click(confirmButton) |
| 100 | + |
| 101 | + expect(fetchRetry).toHaveBeenCalledWith({ |
| 102 | + data: { |
| 103 | + body: {}, |
| 104 | + managedCluster: 'test-cluster', |
| 105 | + vmName: 'testVM', |
| 106 | + vmNamespace: 'testVMNamespace', |
| 107 | + }, |
| 108 | + disableRedirectUnauthorizedLogin: true, |
| 109 | + headers: { |
| 110 | + Accept: '*/*', |
| 111 | + }, |
| 112 | + method: 'PUT', |
| 113 | + retries: 0, |
| 114 | + signal: abortController.signal, |
| 115 | + url: '/virtualmachines/start', |
| 116 | + }) |
| 117 | + }) |
| 118 | + |
| 119 | + test('renders VMActionModal correctly and returns action error', async () => { |
| 120 | + const { getByTestId } = render( |
| 121 | + <RecoilRoot> |
| 122 | + <VMActionModal |
| 123 | + open={true} |
| 124 | + close={() => {}} |
| 125 | + action={'noop'} |
| 126 | + method={'PUT'} |
| 127 | + item={{ |
| 128 | + name: 'testVM', |
| 129 | + namespace: 'testVMNamespace', |
| 130 | + cluster: 'test-cluster', |
| 131 | + _hubClusterResource: 'true', |
| 132 | + }} |
| 133 | + /> |
| 134 | + </RecoilRoot> |
| 135 | + ) |
| 136 | + await waitFor(() => expect(screen.queryByText('noop VirtualMachine?')).toBeInTheDocument()) |
| 137 | + await waitFor(() => |
| 138 | + expect( |
| 139 | + screen.queryByText('Are you sure you want to noop testVM in namespace testVMNamespace?') |
| 140 | + ).toBeInTheDocument() |
| 141 | + ) |
| 142 | + |
| 143 | + // verify click launch button |
| 144 | + const confirmButton = getByTestId('vm-modal-confirm') |
| 145 | + expect(confirmButton).toBeTruthy() |
| 146 | + userEvent.click(confirmButton) |
| 147 | + |
| 148 | + expect(fetchRetry).toThrow() |
| 149 | + }) |
| 150 | + |
| 151 | + test('renders VMActionModal correctly and returns unauthorized error', async () => { |
| 152 | + const { getByTestId } = render( |
| 153 | + <RecoilRoot> |
| 154 | + <VMActionModal |
| 155 | + open={true} |
| 156 | + close={() => {}} |
| 157 | + action={'unauthorized'} |
| 158 | + method={'PUT'} |
| 159 | + item={{ |
| 160 | + name: 'testVM', |
| 161 | + namespace: 'testVMNamespace', |
| 162 | + cluster: 'test-cluster', |
| 163 | + _hubClusterResource: 'true', |
| 164 | + }} |
| 165 | + /> |
| 166 | + </RecoilRoot> |
| 167 | + ) |
| 168 | + await waitFor(() => expect(screen.queryByText('unauthorized VirtualMachine?')).toBeInTheDocument()) |
| 169 | + await waitFor(() => |
| 170 | + expect( |
| 171 | + screen.queryByText('Are you sure you want to unauthorized testVM in namespace testVMNamespace?') |
| 172 | + ).toBeInTheDocument() |
| 173 | + ) |
| 174 | + |
| 175 | + // verify click launch button |
| 176 | + const confirmButton = getByTestId('vm-modal-confirm') |
| 177 | + expect(confirmButton).toBeTruthy() |
| 178 | + userEvent.click(confirmButton) |
| 179 | + |
| 180 | + expect(fetchRetry).toThrow() |
| 181 | + }) |
| 182 | +}) |
0 commit comments