// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance // with the License. A copy of the License is located at // // http://aws.amazon.com/apache2.0/ // // or in the "LICENSE.txt" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES // OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and // limitations under the License. import {render} from '@testing-library/react' import {I18nextProvider} from 'react-i18next' import i18n from 'i18next' import {initReactI18next} from 'react-i18next' import mock from 'jest-mock-extended/lib/Mock' import {Store} from '@reduxjs/toolkit' import {Provider} from 'react-redux' jest.mock('../../store', () => { const originalModule = jest.requireActual('../../store') return { __esModule: true, // Use it when dealing with esModules ...originalModule, setState: jest.fn(), } }) jest.mock('../../feature-flags/useFeatureFlag', () => ({ useFeatureFlag: () => true, })) import {setState} from '../../store' import {FsxLustreSettings} from './Storage' i18n.use(initReactI18next).init({ resources: {}, lng: 'en', }) const mockStore = mock() const MockProviders = (props: any) => ( {props.children} ) describe('Given a Lustre storage component', () => { beforeEach(() => { ;(setState as jest.Mock).mockClear() }) describe("when it's initialized", () => { describe('with a Persistent_1 type', () => { beforeEach(() => { mockStore.getState.mockReturnValue({ app: { wizard: { config: { SharedStorage: [ { FsxLustreSettings: { DeploymentType: 'PERSISTENT_1', }, }, ], }, }, }, }) }) it('should set the correct PerUnitStorageThroughPut value in the config', () => { render( , ) expect(setState).toHaveBeenCalledWith( [ 'app', 'wizard', 'config', 'SharedStorage', 0, 'FsxLustreSettings', 'PerUnitStorageThroughput', ], 200, ) }) }) describe('with a Persistent_2 type', () => { beforeEach(() => { mockStore.getState.mockReturnValue({ app: { wizard: { config: { SharedStorage: [ { FsxLustreSettings: { DeploymentType: 'PERSISTENT_2', }, }, ], }, }, }, }) }) it('should set the correct PerUnitStorageThroughPut value in the config', () => { render( , ) expect(setState).toHaveBeenCalledWith( [ 'app', 'wizard', 'config', 'SharedStorage', 0, 'FsxLustreSettings', 'PerUnitStorageThroughput', ], 125, ) }) }) describe('when the user wants to link an already created Lustre', () => { beforeEach(() => { mockStore.getState.mockReturnValue({ app: { wizard: { storage: { ui: [ { useExisting: true, }, ], }, config: { SharedStorage: [ { FsxLustreSettings: { DeploymentType: 'PERSISTENT_2', }, }, ], }, }, }, }) }) it('should not set the PerUnitStorageThroughPut in the config', () => { render( , ) expect(setState).not.toHaveBeenCalledWith( [ 'app', 'wizard', 'config', 'SharedStorage', 0, 'FsxLustreSettings', 'PerUnitStorageThroughput', ], expect.any(Number), ) }) }) }) })