123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import {Project} from 'sentry/types';
- import {ProjectInstallPlatform} from 'sentry/views/projectInstall/platform';
- function mockProjectApiResponses(projects: Project[]) {
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/projects/',
- body: projects,
- });
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/projects/org-slug/project-slug/docs/other/',
- body: {},
- });
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/projects/org-slug/project-slug/rules/',
- body: [],
- });
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/projects/org-slug/project-slug/',
- body: projects,
- });
- MockApiClient.addMockResponse({
- url: '/projects/org-slug/project-slug/keys/',
- method: 'GET',
- body: [TestStubs.ProjectKeys()[0]],
- });
- MockApiClient.addMockResponse({
- url: `/projects/org-slug/project-slug/keys/${TestStubs.ProjectKeys()[0].public}/`,
- method: 'PUT',
- body: {},
- });
- }
- describe('ProjectInstallPlatform', function () {
- beforeEach(function () {
- MockApiClient.clearMockResponses();
- });
- it('should render NotFound if no matching integration/platform', async function () {
- const routeParams = {
- projectId: TestStubs.Project().slug,
- };
- const {organization, routerProps, project, routerContext} = initializeOrg({
- router: {
- location: {
- query: {},
- },
- params: routeParams,
- },
- });
- mockProjectApiResponses([{...project, platform: 'lua'}]);
- render(<ProjectInstallPlatform {...routerProps} />, {
- organization,
- context: routerContext,
- });
- expect(await screen.findByText('Page Not Found')).toBeInTheDocument();
- });
- it('should display info for a non-supported platform', async function () {
- const routeParams = {
- projectId: TestStubs.Project().slug,
- };
- const {organization, routerProps, project} = initializeOrg({
- router: {
- location: {
- query: {},
- },
- params: routeParams,
- },
- });
- // this is needed because we don't handle a loading state in the UI
- ProjectsStore.loadInitialData([{...project, platform: 'other'}]);
- mockProjectApiResponses([{...project, platform: 'other'}]);
- render(<ProjectInstallPlatform {...routerProps} />, {
- organization,
- });
- expect(
- await screen.findByText(/We cannot provide instructions for 'Other' projects/)
- ).toBeInTheDocument();
- });
- it('should render getting started docs for correct platform', async function () {
- const project = TestStubs.Project({platform: 'javascript'});
- const routeParams = {
- projectId: project.slug,
- platform: 'python',
- };
- const {routerProps, routerContext} = initializeOrg({
- router: {
- location: {
- query: {},
- },
- params: routeParams,
- },
- });
- ProjectsStore.loadInitialData([project]);
- mockProjectApiResponses([project]);
- render(<ProjectInstallPlatform {...routerProps} />, {
- context: routerContext,
- });
- expect(
- await screen.findByRole('heading', {
- name: 'Configure JavaScript SDK',
- })
- ).toBeInTheDocument();
- });
- });
|