123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- import {MembersFixture} from 'sentry-fixture/members';
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {ProjectFixture} from 'sentry-fixture/project';
- import {TeamFixture} from 'sentry-fixture/team';
- import {fireEvent, render, screen, userEvent} from 'sentry-test/reactTestingLibrary';
- import {textWithMarkupMatcher} from 'sentry-test/utils';
- import {navigateTo} from 'sentry/actionCreators/navigation';
- import FormSearchStore from 'sentry/stores/formSearchStore';
- import SettingsSearch from 'sentry/views/settings/components/settingsSearch';
- jest.mock('sentry/actionCreators/formSearch');
- jest.mock('sentry/actionCreators/navigation');
- describe('SettingsSearch', function () {
- let orgsMock: jest.Mock;
- beforeEach(function () {
- FormSearchStore.loadSearchMap([]);
- MockApiClient.clearMockResponses();
- orgsMock = MockApiClient.addMockResponse({
- url: '/organizations/',
- body: [OrganizationFixture({slug: 'billy-org', name: 'billy org'})],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: [ProjectFixture({slug: 'foo-project'})],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/teams/',
- body: [TeamFixture({slug: 'foo-team'})],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/members/',
- body: MembersFixture(),
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/plugins/?plugins=_all',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/plugins/configs/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/config/integrations/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/sentry-apps/?status=published',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/doc-integrations/',
- body: [],
- });
- });
- it('renders', function () {
- render(<SettingsSearch />);
- // renders input
- expect(screen.getByPlaceholderText('Search')).toBeInTheDocument();
- });
- it('can focus when hotkey is pressed', function () {
- render(<SettingsSearch />);
- fireEvent.keyDown(document.body, {key: 'Slash', code: 'Slash', keyCode: 191});
- expect(screen.getByPlaceholderText('Search')).toHaveFocus();
- });
- it('can search', async function () {
- render(<SettingsSearch />);
- await userEvent.type(screen.getByPlaceholderText('Search'), 'bil');
- expect(orgsMock.mock.calls).toEqual([
- [
- '/organizations/',
- expect.objectContaining({
- // This nested 'query' is correct
- query: {query: 'b'},
- }),
- ],
- [
- '/organizations/',
- expect.objectContaining({
- // This nested 'query' is correct
- query: {query: 'bi'},
- }),
- ],
- ]);
- await userEvent.click(
- await screen.findByText(textWithMarkupMatcher('billy-org Dashboard'))
- );
- expect(navigateTo).toHaveBeenCalledWith('/billy-org/', expect.anything(), undefined);
- });
- });
|