@@ -134,7 +134,10 @@ Hello ${mentionTag('jane.doe', 'example.com')}.`,
134
134
135
135
describe ( 'unwrapMentions - `username` mode' , ( ) => {
136
136
it ( 'removes wrapping mention tags' , ( ) => {
137
- assert . equal ( unwrapMentions ( textWithTags , 'username' ) , text ) ;
137
+ assert . equal (
138
+ unwrapMentions ( { text : textWithTags , mentionMode : 'username' } ) ,
139
+ text ,
140
+ ) ;
138
141
} ) ;
139
142
} ) ;
140
143
} ) ;
@@ -211,7 +214,88 @@ Hello ${mentionTag('jane.doe', 'example.com')}.`,
211
214
212
215
describe ( 'unwrapMentions - `display-name` mode' , ( ) => {
213
216
it ( 'removes wrapping mention tags' , ( ) => {
214
- assert . equal ( unwrapMentions ( textWithTags , 'display-name' ) , text ) ;
217
+ assert . equal (
218
+ unwrapMentions ( { text : textWithTags , mentionMode : 'display-name' } ) ,
219
+ text ,
220
+ ) ;
221
+ } ) ;
222
+ } ) ;
223
+ } ) ;
224
+
225
+ describe ( 'unwrapMentions' , ( ) => {
226
+ [
227
+ // Mention not found. Tag content kept
228
+ {
229
+ mentionMode : 'username' ,
230
+ mentions : [ ] ,
231
+ text : `Hello ${ mentionTag ( 'jane_doe' ) } ` ,
232
+ expectedResult : 'Hello @jane_doe' ,
233
+ } ,
234
+ {
235
+ mentionMode : 'display-name' ,
236
+ mentions : [ ] ,
237
+ text : `Hello ${ displayNameMentionTag ( 'Jane Doe' , 'jane_doe' ) } ` ,
238
+ expectedResult : 'Hello @[Jane Doe]' ,
239
+ } ,
240
+
241
+ // Mention found with a new username
242
+ {
243
+ mentionMode : 'username' ,
244
+ mentions : [
245
+ {
246
+ original_userid :
'acct:[email protected] ' ,
247
+ username : 'jane_edited' ,
248
+ } ,
249
+ ] ,
250
+ text : `Hello ${ mentionTag ( 'jane_doe' ) } ` ,
251
+ expectedResult : 'Hello @jane_edited' ,
252
+ } ,
253
+
254
+ // Mention found with a new display name
255
+ {
256
+ mentionMode : 'display-name' ,
257
+ mentions : [
258
+ {
259
+ original_userid :
'acct:[email protected] ' ,
260
+ display_name : 'My new name' ,
261
+ } ,
262
+ ] ,
263
+ text : `Hello ${ displayNameMentionTag ( 'Jane Doe' , 'jane_doe' ) } ` ,
264
+ expectedResult : 'Hello @[My new name]' ,
265
+ } ,
266
+
267
+ // Mention found with a now empty display name
268
+ {
269
+ mentionMode : 'display-name' ,
270
+ mentions : [
271
+ {
272
+ original_userid :
'acct:[email protected] ' ,
273
+ display_name : '' ,
274
+ } ,
275
+ ] ,
276
+ text : `Hello ${ displayNameMentionTag ( 'Jane Doe' , 'jane_doe' ) } ` ,
277
+ expectedResult : 'Hello @[Jane Doe]' ,
278
+ } ,
279
+
280
+ // data-userid not present
281
+ {
282
+ mentionMode : 'username' ,
283
+ mentions : [ ] ,
284
+ text : 'Hello <a data-hyp-mention="">@user_id_missing</a>' ,
285
+ expectedResult : 'Hello @user_id_missing' ,
286
+ } ,
287
+ {
288
+ mentionMode : 'display-name' ,
289
+ mentions : [ ] ,
290
+ text : 'Hello <a data-hyp-mention="">@User ID Missing</a>' ,
291
+ expectedResult : 'Hello @[User ID Missing]' ,
292
+ } ,
293
+ ] . forEach ( ( { text, mentionMode, mentions, expectedResult } ) => {
294
+ it ( 'replaces mention tag with current username or display name' , ( ) => {
295
+ assert . equal (
296
+ unwrapMentions ( { text, mentionMode, mentions } ) ,
297
+ expectedResult ,
298
+ ) ;
215
299
} ) ;
216
300
} ) ;
217
301
} ) ;
0 commit comments