123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525 |
- import {ProjectKeysFixture} from 'sentry-fixture/projectKeys';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render, screen, waitForElementToBeRemoved} from 'sentry-test/reactTestingLibrary';
- import {OnboardingContextProvider} from 'sentry/components/onboarding/onboardingContext';
- import {ProductSolution} from 'sentry/components/onboarding/productSelection';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import type {OnboardingRecentCreatedProject} from 'sentry/types/onboarding';
- import type {Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import SetupDocs from 'sentry/views/onboarding/setupDocs';
- const PROJECT_KEY = ProjectKeysFixture()[0];
- function renderMockRequests({
- project,
- orgSlug,
- }: {
- orgSlug: Organization['slug'];
- project: Project;
- }) {
- MockApiClient.addMockResponse({
- url: `/projects/${orgSlug}/${project.slug}/`,
- body: project,
- });
- MockApiClient.addMockResponse({
- url: `/projects/${orgSlug}/${project.slug}/keys/`,
- body: [PROJECT_KEY],
- });
- MockApiClient.addMockResponse({
- url: `/projects/${orgSlug}/${project.slug}/issues/`,
- body: [],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${orgSlug}/sdks/`,
- body: {
- 'sentry.java.android.gradle-plugin': {
- canonical: 'maven:io.sentry:sentry',
- main_docs_url: 'https://docs.sentry.io/platforms/java',
- name: 'io.sentry:sentry',
- package_url: 'https://search.maven.org/artifact/io.sentry/sentry',
- repo_url: 'https://github.com/getsentry/sentry-java',
- version: '3.12.0',
- },
- },
- });
- if (project.slug !== 'javascript-react') {
- MockApiClient.addMockResponse({
- url: `/projects/${orgSlug}/${project.slug}/docs/${project.platform}/`,
- body: {html: ''},
- });
- }
- }
- describe('Onboarding Setup Docs', function () {
- it('does not render Product Selection', async function () {
- const {router, organization, project} = initializeOrg({
- projects: [
- {
- ...initializeOrg().project,
- slug: 'python',
- platform: 'python',
- },
- ],
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({project, orgSlug: organization.slug});
- render(
- <OnboardingContextProvider>
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={{}}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- search=""
- recentCreatedProject={project as OnboardingRecentCreatedProject}
- />
- </OnboardingContextProvider>,
- {
- router,
- organization,
- }
- );
- expect(
- await screen.findByRole('heading', {name: 'Configure Python SDK'})
- ).toBeInTheDocument();
- expect(
- screen.queryByTestId(
- `product-${ProductSolution.ERROR_MONITORING}-${ProductSolution.PERFORMANCE_MONITORING}-${ProductSolution.SESSION_REPLAY}`
- )
- ).not.toBeInTheDocument();
- });
- it('renders SDK version from the sentry release registry', async function () {
- const {router, organization, project} = initializeOrg({
- projects: [
- {
- ...initializeOrg().project,
- slug: 'java',
- platform: 'java',
- },
- ],
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({project, orgSlug: organization.slug});
- render(
- <OnboardingContextProvider>
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={{}}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- search=""
- recentCreatedProject={project as OnboardingRecentCreatedProject}
- />
- </OnboardingContextProvider>,
- {
- router,
- organization,
- }
- );
- expect(
- await screen.findByText(/id "io.sentry.jvm.gradle" version "3.12.0"/)
- ).toBeInTheDocument();
- });
- describe('renders Product Selection', function () {
- it('all products checked', async function () {
- const {router, organization, project} = initializeOrg({
- router: {
- location: {
- query: {
- product: [
- ProductSolution.PERFORMANCE_MONITORING,
- ProductSolution.SESSION_REPLAY,
- ],
- },
- },
- },
- projects: [
- {
- ...initializeOrg().project,
- slug: 'javascript-react',
- platform: 'javascript-react',
- },
- ],
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({
- project,
- orgSlug: organization.slug,
- });
- render(
- <OnboardingContextProvider>
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={{}}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- search=""
- recentCreatedProject={project as OnboardingRecentCreatedProject}
- />
- </OnboardingContextProvider>,
- {
- router,
- organization,
- }
- );
- expect(
- await screen.findByRole('heading', {name: 'Configure React SDK'})
- ).toBeInTheDocument();
- const codeBlock = await screen.findByText(/import \* as Sentry/);
- expect(codeBlock).toHaveTextContent(/Tracing/);
- expect(codeBlock).toHaveTextContent(/Session Replay/);
- });
- it('only performance checked', async function () {
- const {router, organization, project} = initializeOrg({
- router: {
- location: {
- query: {product: [ProductSolution.PERFORMANCE_MONITORING]},
- },
- },
- projects: [
- {
- ...initializeOrg().project,
- slug: 'javascript-react',
- platform: 'javascript-react',
- },
- ],
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({
- project,
- orgSlug: organization.slug,
- });
- render(
- <OnboardingContextProvider>
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={{}}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- search=""
- recentCreatedProject={project as OnboardingRecentCreatedProject}
- />
- </OnboardingContextProvider>,
- {
- router,
- organization,
- }
- );
- const codeBlock = await screen.findByText(/import \* as Sentry/);
- expect(codeBlock).toHaveTextContent(/Tracing/);
- expect(codeBlock).not.toHaveTextContent(/Session Replay/);
- });
- it('only session replay checked', async function () {
- const {router, organization, project} = initializeOrg({
- router: {
- location: {
- query: {product: [ProductSolution.SESSION_REPLAY]},
- },
- },
- projects: [
- {
- ...initializeOrg().project,
- slug: 'javascript-react',
- platform: 'javascript-react',
- },
- ],
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({
- project,
- orgSlug: organization.slug,
- });
- render(
- <OnboardingContextProvider>
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={{}}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- search=""
- recentCreatedProject={project as OnboardingRecentCreatedProject}
- />
- </OnboardingContextProvider>,
- {
- router,
- organization,
- }
- );
- const codeBlock = await screen.findByText(/import \* as Sentry/);
- expect(codeBlock).toHaveTextContent(/Session Replay/);
- expect(codeBlock).not.toHaveTextContent(/Tracing/);
- });
- it('only error monitoring checked', async function () {
- const {router, organization, project} = initializeOrg({
- router: {
- location: {
- query: {product: []},
- },
- },
- projects: [
- {
- ...initializeOrg().project,
- slug: 'javascript-react',
- platform: 'javascript-react',
- },
- ],
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({
- project,
- orgSlug: organization.slug,
- });
- render(
- <OnboardingContextProvider>
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={{}}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- search=""
- recentCreatedProject={project as OnboardingRecentCreatedProject}
- />
- </OnboardingContextProvider>,
- {
- router,
- organization,
- }
- );
- await waitForElementToBeRemoved(() => screen.queryByTestId('loading-indicator'));
- const codeBlock = await screen.findByText(/import \* as Sentry/);
- expect(codeBlock).not.toHaveTextContent(/Tracing/);
- expect(codeBlock).not.toHaveTextContent(/Session Replay/);
- });
- });
- describe('JS Loader Script', function () {
- it('renders Loader Script setup', async function () {
- const {router, organization, project} = initializeOrg({
- router: {
- location: {
- query: {
- product: [
- ProductSolution.PERFORMANCE_MONITORING,
- ProductSolution.SESSION_REPLAY,
- ],
- },
- },
- },
- projects: [
- {
- ...initializeOrg().project,
- slug: 'javascript',
- platform: 'javascript',
- },
- ],
- });
- const updateLoaderMock = MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/${project.slug}/keys/${PROJECT_KEY.id}/`,
- method: 'PUT',
- body: PROJECT_KEY,
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({
- project,
- orgSlug: organization.slug,
- });
- const {rerender} = render(
- <OnboardingContextProvider>
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={{}}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- search=""
- recentCreatedProject={project as OnboardingRecentCreatedProject}
- />
- </OnboardingContextProvider>,
- {
- router,
- organization,
- }
- );
- expect(
- await screen.findByRole('heading', {name: 'Configure Browser JavaScript SDK'})
- ).toBeInTheDocument();
- expect(updateLoaderMock).toHaveBeenCalledTimes(1);
- expect(updateLoaderMock).toHaveBeenCalledWith(
- expect.any(String), // The URL
- {
- data: {
- dynamicSdkLoaderOptions: {
- hasDebug: false,
- hasPerformance: true,
- hasReplay: true,
- },
- },
- error: expect.any(Function),
- method: 'PUT',
- success: expect.any(Function),
- }
- );
- // update query in URL
- router.location.query = {
- product: [ProductSolution.SESSION_REPLAY],
- };
- rerender(
- <OnboardingContextProvider>
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={{}}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- search=""
- recentCreatedProject={project as OnboardingRecentCreatedProject}
- />
- </OnboardingContextProvider>
- );
- expect(updateLoaderMock).toHaveBeenCalledTimes(2);
- expect(updateLoaderMock).toHaveBeenLastCalledWith(
- expect.any(String), // The URL
- {
- data: {
- dynamicSdkLoaderOptions: {
- hasDebug: false,
- hasPerformance: false,
- hasReplay: true,
- },
- },
- error: expect.any(Function),
- method: 'PUT',
- success: expect.any(Function),
- }
- );
- });
- });
- describe('special platforms', () => {
- it('renders platform other', async function () {
- const {router, organization, project} = initializeOrg({
- projects: [
- {
- ...initializeOrg().project,
- slug: 'other',
- platform: 'other',
- },
- ],
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({project, orgSlug: organization.slug});
- render(
- <OnboardingContextProvider>
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={{}}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- search=""
- recentCreatedProject={project as OnboardingRecentCreatedProject}
- />
- </OnboardingContextProvider>,
- {
- router,
- organization,
- }
- );
- expect(
- await screen.findByRole('heading', {name: 'Configure Other SDK'})
- ).toBeInTheDocument();
- });
- });
- });
|