123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- import {RouteComponentProps} from 'react-router';
- import {Location, LocationDescriptor, LocationDescriptorObject} from 'history';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import withDomainRequired, {normalizeUrl} from 'sentry/utils/withDomainRequired';
- describe('normalizeUrl', function () {
- let result;
- beforeEach(function () {
- window.__initialData = {
- customerDomain: {
- subdomain: 'albertos-apples',
- organizationUrl: 'https://albertos-apples.sentry.io',
- sentryUrl: 'https://sentry.io',
- },
- } as any;
- });
- it('replaces paths in strings', function () {
- const location = TestStubs.location();
- const cases = [
- // input, expected
- ['/settings/organization', '/settings/organization'],
- ['/settings/sentry/members/', '/settings/members/'],
- ['/settings/sentry/members/3/', '/settings/members/3/'],
- ['/settings/sentry/teams/peeps/', '/settings/teams/peeps/'],
- ['/settings/account/security/', '/settings/account/security/'],
- ['/settings/account/details/', '/settings/account/details/'],
- ['/organizations/new', '/organizations/new'],
- ['/organizations/new/', '/organizations/new/'],
- ['/join-request/acme', '/join-request/'],
- ['/join-request/acme/', '/join-request/'],
- ['/onboarding/acme/', '/onboarding/'],
- ['/onboarding/acme/project/', '/onboarding/project/'],
- ['/organizations/albertos-apples/issues/', '/issues/'],
- ['/organizations/albertos-apples/issues/?_q=all#hash', '/issues/?_q=all#hash'],
- ['/acme/project-slug/getting-started/', '/getting-started/project-slug/'],
- [
- '/acme/project-slug/getting-started/python',
- '/getting-started/project-slug/python',
- ],
- ['/settings/projects/python/filters/', '/settings/projects/python/filters/'],
- [
- '/settings/projects/python/filters/discarded/',
- '/settings/projects/python/filters/discarded/',
- ],
- ];
- for (const scenario of cases) {
- result = normalizeUrl(scenario[0], location);
- expect(result).toEqual(scenario[1]);
- }
- });
- it('replaces pathname in objects', function () {
- const location = TestStubs.location();
- result = normalizeUrl({pathname: '/settings/organization'}, location);
- // @ts-ignore
- expect(result.pathname).toEqual('/settings/organization');
- result = normalizeUrl({pathname: '/settings/sentry/members'}, location);
- // @ts-ignore
- expect(result.pathname).toEqual('/settings/members');
- result = normalizeUrl({pathname: '/organizations/albertos-apples/issues'}, location);
- // @ts-ignore
- expect(result.pathname).toEqual('/issues');
- result = normalizeUrl(
- {
- pathname: '/organizations/albertos-apples/issues',
- query: {q: 'all'},
- },
- location
- );
- // @ts-ignore
- expect(result.pathname).toEqual('/issues');
- });
- it('replaces pathname in function callback', function () {
- const location = TestStubs.location();
- function objectCallback(_loc: Location): LocationDescriptorObject {
- return {pathname: '/settings/organization'};
- }
- result = normalizeUrl(objectCallback, location);
- // @ts-ignore
- expect(result.pathname).toEqual('/settings/organization');
- function stringCallback(_loc: Location): LocationDescriptor {
- return '/organizations/a-long-slug/discover/';
- }
- result = normalizeUrl(stringCallback, location);
- expect(result).toEqual('/discover/');
- });
- it('errors on functions without location', function () {
- function objectCallback(_loc: Location): LocationDescriptorObject {
- return {pathname: '/settings/organization'};
- }
- expect(() => normalizeUrl(objectCallback)).toThrow();
- });
- });
- describe('withDomainRequired', function () {
- type Props = RouteComponentProps<{orgId: string}, {}>;
- const MyComponent = (props: Props) => {
- const {params} = props;
- return <div>Org slug: {params.orgId ?? 'no org slug'}</div>;
- };
- beforeEach(function () {
- Object.defineProperty(window, 'location', {
- writable: true,
- value: {
- replace: jest.fn(),
- pathname: '/organizations/albertos-apples/issues/',
- search: '?q=123',
- hash: '#hash',
- },
- });
- window.__initialData = {
- customerDomain: {
- subdomain: 'albertos-apples',
- organizationUrl: 'https://albertos-apples.sentry.io',
- sentryUrl: 'https://sentry.io',
- },
- links: {
- organizationUrl: null,
- regionUrl: null,
- sentryUrl: 'https://sentry.io',
- },
- } as any;
- });
- it('redirects to sentryUrl in non-customer domain world', function () {
- window.__initialData = {
- customerDomain: null,
- features: ['organizations:customer-domains'],
- links: {
- organizationUrl: null,
- regionUrl: null,
- sentryUrl: 'https://sentry.io',
- },
- } as any;
- const organization = TestStubs.Organization({
- slug: 'albertos-apples',
- features: [],
- });
- const params = {
- orgId: 'albertos-apples',
- };
- const {router, route, routerContext} = initializeOrg({
- ...initializeOrg(),
- organization,
- router: {
- params,
- },
- });
- const WrappedComponent = withDomainRequired(MyComponent);
- const {container} = render(
- <WrappedComponent
- router={router}
- location={router.location}
- params={params}
- routes={router.routes}
- routeParams={router.params}
- route={route}
- />,
- {context: routerContext}
- );
- expect(container).toBeEmptyDOMElement();
- expect(window.location.replace).toHaveBeenCalledTimes(1);
- expect(window.location.replace).toHaveBeenCalledWith(
- 'https://sentry.io/organizations/albertos-apples/issues/?q=123#hash'
- );
- });
- it('redirects to sentryUrl if customer-domains is omitted', function () {
- window.__initialData = {
- customerDomain: {
- subdomain: 'albertos-apples',
- organizationUrl: 'https://albertos-apples.sentry.io',
- sentryUrl: 'https://sentry.io',
- },
- features: [],
- links: {
- organizationUrl: null,
- regionUrl: null,
- sentryUrl: 'https://sentry.io',
- },
- } as any;
- const organization = TestStubs.Organization({
- slug: 'albertos-apples',
- features: [],
- });
- const params = {
- orgId: 'albertos-apples',
- };
- const {router, route, routerContext} = initializeOrg({
- ...initializeOrg(),
- organization,
- router: {
- params,
- },
- });
- const WrappedComponent = withDomainRequired(MyComponent);
- const {container} = render(
- <WrappedComponent
- router={router}
- location={router.location}
- params={params}
- routes={router.routes}
- routeParams={router.params}
- route={route}
- />,
- {context: routerContext}
- );
- expect(container).toBeEmptyDOMElement();
- expect(window.location.replace).toHaveBeenCalledTimes(1);
- expect(window.location.replace).toHaveBeenCalledWith(
- 'https://sentry.io/organizations/albertos-apples/issues/?q=123#hash'
- );
- });
- it('renders when window.__initialData.customerDomain and customer-domains feature is present', function () {
- window.__initialData = {
- customerDomain: {
- subdomain: 'albertos-apples',
- organizationUrl: 'https://albertos-apples.sentry.io',
- sentryUrl: 'https://sentry.io',
- },
- features: ['organizations:customer-domains'],
- links: {
- organizationUrl: 'https://albertos-apples.sentry.io',
- regionUrl: 'https://eu.sentry.io',
- sentryUrl: 'https://sentry.io',
- },
- } as any;
- const organization = TestStubs.Organization({
- slug: 'albertos-apples',
- features: [],
- });
- const params = {
- orgId: 'albertos-apples',
- };
- const {router, route, routerContext} = initializeOrg({
- ...initializeOrg(),
- organization,
- router: {
- params,
- },
- });
- const WrappedComponent = withDomainRequired(MyComponent);
- render(
- <WrappedComponent
- router={router}
- location={router.location}
- params={params}
- routes={router.routes}
- routeParams={router.params}
- route={route}
- />,
- {context: routerContext}
- );
- expect(screen.getByText('Org slug: albertos-apples')).toBeInTheDocument();
- expect(window.location.replace).toHaveBeenCalledTimes(0);
- });
- });
|