123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {ProjectFixture} from 'sentry-fixture/project';
- import {RouteComponentPropsFixture} from 'sentry-fixture/routeComponentPropsFixture';
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import selectEvent from 'sentry-test/selectEvent';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import {DiscoverLanding} from 'sentry/views/discover/landing';
- describe('Discover > Landing', function () {
- const eventTitle = 'Oh no something bad';
- const features = ['discover-basic', 'discover-query'];
- beforeEach(function () {
- ProjectsStore.loadInitialData([ProjectFixture()]);
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/eventsv2/',
- body: {
- meta: {
- id: 'string',
- title: 'string',
- 'project.name': 'string',
- timestamp: 'date',
- 'user.id': 'string',
- },
- data: [
- {
- id: 'deadbeef',
- 'user.id': 'alberto leal',
- title: eventTitle,
- 'project.name': 'project-slug',
- timestamp: '2019-05-23T22:12:48+00:00',
- },
- ],
- },
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/project-slug:deadbeef/',
- method: 'GET',
- body: {
- id: '1234',
- size: 1200,
- eventID: 'deadbeef',
- title: 'Oh no something bad',
- message: 'It was not good',
- dateCreated: '2019-05-23T22:12:48+00:00',
- entries: [
- {
- type: 'message',
- message: 'bad stuff',
- data: {},
- },
- ],
- tags: [{key: 'browser', value: 'Firefox'}],
- },
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events-stats/',
- method: 'GET',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/discover/saved/',
- method: 'GET',
- body: [],
- });
- });
- it('denies access on missing feature', function () {
- render(
- <DiscoverLanding
- organization={OrganizationFixture()}
- {...RouteComponentPropsFixture()}
- />
- );
- expect(screen.getByText("You don't have access to this feature")).toBeInTheDocument();
- });
- it('has the right sorts', async function () {
- const org = OrganizationFixture({features});
- render(<DiscoverLanding organization={org} {...RouteComponentPropsFixture()} />);
- const expectedSorts = [
- 'My Queries',
- 'Recently Edited',
- 'Query Name (A-Z)',
- 'Date Created (Newest)',
- 'Date Created (Oldest)',
- 'Most Outdated',
- 'Most Popular',
- 'Recently Viewed',
- ];
- // Open menu
- await selectEvent.openMenu(screen.getByRole('button', {name: 'Sort By My Queries'}));
- // Check that all sorts are there
- expectedSorts.forEach(sort =>
- expect(screen.getAllByText(sort)[0]).toBeInTheDocument()
- );
- });
- it('links back to the homepage', async () => {
- const org = OrganizationFixture({features});
- render(<DiscoverLanding organization={org} {...RouteComponentPropsFixture()} />);
- expect(await screen.findByText('Discover')).toHaveAttribute(
- 'href',
- '/organizations/org-slug/discover/homepage/'
- );
- });
- });
|