123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- import React from 'react';
- import {mountWithTheme} from 'sentry-test/enzyme';
- import OrganizationUserFeedback from 'app/views/userFeedback';
- describe('OrganizationUserFeedback', function() {
- let organization, routerContext;
- const pageLinks =
- '<https://sentry.io/api/0/organizations/sentry/user-feedback/?statsPeriod=14d&cursor=0:0:1>; rel="previous"; results="false"; cursor="0:0:1", ' +
- '<https://sentry.io/api/0/organizations/sentry/user-feedback/?statsPeriod=14d&cursor=0:100:0>; rel="next"; results="true"; cursor="0:100:0"';
- beforeEach(function() {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/user-feedback/',
- body: [TestStubs.UserFeedback()],
- headers: {Link: pageLinks},
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/environments/',
- body: TestStubs.Environments(),
- });
- organization = TestStubs.Organization();
- routerContext = TestStubs.routerContext([
- {
- organization,
- router: {
- ...TestStubs.router(),
- params: {
- orgId: organization.slug,
- },
- },
- },
- ]);
- });
- it('renders', function() {
- const params = {
- organization: TestStubs.Organization({
- projects: [TestStubs.Project({isMember: true})],
- }),
- location: {query: {}, search: ''},
- params: {
- orgId: organization.slug,
- },
- };
- const wrapper = mountWithTheme(
- <OrganizationUserFeedback {...params} />,
- routerContext
- );
- expect(wrapper.find('CompactIssue')).toHaveLength(1);
- });
- it('renders no project message', function() {
- const params = {
- organization: TestStubs.Organization({
- projects: [],
- }),
- location: {query: {}, search: ''},
- params: {
- orgId: organization.slug,
- },
- };
- const wrapper = mountWithTheme(
- <OrganizationUserFeedback {...params} />,
- routerContext
- );
- expect(wrapper.find('NoProjectMessage').exists()).toBe(true);
- expect(wrapper.find('UserFeedbackEmpty').exists()).toBe(false);
- });
- it('renders empty state', function() {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/user-feedback/',
- body: [],
- });
- const params = {
- organization: TestStubs.Organization({
- projects: [TestStubs.Project({isMember: true})],
- }),
- location: {query: {}, search: ''},
- params: {
- orgId: organization.slug,
- },
- };
- const wrapper = mountWithTheme(
- <OrganizationUserFeedback {...params} />,
- routerContext
- );
- expect(wrapper.find('UserFeedbackEmpty').prop('projectIds')).toEqual([]);
- });
- it('renders empty state with project query', function() {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/user-feedback/',
- body: [],
- });
- const params = {
- organization: TestStubs.Organization({
- projects: [TestStubs.Project({isMember: true})],
- }),
- location: {query: {project: '112'}, search: ''},
- params: {
- orgId: organization.slug,
- },
- };
- const wrapper = mountWithTheme(
- <OrganizationUserFeedback {...params} />,
- routerContext
- );
- expect(wrapper.find('UserFeedbackEmpty').prop('projectIds')).toEqual(['112']);
- });
- it('renders empty state with multi project query', function() {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/user-feedback/',
- body: [],
- });
- const params = {
- organization: TestStubs.Organization({
- projects: [TestStubs.Project({isMember: true})],
- }),
- location: {query: {project: ['112', '113']}, search: ''},
- params: {
- orgId: organization.slug,
- },
- };
- const wrapper = mountWithTheme(
- <OrganizationUserFeedback {...params} />,
- routerContext
- );
- expect(wrapper.find('UserFeedbackEmpty').prop('projectIds')).toEqual(['112', '113']);
- });
- });
|