-
Notifications
You must be signed in to change notification settings - Fork 919
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add unit tests for inspect page url * Changeset file for PR #8834 created/updated * optimize the code * optimize the code * optimize the code --------- (cherry picked from commit 76cf823) Signed-off-by: yubonluo <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: opensearch-changeset-bot[bot] <154024398+opensearch-changeset-bot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
520279b
commit 94013bf
Showing
5 changed files
with
287 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
refactor: | ||
- [Workspace] Add unit tests for inspect page url ([#8834](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/8834)) |
163 changes: 163 additions & 0 deletions
163
...attern_management/public/components/edit_index_pattern/index_header/index_header.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import React from 'react'; | ||
import { render } from '@testing-library/react'; | ||
import { createOpenSearchDashboardsReactContext } from '../../../../../opensearch_dashboards_react/public'; | ||
import { coreMock, workspacesServiceMock } from '../../../../../../core/public/mocks'; | ||
import { BehaviorSubject } from 'rxjs'; | ||
import { WorkspaceObject } from 'opensearch-dashboards/public'; | ||
import { IntlProvider } from 'react-intl'; | ||
import { IndexHeader } from './index_header'; | ||
|
||
describe('IndexHeader at new home page', () => { | ||
const indexPattern = { id: 'default-index', title: 'Test Index Pattern', fields: [] }; | ||
const mockCoreStart = coreMock.createStart(); | ||
const workspaceObject = { | ||
id: 'foo_id', | ||
name: 'foo', | ||
}; | ||
const getIndexHeader = (props: any) => { | ||
const mockHeaderControl = | ||
(props?.header as Function) || | ||
(() => { | ||
return null; | ||
}); | ||
|
||
const setDefault = jest.fn(); | ||
const refreshFields = jest.fn(); | ||
const deleteIndexPatternClick = jest.fn(); | ||
const { Provider } = createOpenSearchDashboardsReactContext({ | ||
...mockCoreStart, | ||
...{ | ||
application: { | ||
...mockCoreStart.application, | ||
capabilities: { | ||
...mockCoreStart.application.capabilities, | ||
workspaces: { enabled: props.workspaceEnabled }, | ||
}, | ||
}, | ||
uiSettings: { ...mockCoreStart.uiSettings, get: jest.fn().mockReturnValue(true) }, | ||
workspaces: { | ||
...workspacesServiceMock.createStartContract(), | ||
currentWorkspace$: new BehaviorSubject<WorkspaceObject | null>(props?.workspace), | ||
}, | ||
navigationUI: { | ||
HeaderControl: mockHeaderControl, | ||
}, | ||
}, | ||
}); | ||
|
||
return ( | ||
<IntlProvider locale="en"> | ||
<Provider> | ||
<IndexHeader | ||
setDefault={setDefault} | ||
refreshFields={refreshFields} | ||
deleteIndexPatternClick={deleteIndexPatternClick} | ||
indexPattern={indexPattern} | ||
defaultIndex={props?.defaultIndex} | ||
/> | ||
</Provider> | ||
</IntlProvider> | ||
); | ||
}; | ||
|
||
beforeEach(() => { | ||
jest.clearAllMocks(); | ||
}); | ||
|
||
it('renders the set default button when index is not default and workspace is disabled', () => { | ||
const mockHeaderControl = ({ controls }) => { | ||
return controls?.[1]?.label ?? null; | ||
}; | ||
const { getByText } = render( | ||
getIndexHeader({ | ||
header: mockHeaderControl, | ||
defaultIndex: 'no-default-index', | ||
workspaceEnabled: false, | ||
}) | ||
); | ||
|
||
expect(getByText('Set as default index')).toBeInTheDocument(); | ||
}); | ||
|
||
it('does not render the set default button when index is default and workspace is disabled', () => { | ||
const mockHeaderControl = ({ controls }) => { | ||
return controls?.[1]?.label ?? null; | ||
}; | ||
const { queryByText } = render( | ||
getIndexHeader({ | ||
header: mockHeaderControl, | ||
defaultIndex: 'default-index', | ||
workspaceEnabled: false, | ||
}) | ||
); | ||
|
||
expect(queryByText('Set as default index')).toBeNull(); | ||
}); | ||
|
||
it('renders the set default button when index is not default and user is in workspace', () => { | ||
const mockHeaderControl = ({ controls }) => { | ||
return controls?.[1]?.label ?? null; | ||
}; | ||
const { getByText } = render( | ||
getIndexHeader({ | ||
header: mockHeaderControl, | ||
defaultIndex: 'no-default-index', | ||
workspace: workspaceObject, | ||
workspaceEnabled: true, | ||
}) | ||
); | ||
|
||
expect(getByText('Set as default index')).toBeInTheDocument(); | ||
}); | ||
|
||
it('does not render the set default button when index is default and user is in workspace', () => { | ||
const mockHeaderControl = ({ controls }) => { | ||
return controls?.[1]?.label ?? null; | ||
}; | ||
const { queryByText } = render( | ||
getIndexHeader({ | ||
header: mockHeaderControl, | ||
defaultIndex: 'default-index', | ||
workspace: workspaceObject, | ||
workspaceEnabled: true, | ||
}) | ||
); | ||
|
||
expect(queryByText('Set as default index')).toBeNull(); | ||
}); | ||
|
||
it('does not render the set default button when index is not default and user is not in workspace', () => { | ||
const mockHeaderControl = ({ controls }) => { | ||
return controls?.[1]?.label ?? null; | ||
}; | ||
const { queryByText } = render( | ||
getIndexHeader({ | ||
header: mockHeaderControl, | ||
defaultIndex: 'no-default-index', | ||
workspaceEnabled: true, | ||
}) | ||
); | ||
|
||
expect(queryByText('Set as default index')).toBeNull(); | ||
}); | ||
|
||
it('does not render the set default button when index is default and user is not in workspace', () => { | ||
const mockHeaderControl = ({ controls }) => { | ||
return controls?.[1]?.label ?? null; | ||
}; | ||
const { queryByText } = render( | ||
getIndexHeader({ | ||
header: mockHeaderControl, | ||
defaultIndex: 'default-index', | ||
workspaceEnabled: true, | ||
}) | ||
); | ||
|
||
expect(queryByText('Set as default index')).toBeNull(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters