Skip to content

Commit 1fe919e

Browse files
committed
refactor: use enhanced dropdown and update tests
1 parent 64c9305 commit 1fe919e

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

src/components/snapshot/AuthDomain.test.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ describe('Test AuthDomain component', () => {
4040
it('Displays authorization domain section', () => {
4141
mountAuthDomain([]);
4242

43-
cy.get('label[for="authorization-domain"]')
43+
cy.get('label[for="select-authorization-domain-select"]')
4444
.should('contain.text', 'Authorization Domain')
4545
.should('contain.text', '(optional)');
4646
});
@@ -52,12 +52,12 @@ describe('Test AuthDomain component', () => {
5252
];
5353
mountAuthDomain(userGroups);
5454

55-
cy.get('#authorization-domain-select')
55+
cy.get('#select-authorization-domain-select')
5656
.should('exist')
5757
.should('not.be.disabled')
5858
.should('have.value', '');
5959

60-
cy.get('#authorization-domain-select').parent().click();
60+
cy.get('#select-authorization-domain-select').parent().click();
6161
cy.get('[data-cy^=menuItem]').should('have.length', userGroups.length);
6262
});
6363

@@ -68,19 +68,19 @@ describe('Test AuthDomain component', () => {
6868
];
6969
mountAuthDomain(userGroups);
7070

71-
cy.get('#authorization-domain-select').parent().click();
71+
cy.get('#select-authorization-domain-select').parent().click();
7272
cy.get('[data-cy=menuItem-group2]').click();
73-
cy.get('#authorization-domain-select').should('have.value', 'group2');
73+
cy.get('#select-authorization-domain-select').should('have.value', 'group2');
7474
});
7575

7676
it('Enables authorization domain dropdown when sufficient user groups', () => {
7777
const userGroups = [{ groupEmail: 'email1', groupName: 'group1', role: 'READER' }];
7878
mountAuthDomain(userGroups);
79-
cy.get('#authorization-domain-select').should('not.be.disabled');
79+
cy.get('#select-authorization-domain-select').should('not.be.disabled');
8080
});
8181

8282
it('Disables authorization domain dropdown when empty user groups', () => {
8383
mountAuthDomain([]);
84-
cy.get('#authorization-domain-select').should('be.disabled');
84+
cy.get('#select-authorization-domain-select').should('be.disabled');
8585
});
8686
});

src/components/snapshot/AuthDomain.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function AuthDomain({ dispatch, userGroups, setParentAuthDomain }: Readonly<Auth
2626

2727
return (
2828
<>
29-
<FormLabel sx={{ fontWeight: 700, color: '#333f52' }} htmlFor="authorization-domain">
29+
<FormLabel sx={{ fontWeight: 700, color: '#333f52' }} htmlFor="select-authorization-domain-select">
3030
Authorization Domain
3131
<span style={{ fontWeight: 400, fontStyle: 'italic' }}> - (optional)</span>
3232
</FormLabel>
@@ -51,13 +51,14 @@ function AuthDomain({ dispatch, userGroups, setParentAuthDomain }: Readonly<Auth
5151
sx={{ height: '2.5rem' }}
5252
disabled={userGroups ? userGroups.length < 1 : true}
5353
options={userGroups ? userGroups.map((group) => group.groupName) : []}
54-
name="authorization-domain"
54+
name="Select Authorization Domain"
5555
onSelectedItem={(event) => {
5656
const authDomain = event.target.value;
5757
setParentAuthDomain(authDomain);
5858
setSelectedAuthDomain(authDomain);
5959
}}
6060
value={selectedAuthDomain ?? ''}
61+
includeNoneOption={true}
6162
/>
6263
</>
6364
);

0 commit comments

Comments
 (0)