Submit
Path:
~
/
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
explore
/
spec
/
helper
/
File Content:
assert.ts
import { waitFor } from '@testing-library/react'; import { getAllByRoleInQueryHistoryTab, withinExplore } from './setup'; export const assertQueryHistoryExists = async (query: string, exploreId = 'left') => { const selector = withinExplore(exploreId); expect(await selector.findByText('1 queries')).toBeInTheDocument(); const queryItem = selector.getByLabelText('Query text'); expect(queryItem).toHaveTextContent(query); }; export const assertQueryHistoryContains = async (query: string, exploreId = 'left') => { const selector = withinExplore(exploreId); await waitFor(() => { const containsQuery = selector.getAllByLabelText('Query text').map((e) => (e.textContent || '').includes(query)); expect(containsQuery).toContain(true); }); }; export const assertQueryHistory = async (expectedQueryTexts: string[], exploreId = 'left') => { const selector = withinExplore(exploreId); await waitFor(() => { expect(selector.getByText(new RegExp(`${expectedQueryTexts.length} queries`))).toBeInTheDocument(); const queryTexts = selector.getAllByLabelText('Query text'); expectedQueryTexts.forEach((expectedQueryText, queryIndex) => { expect(queryTexts[queryIndex]).toHaveTextContent(expectedQueryText); }); }); }; export const assertQueryHistoryIsEmpty = async (exploreId = 'left') => { const selector = withinExplore(exploreId); const queryTexts = selector.queryAllByLabelText('Query text'); expect(await queryTexts).toHaveLength(0); }; export const assertQueryHistoryComment = async (expectedQueryComments: string[], exploreId = 'left') => { const selector = withinExplore(exploreId); await waitFor(() => { expect(selector.getByText(new RegExp(`${expectedQueryComments.length} queries`))).toBeInTheDocument(); const queryComments = selector.getAllByLabelText('Query comment'); expectedQueryComments.forEach((expectedQueryText, queryIndex) => { expect(queryComments[queryIndex]).toHaveTextContent(expectedQueryText); }); }); }; export const assertQueryHistoryIsStarred = async (expectedStars: boolean[], exploreId = 'left') => { const starButtons = getAllByRoleInQueryHistoryTab(exploreId, 'button', /Star query|Unstar query/); await waitFor(() => expectedStars.forEach((starred, queryIndex) => { expect(starButtons[queryIndex]).toHaveAccessibleName(starred ? 'Unstar query' : 'Star query'); }) ); }; export const assertQueryHistoryTabIsSelected = ( tabName: 'Query history' | 'Starred' | 'Settings', exploreId = 'left' ) => { expect(withinExplore(exploreId).getByRole('tab', { name: `Tab ${tabName}`, selected: true })).toBeInTheDocument(); }; export const assertDataSourceFilterVisibility = (visible: boolean, exploreId = 'left') => { const filterInput = withinExplore(exploreId).queryByLabelText('Filter queries for data sources(s)'); if (visible) { expect(filterInput).toBeInTheDocument(); } else { expect(filterInput).not.toBeInTheDocument(); } }; export const assertQueryHistoryElementsShown = (shown: number, total: number, exploreId = 'left') => { expect(withinExplore(exploreId).queryByText(`Showing ${shown} of ${total}`)).toBeInTheDocument(); }; export const assertLoadMoreQueryHistoryNotVisible = (exploreId = 'left') => { expect(withinExplore(exploreId).queryByRole('button', { name: 'Load more' })).not.toBeInTheDocument(); };
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
assert.ts
3377 bytes
0644
interactions.ts
3488 bytes
0644
query.ts
638 bytes
0644
setup.tsx
9057 bytes
0644
N4ST4R_ID | Naxtarrr