123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585 |
- import {Location} from 'history';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import {PRODUCT} from 'sentry/components/onboarding/productSelection';
- import {ReactDocVariant} from 'sentry/data/platforms';
- import {PersistedStoreContext} from 'sentry/stores/persistedStore';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import {Organization, Project} from 'sentry/types';
- import SetupDocs from 'sentry/views/onboarding/setupDocs';
- const PROJECT_KEY = TestStubs.ProjectKeys()[0];
- function renderMockRequests({
- project,
- orgSlug,
- location,
- }: {
- orgSlug: Organization['slug'];
- project: Project;
- location?: Location;
- }) {
- MockApiClient.addMockResponse({
- url: `/projects/${orgSlug}/${project.slug}/`,
- body: project,
- });
- if (project.slug === 'javascript-browser') {
- MockApiClient.addMockResponse({
- url: `/projects/${orgSlug}/${project.slug}/keys/`,
- body: [PROJECT_KEY],
- });
- }
- MockApiClient.addMockResponse({
- url: `/projects/${orgSlug}/${project.slug}/issues/`,
- body: [],
- });
- if (project.slug === 'javascript-react') {
- const products = location?.query.product ?? [];
- if (
- products.includes(PRODUCT.PERFORMANCE_MONITORING) &&
- products.includes(PRODUCT.SESSION_REPLAY)
- ) {
- MockApiClient.addMockResponse({
- url: `/projects/${orgSlug}/${project.slug}/docs/${ReactDocVariant.ErrorMonitoringPerformanceAndReplay}/`,
- body: {html: ReactDocVariant.ErrorMonitoringPerformanceAndReplay},
- });
- } else if (products.includes(PRODUCT.PERFORMANCE_MONITORING)) {
- MockApiClient.addMockResponse({
- url: `/projects/${orgSlug}/${project.slug}/docs/${ReactDocVariant.ErrorMonitoringAndPerformance}/`,
- body: {html: ReactDocVariant.ErrorMonitoringAndPerformance},
- });
- } else if (products.includes(PRODUCT.SESSION_REPLAY)) {
- MockApiClient.addMockResponse({
- url: `/projects/${orgSlug}/${project.slug}/docs/${ReactDocVariant.ErrorMonitoringAndSessionReplay}/`,
- body: {html: ReactDocVariant.ErrorMonitoringAndSessionReplay},
- });
- } else {
- MockApiClient.addMockResponse({
- url: `/projects/${orgSlug}/${project.slug}/docs/${ReactDocVariant.ErrorMonitoring}/`,
- body: {html: ReactDocVariant.ErrorMonitoring},
- });
- }
- } else {
- 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, route, routerContext, organization, project} = initializeOrg({
- ...initializeOrg(),
- organization: {
- ...initializeOrg().organization,
- features: [
- 'onboarding-remove-multiselect-platform',
- 'onboarding-docs-with-product-selection',
- ],
- },
- projects: [
- {
- ...initializeOrg().project,
- slug: 'python',
- platform: 'python',
- },
- ],
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({project, orgSlug: organization.slug});
- render(
- <PersistedStoreContext.Provider
- value={[
- {
- onboarding: {
- selectedPlatforms: ['python'],
- platformToProjectIdMap: {
- python: 'python',
- },
- },
- },
- jest.fn(),
- ]}
- >
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={route}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- jumpToSetupProject={() => {}}
- search=""
- />
- </PersistedStoreContext.Provider>,
- {
- context: routerContext,
- organization,
- }
- );
- expect(
- await screen.findByRole('heading', {name: 'Configure Python SDK'})
- ).toBeInTheDocument();
- expect(
- screen.queryByTestId(
- `product-${PRODUCT.ERROR_MONITORING}-${PRODUCT.PERFORMANCE_MONITORING}-${PRODUCT.SESSION_REPLAY}`
- )
- ).not.toBeInTheDocument();
- });
- describe('renders Product Selection', function () {
- it('all products checked', async function () {
- const {router, route, routerContext, organization, project} = initializeOrg({
- ...initializeOrg(),
- organization: {
- ...initializeOrg().organization,
- features: [
- 'onboarding-remove-multiselect-platform',
- 'onboarding-docs-with-product-selection',
- ],
- },
- router: {
- location: {
- query: {product: [PRODUCT.PERFORMANCE_MONITORING, PRODUCT.SESSION_REPLAY]},
- },
- },
- projects: [
- {
- ...initializeOrg().project,
- slug: 'javascript-react',
- platform: 'javascript-react',
- },
- ],
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({
- project,
- orgSlug: organization.slug,
- location: router.location,
- });
- render(
- <PersistedStoreContext.Provider
- value={[
- {
- onboarding: {
- selectedPlatforms: ['javascript-react'],
- platformToProjectIdMap: {
- 'javascript-react': 'javascript-react',
- },
- },
- },
- jest.fn(),
- ]}
- >
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={route}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- jumpToSetupProject={() => {}}
- search=""
- />
- </PersistedStoreContext.Provider>,
- {
- context: routerContext,
- organization,
- }
- );
- expect(
- await screen.findByRole('heading', {name: 'Configure React SDK'})
- ).toBeInTheDocument();
- // Render variation of docs - default (all checked)
- expect(
- await screen.findByText(ReactDocVariant.ErrorMonitoringPerformanceAndReplay)
- ).toBeInTheDocument();
- });
- it('only performance checked', async function () {
- const {router, route, routerContext, organization, project} = initializeOrg({
- ...initializeOrg(),
- organization: {
- ...initializeOrg().organization,
- features: [
- 'onboarding-remove-multiselect-platform',
- 'onboarding-docs-with-product-selection',
- ],
- },
- router: {
- location: {
- query: {product: [PRODUCT.PERFORMANCE_MONITORING]},
- },
- },
- projects: [
- {
- ...initializeOrg().project,
- slug: 'javascript-react',
- platform: 'javascript-react',
- },
- ],
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({
- project,
- orgSlug: organization.slug,
- location: router.location,
- });
- render(
- <PersistedStoreContext.Provider
- value={[
- {
- onboarding: {
- selectedPlatforms: ['javascript-react'],
- platformToProjectIdMap: {
- 'javascript-react': 'javascript-react',
- },
- },
- },
- jest.fn(),
- ]}
- >
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={route}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- jumpToSetupProject={() => {}}
- search=""
- />
- </PersistedStoreContext.Provider>,
- {
- context: routerContext,
- organization,
- }
- );
- // Render variation of docs - error monitoring and performance doc
- expect(
- await screen.findByText(ReactDocVariant.ErrorMonitoringAndPerformance)
- ).toBeInTheDocument();
- });
- it('only session replay checked', async function () {
- const {router, route, routerContext, organization, project} = initializeOrg({
- ...initializeOrg(),
- organization: {
- ...initializeOrg().organization,
- features: [
- 'onboarding-remove-multiselect-platform',
- 'onboarding-docs-with-product-selection',
- ],
- },
- router: {
- location: {
- query: {product: [PRODUCT.SESSION_REPLAY]},
- },
- },
- projects: [
- {
- ...initializeOrg().project,
- slug: 'javascript-react',
- platform: 'javascript-react',
- },
- ],
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({
- project,
- orgSlug: organization.slug,
- location: router.location,
- });
- render(
- <PersistedStoreContext.Provider
- value={[
- {
- onboarding: {
- selectedPlatforms: ['javascript-react'],
- platformToProjectIdMap: {
- 'javascript-react': 'javascript-react',
- },
- },
- },
- jest.fn(),
- ]}
- >
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={route}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- jumpToSetupProject={() => {}}
- search=""
- />
- </PersistedStoreContext.Provider>,
- {
- context: routerContext,
- organization,
- }
- );
- // Render variation of docs - error monitoring and replay doc
- expect(
- await screen.findByText(ReactDocVariant.ErrorMonitoringAndSessionReplay)
- ).toBeInTheDocument();
- });
- it('only error monitoring checked', async function () {
- const {router, route, routerContext, organization, project} = initializeOrg({
- ...initializeOrg(),
- organization: {
- ...initializeOrg().organization,
- features: [
- 'onboarding-remove-multiselect-platform',
- 'onboarding-docs-with-product-selection',
- ],
- },
- router: {
- location: {
- query: {product: []},
- },
- },
- projects: [
- {
- ...initializeOrg().project,
- slug: 'javascript-react',
- platform: 'javascript-react',
- },
- ],
- });
- ProjectsStore.init();
- ProjectsStore.loadInitialData([project]);
- renderMockRequests({
- project,
- orgSlug: organization.slug,
- location: router.location,
- });
- render(
- <PersistedStoreContext.Provider
- value={[
- {
- onboarding: {
- selectedPlatforms: ['javascript-react'],
- platformToProjectIdMap: {
- 'javascript-react': 'javascript-react',
- },
- },
- },
- jest.fn(),
- ]}
- >
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={route}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- jumpToSetupProject={() => {}}
- search=""
- />
- </PersistedStoreContext.Provider>,
- {
- context: routerContext,
- organization,
- }
- );
- // Render variation of docs - error monitoring doc
- expect(
- await screen.findByText(ReactDocVariant.ErrorMonitoring)
- ).toBeInTheDocument();
- });
- });
- describe('JS Loader Script', function () {
- it('renders Loader Script setup', async function () {
- const {router, route, routerContext, organization, project} = initializeOrg({
- ...initializeOrg(),
- organization: {
- ...initializeOrg().organization,
- features: [
- 'onboarding-remove-multiselect-platform',
- 'onboarding-docs-with-product-selection',
- 'onboarding-project-loader',
- 'js-sdk-dynamic-loader',
- ],
- },
- router: {
- location: {
- query: {product: [PRODUCT.PERFORMANCE_MONITORING, PRODUCT.SESSION_REPLAY]},
- },
- },
- projects: [
- {
- ...initializeOrg().project,
- slug: 'javascript-browser',
- 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,
- location: router.location,
- });
- const {rerender} = render(
- <PersistedStoreContext.Provider
- value={[
- {
- onboarding: {
- selectedPlatforms: ['javascript'],
- platformToProjectIdMap: {
- javascript: 'javascript-browser',
- },
- },
- },
- jest.fn(),
- ]}
- >
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={route}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- jumpToSetupProject={() => {}}
- search=""
- />
- </PersistedStoreContext.Provider>,
- {
- context: routerContext,
- organization,
- }
- );
- expect(
- await screen.findByRole('heading', {name: 'Configure 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: [PRODUCT.SESSION_REPLAY],
- };
- rerender(
- <PersistedStoreContext.Provider
- value={[
- {
- onboarding: {
- selectedPlatforms: ['javascript'],
- platformToProjectIdMap: {
- javascript: 'javascript-browser',
- },
- },
- },
- jest.fn(),
- ]}
- >
- <SetupDocs
- active
- onComplete={() => {}}
- stepIndex={2}
- router={router}
- route={route}
- location={router.location}
- genSkipOnboardingLink={() => ''}
- orgId={organization.slug}
- jumpToSetupProject={() => {}}
- search=""
- />
- </PersistedStoreContext.Provider>
- );
- 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),
- }
- );
- });
- });
- });
|