@@ -6,10 +6,10 @@ import App from '../App';
6
6
import testUser from '../../testData/testUser.json' ;
7
7
8
8
// Mocking Google Analytics
9
- jest . mock ( 'ga-gtag' ) ;
9
+ vi . mock ( 'ga-gtag' ) ;
10
10
11
11
// Mocking scrollTo
12
- window . scrollTo = jest . fn ( ) ;
12
+ window . scrollTo = vi . fn ( ) ;
13
13
14
14
describe ( '<App />' , ( ) => {
15
15
let component ;
@@ -32,7 +32,14 @@ describe('<App />', () => {
32
32
} ) ;
33
33
34
34
// No other routes render components, and only one component rendered
35
- function testCorrectComponentInPath ( app , routeTag , componentName , path , history , auth = false ) {
35
+ function testCorrectComponentInPath (
36
+ app ,
37
+ routeTag ,
38
+ componentName ,
39
+ path ,
40
+ history ,
41
+ auth = false ,
42
+ ) {
36
43
let noPath = true ;
37
44
// Checks the right component loaded at path and other components are not
38
45
app . find ( routeTag ) . forEach ( ( route ) => {
@@ -63,31 +70,61 @@ describe('Unauthenticated Application routing', () => {
63
70
test ( 'loads the landing page at /search' , ( ) => {
64
71
history . push ( '/search' ) ;
65
72
mountApp . update ( ) ;
66
- testCorrectComponentInPath ( mountApp , 'Route' , 'SearchPage' , '/search' , history ) ;
73
+ testCorrectComponentInPath (
74
+ mountApp ,
75
+ 'Route' ,
76
+ 'SearchPage' ,
77
+ '/search' ,
78
+ history ,
79
+ ) ;
67
80
} ) ;
68
81
69
82
test ( 'loads the browse data page at /data-download' , ( ) => {
70
83
history . push ( '/data-download' ) ;
71
84
mountApp . update ( ) ;
72
- testCorrectComponentInPath ( mountApp , 'Route' , 'BrowseDataPage' , '/data-download' , history ) ;
85
+ testCorrectComponentInPath (
86
+ mountApp ,
87
+ 'Route' ,
88
+ 'BrowseDataPage' ,
89
+ '/data-download' ,
90
+ history ,
91
+ ) ;
73
92
} ) ;
74
93
75
94
test ( 'loads the browse data page at /code-repositories' , ( ) => {
76
95
history . push ( '/code-repositories' ) ;
77
96
mountApp . update ( ) ;
78
- testCorrectComponentInPath ( mountApp , 'Route' , 'CodeRepositories' , '/code-repositories' , history ) ;
97
+ testCorrectComponentInPath (
98
+ mountApp ,
99
+ 'Route' ,
100
+ 'CodeRepositories' ,
101
+ '/code-repositories' ,
102
+ history ,
103
+ ) ;
79
104
} ) ;
80
105
81
106
test ( 'loads the browse data page at /project-overview' , ( ) => {
82
107
history . push ( '/project-overview' ) ;
83
108
mountApp . update ( ) ;
84
- testCorrectComponentInPath ( mountApp , 'Route' , 'MainStudy' , '/project-overview' , history ) ;
109
+ testCorrectComponentInPath (
110
+ mountApp ,
111
+ 'Route' ,
112
+ 'MainStudy' ,
113
+ '/project-overview' ,
114
+ history ,
115
+ ) ;
85
116
} ) ;
86
117
87
118
test ( 'loads the linkout page at /external-links' , ( ) => {
88
119
history . push ( '/external-links' ) ;
89
120
mountApp . update ( ) ;
90
- testCorrectComponentInPath ( mountApp , 'Route' , 'LinkoutPage' , '/external-links' , history ) ;
121
+ testCorrectComponentInPath (
122
+ mountApp ,
123
+ 'Route' ,
124
+ 'LinkoutPage' ,
125
+ '/external-links' ,
126
+ history ,
127
+ ) ;
91
128
} ) ;
92
129
93
130
test ( 'loads the team page at /team' , ( ) => {
@@ -99,13 +136,25 @@ describe('Unauthenticated Application routing', () => {
99
136
test ( 'loads the contact page at /contact' , ( ) => {
100
137
history . push ( '/contact' ) ;
101
138
mountApp . update ( ) ;
102
- testCorrectComponentInPath ( mountApp , 'Route' , 'Contact' , '/contact' , history ) ;
139
+ testCorrectComponentInPath (
140
+ mountApp ,
141
+ 'Route' ,
142
+ 'Contact' ,
143
+ '/contact' ,
144
+ history ,
145
+ ) ;
103
146
} ) ;
104
147
105
148
test ( 'loads the error page at /error' , ( ) => {
106
149
history . push ( '/error' ) ;
107
150
mountApp . update ( ) ;
108
- testCorrectComponentInPath ( mountApp , 'Route' , 'ErrorPage' , '/error' , history ) ;
151
+ testCorrectComponentInPath (
152
+ mountApp ,
153
+ 'Route' ,
154
+ 'ErrorPage' ,
155
+ '/error' ,
156
+ history ,
157
+ ) ;
109
158
} ) ;
110
159
} ) ;
111
160
@@ -135,45 +184,89 @@ describe('Authenticated Application routing', () => {
135
184
} ) ;
136
185
137
186
test ( 'State should change to logged in on loginSuccess dispatch' , ( ) => {
138
- expect ( mountApp . find ( 'Provider' ) . props ( ) . store . getState ( ) . auth . isAuthenticated ) . toBeTruthy ( ) ;
187
+ expect (
188
+ mountApp . find ( 'Provider' ) . props ( ) . store . getState ( ) . auth . isAuthenticated ,
189
+ ) . toBeTruthy ( ) ;
139
190
} ) ;
140
191
141
192
test ( 'loads the search page at /search' , ( ) => {
142
193
history . push ( '/search' ) ;
143
194
// Update required to re-render the application
144
195
mountApp . update ( ) ;
145
- testCorrectComponentInPath ( mountApp , 'Route' , 'SearchPage' , '/search' , history , true ) ;
196
+ testCorrectComponentInPath (
197
+ mountApp ,
198
+ 'Route' ,
199
+ 'SearchPage' ,
200
+ '/search' ,
201
+ history ,
202
+ true ,
203
+ ) ;
146
204
} ) ;
147
205
148
206
test ( 'loads the QC reports at /qc-reports' , ( ) => {
149
207
history . push ( '/qc-reports' ) ;
150
208
// Update required to re-render the application
151
209
mountApp . update ( ) ;
152
- testCorrectComponentInPath ( mountApp , 'AuthWrapper' , 'DataStatusPage' , '/qc-data-monitor' , history , true ) ;
210
+ testCorrectComponentInPath (
211
+ mountApp ,
212
+ 'AuthWrapper' ,
213
+ 'DataStatusPage' ,
214
+ '/qc-data-monitor' ,
215
+ history ,
216
+ true ,
217
+ ) ;
153
218
} ) ;
154
219
155
220
test ( 'loads the methods page at /methods' , ( ) => {
156
221
history . push ( '/methods' ) ;
157
222
// Update required to re-render the application
158
223
mountApp . update ( ) ;
159
- testCorrectComponentInPath ( mountApp , 'AuthWrapper' , 'Methods' , '/methods' , history , true ) ;
224
+ testCorrectComponentInPath (
225
+ mountApp ,
226
+ 'AuthWrapper' ,
227
+ 'Methods' ,
228
+ '/methods' ,
229
+ history ,
230
+ true ,
231
+ ) ;
160
232
} ) ;
161
233
162
234
test ( 'loads the sample summary page at /summary' , ( ) => {
163
235
history . push ( '/summary' ) ;
164
236
mountApp . update ( ) ;
165
- testCorrectComponentInPath ( mountApp , 'AuthWrapper' , 'DataSummaryPage' , '/summary' , history , true ) ;
237
+ testCorrectComponentInPath (
238
+ mountApp ,
239
+ 'AuthWrapper' ,
240
+ 'DataSummaryPage' ,
241
+ '/summary' ,
242
+ history ,
243
+ true ,
244
+ ) ;
166
245
} ) ;
167
246
168
247
test ( 'loads the linkout page at /external-links' , ( ) => {
169
248
history . push ( '/external-links' ) ;
170
249
mountApp . update ( ) ;
171
- testCorrectComponentInPath ( mountApp , 'Route' , 'LinkoutPage' , '/external-links' , history , true ) ;
250
+ testCorrectComponentInPath (
251
+ mountApp ,
252
+ 'Route' ,
253
+ 'LinkoutPage' ,
254
+ '/external-links' ,
255
+ history ,
256
+ true ,
257
+ ) ;
172
258
} ) ;
173
259
174
260
test ( 'loads the team page at /team' , ( ) => {
175
261
history . push ( '/team' ) ;
176
262
mountApp . update ( ) ;
177
- testCorrectComponentInPath ( mountApp , 'Route' , 'TeamPage' , '/team' , history , true ) ;
263
+ testCorrectComponentInPath (
264
+ mountApp ,
265
+ 'Route' ,
266
+ 'TeamPage' ,
267
+ '/team' ,
268
+ history ,
269
+ true ,
270
+ ) ;
178
271
} ) ;
179
272
} ) ;
0 commit comments