1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary';
- import SidebarDropdown from 'sentry/components/sidebar/sidebarDropdown';
- import ConfigStore from 'sentry/stores/configStore';
- function renderDropdown(props) {
- const user = ConfigStore.get('user');
- const config = ConfigStore.get('config');
- const organization = TestStubs.Organization({role: 'member'});
- const routerContext = TestStubs.routerContext([
- {
- organization,
- },
- ]);
- return render(
- <SidebarDropdown
- orientation="left"
- collapsed={false}
- user={user}
- config={config}
- org={organization}
- {...props}
- />,
- {context: routerContext}
- );
- }
- describe('SidebarDropdown', function () {
- it('renders', function () {
- const {container} = renderDropdown();
- expect(container).toSnapshot();
- });
- it('renders without org links', function () {
- const {container} = renderDropdown({hideOrgLinks: true});
- expect(container).toSnapshot();
- });
- it('renders open sidebar', function () {
- const config = {...ConfigStore.get('config'), singleOrganization: false};
- renderDropdown({collapsed: false, config});
- userEvent.click(screen.getByTestId('sidebar-dropdown'));
- expect(screen.getByText('Switch organization')).toBeInTheDocument();
- });
- it('sandbox/demo mode render open sidebar', function () {
- ConfigStore.set('demoMode', true);
- const config = {...ConfigStore.get('config'), singleOrganization: false};
- renderDropdown({collapsed: false, config});
- userEvent.click(screen.getByTestId('sidebar-dropdown'));
- expect(screen.queryByText('Switch organization')).not.toBeInTheDocument();
- });
- });
|