123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- import {CommitFixture} from 'sentry-fixture/commit';
- import {ReleaseFixture} from 'sentry-fixture/release';
- import {ReleaseProjectFixture} from 'sentry-fixture/releaseProject';
- import {RepositoryFixture} from 'sentry-fixture/repository';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import selectEvent from 'sentry-test/selectEvent';
- import RepositoryStore from 'sentry/stores/repositoryStore';
- import type {ReleaseProject} from 'sentry/types/release';
- import {ReleaseContext} from 'sentry/views/releases/detail';
- import Commits from './commits';
- describe('Commits', () => {
- const release = ReleaseFixture();
- const project = ReleaseProjectFixture() as Required<ReleaseProject>;
- const {routerProps, router, organization} = initializeOrg({
- router: {params: {release: release.version}},
- });
- const repos = [RepositoryFixture({integrationId: '1'})];
- function renderComponent() {
- return render(
- <ReleaseContext.Provider
- value={{
- release,
- project,
- deploys: [],
- refetchData: () => {},
- hasHealthData: false,
- releaseBounds: {} as any,
- releaseMeta: {} as any,
- }}
- >
- <Commits releaseRepos={[]} projectSlug={project.slug} {...routerProps} />
- </ReleaseContext.Provider>,
- {router}
- );
- }
- beforeEach(() => {
- MockApiClient.clearMockResponses();
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/repos/`,
- body: repos,
- });
- RepositoryStore.init();
- });
- it('should render no repositories message', async () => {
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/repos/`,
- body: [],
- });
- renderComponent();
- expect(
- await screen.findByText('Releases are better with commit data!')
- ).toBeInTheDocument();
- });
- it('should render no commits', async () => {
- MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/${project.slug}/releases/${encodeURIComponent(
- release.version
- )}/repositories/`,
- body: repos,
- });
- MockApiClient.addMockResponse({
- url: `/projects/org-slug/project-slug/releases/${encodeURIComponent(
- release.version
- )}/commits/`,
- body: [],
- });
- renderComponent();
- expect(await screen.findByText(/There are no commits/)).toBeInTheDocument();
- });
- it('should render list of commits', async () => {
- MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/${project.slug}/releases/${encodeURIComponent(
- release.version
- )}/repositories/`,
- body: repos,
- });
- MockApiClient.addMockResponse({
- url: `/projects/org-slug/project-slug/releases/${encodeURIComponent(
- release.version
- )}/commits/`,
- body: [CommitFixture()],
- });
- renderComponent();
- expect(
- await screen.findByText('(improve) Add Links to Spike-Protection Email (#2408)')
- ).toBeInTheDocument();
- expect(screen.getByText('f7f395d')).toBeInTheDocument();
- });
- it('should render repo picker', async () => {
- MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/${project.slug}/releases/${encodeURIComponent(
- release.version
- )}/repositories/`,
- body: [
- repos[0]!,
- RepositoryFixture({
- id: '5',
- name: 'getsentry/sentry-frontend',
- integrationId: '1',
- }),
- ],
- });
- MockApiClient.addMockResponse({
- url: `/projects/org-slug/project-slug/releases/${encodeURIComponent(
- release.version
- )}/commits/`,
- body: [CommitFixture()],
- });
- renderComponent();
- expect(await screen.findByRole('button')).toHaveTextContent('example/repo-name');
- expect(screen.queryByText('getsentry/sentry-frontend')).not.toBeInTheDocument();
- await selectEvent.openMenu(
- screen.getByRole('button', {name: 'Filter example/repo-name'})
- );
- expect(await screen.findByText('getsentry/sentry-frontend')).toBeInTheDocument();
- });
- it('should render the commits from the selected repo', async () => {
- const otherRepo = RepositoryFixture({
- id: '5',
- name: 'getsentry/sentry-frontend',
- integrationId: '1',
- });
- // Current repo is stored in query parameter activeRepo
- const {router: newRouterContext, routerProps: newRouterProps} = initializeOrg({
- router: {
- params: {release: release.version},
- location: {query: {activeRepo: otherRepo.name}},
- },
- });
- MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/${project.slug}/releases/${encodeURIComponent(
- release.version
- )}/repositories/`,
- body: [repos[0]!, otherRepo],
- });
- MockApiClient.addMockResponse({
- url: `/projects/org-slug/project-slug/releases/${encodeURIComponent(
- release.version
- )}/commits/`,
- body: [
- CommitFixture(),
- CommitFixture({
- repository: otherRepo,
- }),
- ],
- });
- render(
- <ReleaseContext.Provider
- value={{
- release,
- project,
- deploys: [],
- refetchData: () => {},
- hasHealthData: false,
- releaseBounds: {} as any,
- releaseMeta: {} as any,
- }}
- >
- <Commits releaseRepos={[]} projectSlug={project.slug} {...newRouterProps} />
- </ReleaseContext.Provider>,
- {router: newRouterContext}
- );
- expect(await screen.findByRole('button')).toHaveTextContent(otherRepo.name);
- expect(screen.queryByText('example/repo-name')).not.toBeInTheDocument();
- });
- });
|