-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathEditCollectionDropdown.spec.tsx
More file actions
314 lines (254 loc) · 10.1 KB
/
EditCollectionDropdown.spec.tsx
File metadata and controls
314 lines (254 loc) · 10.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
import { ComponentProps } from 'react'
import { WriteError } from '@iqss/dataverse-client-javascript'
import { CollectionRepository } from '@/collection/domain/repositories/CollectionRepository'
import { EditCollectionDropdown as BaseEditCollectionDropdown } from '@/sections/collection/edit-collection-dropdown/EditCollectionDropdown'
import { CollectionMother } from '@tests/component/collection/domain/models/CollectionMother'
import { UpwardHierarchyNodeMother } from '@tests/component/shared/hierarchy/domain/models/UpwardHierarchyNodeMother'
import { WithRepositories } from '@tests/component/WithRepositories'
const collectionRepository = {} as CollectionRepository
const PARENT_COLLECTION_ID = 'root'
const PARENT_COLLECTION_NAME = 'Root'
const PARENT_COLLECTION_CONTACT_EMAIL = 'root@test.com'
const rootCollection = CollectionMother.create({
id: PARENT_COLLECTION_ID,
name: PARENT_COLLECTION_NAME,
affiliation: undefined,
contacts: [{ email: PARENT_COLLECTION_CONTACT_EMAIL, displayOrder: 0 }],
hierarchy: UpwardHierarchyNodeMother.createCollection({
id: PARENT_COLLECTION_ID,
name: PARENT_COLLECTION_NAME
}),
isFacetRoot: true,
isMetadataBlockRoot: true
})
const openDropdown = () => cy.findByRole('button', { name: /Edit/i }).click()
function EditCollectionDropdown({
collectionRepository,
...props
}: ComponentProps<typeof BaseEditCollectionDropdown> & {
collectionRepository: CollectionRepository
}) {
return (
<WithRepositories collectionRepository={collectionRepository}>
<BaseEditCollectionDropdown {...props} />
</WithRepositories>
)
}
describe('EditCollectionDropdown', () => {
beforeEach(() => {
collectionRepository.delete = cy.stub().resolves(undefined)
})
describe('dropdown header', () => {
it('shows the collection name and id, but not affiliaton if not present', () => {
cy.mountAuthenticated(
<EditCollectionDropdown
collection={rootCollection}
collectionRepository={collectionRepository}
canUserDeleteCollection={false}
/>
)
openDropdown()
cy.findByText(rootCollection.name).should('exist')
cy.findByText(rootCollection.id).should('exist')
})
it('shows the collection name, id, and also affiliation if present', () => {
const TEST_AFFILIATION = 'Test Affiliation'
const rootCollectionWithAffiliation = CollectionMother.create({
id: PARENT_COLLECTION_ID,
name: PARENT_COLLECTION_NAME,
contacts: [{ email: PARENT_COLLECTION_CONTACT_EMAIL, displayOrder: 0 }],
affiliation: TEST_AFFILIATION,
hierarchy: UpwardHierarchyNodeMother.createCollection({
id: PARENT_COLLECTION_ID,
name: PARENT_COLLECTION_NAME
}),
isFacetRoot: true,
isMetadataBlockRoot: true
})
cy.mountAuthenticated(
<EditCollectionDropdown
collection={rootCollectionWithAffiliation}
collectionRepository={collectionRepository}
canUserDeleteCollection={false}
/>
)
openDropdown()
cy.findByText(rootCollectionWithAffiliation.name).should('exist')
cy.findByText(`(${TEST_AFFILIATION})`).should('exist')
cy.findByText(rootCollectionWithAffiliation.id).should('exist')
})
})
it('shows the General Information button with the correct link', () => {
cy.mountAuthenticated(
<EditCollectionDropdown
collection={rootCollection}
collectionRepository={collectionRepository}
canUserDeleteCollection={false}
/>
)
openDropdown()
cy.findByRole('link', { name: 'General Information' }).should(
'have.attr',
'href',
'/collections/root/edit'
)
})
it('shows the Featured Items button with the correct link', () => {
cy.mountAuthenticated(
<EditCollectionDropdown
collection={rootCollection}
collectionRepository={collectionRepository}
canUserDeleteCollection={false}
/>
)
openDropdown()
cy.findByRole('link', { name: 'Featured Items' }).should(
'have.attr',
'href',
'/collections/root/edit-featured-items'
)
})
it('shows the not implemented collection edit options', () => {
cy.mountAuthenticated(
<EditCollectionDropdown
collection={rootCollection}
collectionRepository={collectionRepository}
canUserDeleteCollection={false}
/>
)
openDropdown()
cy.findByRole('button', { name: 'Theme + Widgets' }).should('exist')
cy.findByRole('button', { name: 'Permissions' }).should('exist')
cy.findByRole('button', { name: 'Groups' }).should('exist')
cy.findByRole('button', { name: 'Dataset Templates' }).should('exist')
cy.findByRole('button', { name: 'Dataset Guestbooks' }).should('exist')
})
it('shows the not implemented modal when a new edit option is clicked', () => {
cy.mountAuthenticated(
<EditCollectionDropdown
collection={rootCollection}
collectionRepository={collectionRepository}
canUserDeleteCollection={false}
/>
)
openDropdown()
cy.findByRole('button', { name: 'Permissions' }).click()
cy.findByText('Not Implemented').should('exist')
cy.findByText(/This feature is not implemented yet in the Modern version./i).should('exist')
})
describe('delete button', () => {
it('shows the delete button if user can delete collection, collection is not root and collection has no data', () => {
cy.mountAuthenticated(
<EditCollectionDropdown
collection={CollectionMother.createSubCollectionWithNoChildObjects()}
collectionRepository={collectionRepository}
canUserDeleteCollection={true}
/>
)
openDropdown()
cy.findByRole('button', { name: /Delete Collection/i }).should('exist')
})
it('does not show the delete button if user cannot delete collection', () => {
cy.mountAuthenticated(
<EditCollectionDropdown
collection={CollectionMother.createSubCollectionWithNoChildObjects()}
collectionRepository={collectionRepository}
canUserDeleteCollection={false}
/>
)
openDropdown()
cy.findByRole('button', { name: /Delete Collection/i }).should('not.exist')
})
it('does not show the delete button if collection is root', () => {
cy.mountAuthenticated(
<EditCollectionDropdown
collection={rootCollection}
collectionRepository={collectionRepository}
canUserDeleteCollection={true}
/>
)
openDropdown()
cy.findByRole('button', { name: /Delete Collection/i }).should('not.exist')
})
it('opens and close the delete collection confirmation modal', () => {
cy.mountAuthenticated(
<EditCollectionDropdown
collection={CollectionMother.createSubCollectionWithNoChildObjects()}
collectionRepository={collectionRepository}
canUserDeleteCollection={true}
/>
)
openDropdown()
cy.findByRole('button', { name: /Delete Collection/i }).click()
cy.findByRole('dialog').should('exist')
cy.findByRole('button', { name: /Cancel/i }).click()
cy.findByRole('dialog').should('not.exist')
})
it('closes the modal and shows toast success message when delete collection succeeds', () => {
collectionRepository.delete = cy
.stub()
.as('deleteStub')
.callsFake(() => {
return Cypress.Promise.delay(200).then(() => undefined)
})
const testCollection = CollectionMother.createSubCollectionWithNoChildObjects()
cy.mountAuthenticated(
<EditCollectionDropdown
collection={testCollection}
collectionRepository={collectionRepository}
canUserDeleteCollection={true}
/>
)
openDropdown()
cy.findByRole('button', { name: /Delete Collection/i }).click()
cy.findByRole('dialog').should('exist')
cy.findByRole('button', { name: /Delete/i }).click()
// The loading spinner inside delete button
cy.findByRole('status').should('exist')
// The dialog can't be closed while deleting when pressing escape
cy.get('body').type('{esc}')
cy.findByRole('dialog').should('exist')
cy.get('@deleteStub').then((spy) => {
const deleteSpy = spy as unknown as Cypress.Agent<sinon.SinonSpy>
const deletedCollectionId = deleteSpy.getCall(0).args[0] as string
expect(deletedCollectionId).to.equal(testCollection.id)
cy.findByRole('dialog', { timeout: 10_000 }).should('not.exist')
cy.findByText(/Your collection has been deleted./, { timeout: 10_000 }).should('exist')
})
})
it('shows the js-dataverse WriteError message if delete collection fails with a js-dataverse WriteError', () => {
collectionRepository.delete = cy
.stub()
.rejects(new WriteError('Testing delete error message.'))
cy.mountAuthenticated(
<EditCollectionDropdown
collection={CollectionMother.createSubCollectionWithNoChildObjects()}
collectionRepository={collectionRepository}
canUserDeleteCollection={true}
/>
)
openDropdown()
cy.findByRole('button', { name: /Delete Collection/i }).click()
cy.findByRole('dialog').should('exist')
cy.findByRole('button', { name: /Delete/i }).click()
cy.findByText('Testing delete error message.').should('exist')
})
it('shows the default error message if delete collection fails with not a js-dataverse WriteError', () => {
collectionRepository.delete = cy.stub().rejects('some error')
cy.mountAuthenticated(
<EditCollectionDropdown
collection={CollectionMother.createSubCollectionWithNoChildObjects()}
collectionRepository={collectionRepository}
canUserDeleteCollection={true}
/>
)
openDropdown()
cy.findByRole('button', { name: /Delete Collection/i }).click()
cy.findByRole('dialog').should('exist')
cy.findByRole('button', { name: /Delete/i }).click()
cy.findByText('Something went wrong deleting the collection. Try again later.').should(
'exist'
)
})
})
})