1
1
import React from 'react' ;
2
- import { render , screen , within , fireEvent , waitFor } from '@testing-library/react' ;
2
+ import { act , render , screen , within , fireEvent , waitFor } from '@testing-library/react' ;
3
3
import '@testing-library/jest-dom' ;
4
- import { MemoryRouter } from 'react-router-dom' ;
5
4
import FileList from './FileList.jsx' ;
6
5
7
6
const mockFiles = [
8
- { id : 20 , name : 'Documents' , type : 'directory' , updatedAt : '2024-02-10T12:30:00Z' } ,
7
+ {
8
+ id : 20 ,
9
+ name : 'Documents' ,
10
+ key : '~assets/Documents' ,
11
+ type : 'directory' ,
12
+ updatedAt : '2024-02-10T12:30:00Z' ,
13
+ } ,
9
14
{
10
15
id : 21 ,
11
16
name : 'report.pdf' ,
17
+ key : '~assets/report.pdf' ,
12
18
type : 'application/pdf' ,
13
19
updatedAt : '2025-01-09T15:45:00Z' ,
14
20
@@ -17,6 +23,7 @@ const mockFiles = [
17
23
{
18
24
id : 22 ,
19
25
name : 'presentation.ppt' ,
26
+ key : '~assets/presentation.ppt' ,
20
27
type : 'application/vnd.ms-powerpoint' ,
21
28
updatedAt : '2024-02-08T09:15:00Z' ,
22
29
@@ -26,7 +33,7 @@ const mockFiles = [
26
33
27
34
const mockProps = {
28
35
path : '/' ,
29
- storageRoot : 'https://custom.domain.gov/~assets ' ,
36
+ baseUrl : 'https://custom.domain.gov' ,
30
37
data : mockFiles ,
31
38
onDelete : jest . fn ( ) ,
32
39
onNavigate : jest . fn ( ) ,
@@ -42,62 +49,38 @@ describe('FileList', () => {
42
49
} ) ;
43
50
44
51
it ( 'renders correctly with file and folder names' , ( ) => {
45
- render (
46
- < MemoryRouter >
47
- < FileList { ...mockProps } />
48
- </ MemoryRouter > ,
49
- ) ;
52
+ render ( < FileList { ...mockProps } /> ) ;
50
53
expect ( screen . getByRole ( 'link' , { name : 'Documents' } ) ) . toBeInTheDocument ( ) ;
51
54
expect ( screen . getByRole ( 'link' , { name : 'report.pdf' } ) ) . toBeInTheDocument ( ) ;
52
55
expect ( screen . getByRole ( 'link' , { name : 'presentation.ppt' } ) ) . toBeInTheDocument ( ) ;
53
56
} ) ;
54
57
55
58
it ( 'does not trigger onViewDetails when clicking a folder' , ( ) => {
56
- render (
57
- < MemoryRouter >
58
- < FileList { ...mockProps } />
59
- </ MemoryRouter > ,
60
- ) ;
59
+ render ( < FileList { ...mockProps } /> ) ;
61
60
fireEvent . click ( screen . getByRole ( 'link' , { name : 'Documents' } ) ) ;
62
61
expect ( mockProps . onViewDetails ) . not . toHaveBeenCalled ( ) ;
63
62
} ) ;
64
63
65
64
it ( 'calls onNavigate when a folder is clicked' , ( ) => {
66
- render (
67
- < MemoryRouter >
68
- < FileList { ...mockProps } />
69
- </ MemoryRouter > ,
70
- ) ;
65
+ render ( < FileList { ...mockProps } /> ) ;
71
66
fireEvent . click ( screen . getByRole ( 'link' , { name : 'Documents' } ) ) ;
72
67
expect ( mockProps . onNavigate ) . toHaveBeenCalledWith ( '/Documents/' ) ;
73
68
} ) ;
74
69
75
70
it ( 'does not trigger onNavigate when clicking a file' , ( ) => {
76
- render (
77
- < MemoryRouter >
78
- < FileList { ...mockProps } />
79
- </ MemoryRouter > ,
80
- ) ;
71
+ render ( < FileList { ...mockProps } /> ) ;
81
72
fireEvent . click ( screen . getByRole ( 'link' , { name : 'report.pdf' } ) ) ;
82
73
expect ( mockProps . onNavigate ) . not . toHaveBeenCalled ( ) ;
83
74
} ) ;
84
75
85
76
it ( 'calls onViewDetails when a file name is clicked' , ( ) => {
86
- render (
87
- < MemoryRouter >
88
- < FileList { ...mockProps } />
89
- </ MemoryRouter > ,
90
- ) ;
77
+ render ( < FileList { ...mockProps } /> ) ;
91
78
fireEvent . click ( screen . getByRole ( 'link' , { name : 'report.pdf' } ) ) ;
92
79
expect ( mockProps . onViewDetails ) . toHaveBeenCalledWith ( 'report.pdf' ) ;
93
80
} ) ;
94
81
95
82
it ( 'calls onSort and reverses sort when a sortable header is clicked' , ( ) => {
96
- render (
97
- < MemoryRouter >
98
- < FileList { ...mockProps } />
99
- </ MemoryRouter > ,
100
- ) ;
83
+ render ( < FileList { ...mockProps } /> ) ;
101
84
102
85
fireEvent . click ( screen . getByLabelText ( 'Sort by name' ) ) ;
103
86
expect ( mockProps . onSort ) . toHaveBeenCalledWith ( 'name' ) ;
@@ -108,11 +91,7 @@ describe('FileList', () => {
108
91
} ) ;
109
92
110
93
it ( 'calls onSort with updatedAt for last modified header' , ( ) => {
111
- render (
112
- < MemoryRouter >
113
- < FileList { ...mockProps } />
114
- </ MemoryRouter > ,
115
- ) ;
94
+ render ( < FileList { ...mockProps } /> ) ;
116
95
117
96
const sortButton = screen . getByLabelText ( 'Sort by last modified' ) ;
118
97
fireEvent . click ( sortButton ) ;
@@ -121,44 +100,28 @@ describe('FileList', () => {
121
100
} ) ;
122
101
123
102
it ( 'shows the ascending icon if currentSortOrder is asc' , ( ) => {
124
- render (
125
- < MemoryRouter >
126
- < FileList { ...mockProps } />
127
- </ MemoryRouter > ,
128
- ) ;
103
+ render ( < FileList { ...mockProps } /> ) ;
129
104
const sortButton = screen . getByLabelText ( 'Sort by name' ) ;
130
105
const ascendingIcon = within ( sortButton ) . getByLabelText ( 'ascending sort icon' ) ;
131
106
expect ( ascendingIcon ) . toBeInTheDocument ( ) ;
132
107
} ) ;
133
108
134
109
it ( 'shows the descending icon if currentSortOrder is desc' , ( ) => {
135
- render (
136
- < MemoryRouter >
137
- < FileList { ...mockProps } currentSortOrder = "desc" />
138
- </ MemoryRouter > ,
139
- ) ;
110
+ render ( < FileList { ...mockProps } currentSortOrder = "desc" /> ) ;
140
111
const sortButton = screen . getByLabelText ( 'Sort by name' ) ;
141
112
const descendingIcon = within ( sortButton ) . getByLabelText ( 'descending sort icon' ) ;
142
113
expect ( descendingIcon ) . toBeInTheDocument ( ) ;
143
114
} ) ;
144
115
145
116
it ( 'shows the unsorted icon on headers that are not currently sorted' , ( ) => {
146
- render (
147
- < MemoryRouter >
148
- < FileList { ...mockProps } />
149
- </ MemoryRouter > ,
150
- ) ;
117
+ render ( < FileList { ...mockProps } /> ) ;
151
118
const sortButton = screen . getByLabelText ( 'Sort by last modified' ) ;
152
119
const unsortedIcon = within ( sortButton ) . getByLabelText ( 'unsorted icon' ) ;
153
120
expect ( unsortedIcon ) . toBeInTheDocument ( ) ;
154
121
} ) ;
155
122
156
123
it ( 'calls onSort with name for file name header' , ( ) => {
157
- render (
158
- < MemoryRouter >
159
- < FileList { ...mockProps } />
160
- </ MemoryRouter > ,
161
- ) ;
124
+ render ( < FileList { ...mockProps } /> ) ;
162
125
163
126
const sortButton = screen . getByLabelText ( 'Sort by name' ) ;
164
127
fireEvent . click ( sortButton ) ;
@@ -167,11 +130,7 @@ describe('FileList', () => {
167
130
} ) ;
168
131
169
132
it ( 'calls onDelete when a folder delete button is clicked' , ( ) => {
170
- render (
171
- < MemoryRouter >
172
- < FileList { ...mockProps } />
173
- </ MemoryRouter > ,
174
- ) ;
133
+ render ( < FileList { ...mockProps } /> ) ;
175
134
fireEvent . click ( screen . getAllByRole ( 'button' , { name : 'Delete' } ) [ 0 ] ) ;
176
135
expect ( mockProps . onDelete ) . toHaveBeenCalledWith ( {
177
136
...mockFiles [ 0 ] ,
@@ -180,21 +139,13 @@ describe('FileList', () => {
180
139
} ) ;
181
140
182
141
it ( 'calls onDelete when a file delete button is clicked' , ( ) => {
183
- render (
184
- < MemoryRouter >
185
- < FileList { ...mockProps } />
186
- </ MemoryRouter > ,
187
- ) ;
142
+ render ( < FileList { ...mockProps } /> ) ;
188
143
fireEvent . click ( screen . getAllByRole ( 'button' , { name : 'Delete' } ) [ 1 ] ) ;
189
144
expect ( mockProps . onDelete ) . toHaveBeenCalledWith ( { ...mockFiles [ 1 ] } ) ;
190
145
} ) ;
191
146
192
147
it ( 'renders no rows when no files are present' , ( ) => {
193
- render (
194
- < MemoryRouter >
195
- < FileList { ...mockProps } data = { [ ] } />
196
- </ MemoryRouter > ,
197
- ) ;
148
+ render ( < FileList { ...mockProps } data = { [ ] } /> ) ;
198
149
expect ( screen . getAllByRole ( 'row' ) . length ) . toBe ( 1 ) ;
199
150
} ) ;
200
151
@@ -207,11 +158,7 @@ describe('FileList', () => {
207
158
208
159
jest . useFakeTimers ( ) ;
209
160
210
- render (
211
- < MemoryRouter >
212
- < FileList { ...mockProps } />
213
- </ MemoryRouter > ,
214
- ) ;
161
+ render ( < FileList { ...mockProps } /> ) ;
215
162
216
163
const copyButton = screen . getAllByText ( 'Copy link' ) [ 0 ] ;
217
164
@@ -222,7 +169,7 @@ describe('FileList', () => {
222
169
) ;
223
170
224
171
await screen . findByText ( 'Copied!' ) ;
225
- jest . advanceTimersByTime ( 5000 ) ;
172
+ act ( ( ) => jest . advanceTimersByTime ( 5000 ) ) ;
226
173
await waitFor ( ( ) => expect ( screen . queryByText ( 'Copied!' ) ) . not . toBeInTheDocument ( ) ) ;
227
174
expect ( screen . getAllByText ( 'Copy link' ) ) . toHaveLength ( 2 ) ;
228
175
@@ -231,24 +178,18 @@ describe('FileList', () => {
231
178
232
179
it ( 'renders children if provided' , ( ) => {
233
180
render (
234
- < MemoryRouter >
235
- < FileList { ...mockProps } >
236
- < tr data-testid = "child-row" >
237
- < td > Child Row</ td >
238
- </ tr >
239
- </ FileList >
240
- </ MemoryRouter > ,
181
+ < FileList { ...mockProps } >
182
+ < tr data-testid = "child-row" >
183
+ < td > Child Row</ td >
184
+ </ tr >
185
+ </ FileList > ,
241
186
) ;
242
187
expect ( screen . getByTestId ( 'child-row' ) ) . toBeInTheDocument ( ) ;
243
188
} ) ;
244
189
245
190
it ( 'applies the highlight class when highlightItem matches the row name' , ( ) => {
246
191
const highlightProps = { ...mockProps , highlightItem : 'report.pdf' } ;
247
- render (
248
- < MemoryRouter >
249
- < FileList { ...highlightProps } />
250
- </ MemoryRouter > ,
251
- ) ;
192
+ render ( < FileList { ...highlightProps } /> ) ;
252
193
253
194
const cell = screen . getByText ( 'report.pdf' ) ;
254
195
// eslint-disable-next-line testing-library/no-node-access
0 commit comments