|
| 1 | +import { mount } from 'cypress/react'; |
| 2 | +import { Router } from 'react-router-dom'; |
| 3 | +import { ThemeProvider } from '@mui/material/styles'; |
| 4 | +import { Provider } from 'react-redux'; |
| 5 | +import React from 'react'; |
| 6 | +import createMockStore from 'redux-mock-store'; |
| 7 | +import { ManagedGroupMembershipEntry } from 'src/models/group'; |
| 8 | +import history from '../../modules/hist'; |
| 9 | +import AuthDomain from './AuthDomain'; |
| 10 | +import globalTheme from '../../modules/theme'; |
| 11 | + |
| 12 | +const mountAuthDomain = (userGroups: Array<ManagedGroupMembershipEntry>) => { |
| 13 | + const state = { |
| 14 | + user: { |
| 15 | + userGroups, |
| 16 | + }, |
| 17 | + }; |
| 18 | + |
| 19 | + const mockStore = createMockStore([]); |
| 20 | + const store = mockStore(state); |
| 21 | + |
| 22 | + cy.intercept('GET', 'https://sam.dsde-dev.broadinstitute.org/api/groups/v1').as('getUserGroups'); |
| 23 | + |
| 24 | + mount( |
| 25 | + <Router history={history}> |
| 26 | + <Provider store={store}> |
| 27 | + <ThemeProvider theme={globalTheme}> |
| 28 | + <AuthDomain |
| 29 | + setParentAuthDomain={() => { |
| 30 | + /* no-op */ |
| 31 | + }} |
| 32 | + /> |
| 33 | + </ThemeProvider> |
| 34 | + </Provider> |
| 35 | + </Router>, |
| 36 | + ); |
| 37 | +}; |
| 38 | + |
| 39 | +describe('Test AuthDomain component', () => { |
| 40 | + it('Displays authorization domain section', () => { |
| 41 | + mountAuthDomain([]); |
| 42 | + |
| 43 | + cy.get('label[for="select-authorization-domain-select"]') |
| 44 | + .should('contain.text', 'Authorization Domain') |
| 45 | + .should('contain.text', '(optional)'); |
| 46 | + }); |
| 47 | + |
| 48 | + it('Shows authorization domain dropdown with options when user groups exist', () => { |
| 49 | + const userGroups = [ |
| 50 | + { groupEmail: 'email1', groupName: 'group1', role: 'READER' }, |
| 51 | + { groupEmail: 'email2', groupName: 'group2', role: 'READER' }, |
| 52 | + ]; |
| 53 | + mountAuthDomain(userGroups); |
| 54 | + |
| 55 | + cy.get('#select-authorization-domain-select') |
| 56 | + .should('exist') |
| 57 | + .should('not.be.disabled') |
| 58 | + .should('have.value', ''); |
| 59 | + |
| 60 | + cy.get('#select-authorization-domain-select').parent().click(); |
| 61 | + cy.get('[data-cy^=menuItem]').should('have.length', userGroups.length); |
| 62 | + }); |
| 63 | + |
| 64 | + it('Select an authorization domain when user groups exist', () => { |
| 65 | + const userGroups = [ |
| 66 | + { groupEmail: 'email1', groupName: 'group1', role: 'READER' }, |
| 67 | + { groupEmail: 'email2', groupName: 'group2', role: 'READER' }, |
| 68 | + ]; |
| 69 | + mountAuthDomain(userGroups); |
| 70 | + |
| 71 | + cy.get('#select-authorization-domain-select').parent().click(); |
| 72 | + cy.get('[data-cy=menuItem-group2]').click(); |
| 73 | + cy.get('#select-authorization-domain-select').should('have.value', 'group2'); |
| 74 | + }); |
| 75 | + |
| 76 | + it('Enables authorization domain dropdown when sufficient user groups', () => { |
| 77 | + const userGroups = [{ groupEmail: 'email1', groupName: 'group1', role: 'READER' }]; |
| 78 | + mountAuthDomain(userGroups); |
| 79 | + cy.get('#select-authorization-domain-select').should('not.be.disabled'); |
| 80 | + }); |
| 81 | + |
| 82 | + it('Disables authorization domain dropdown when empty user groups', () => { |
| 83 | + mountAuthDomain([]); |
| 84 | + cy.get('#select-authorization-domain-select').should('be.disabled'); |
| 85 | + }); |
| 86 | +}); |
0 commit comments