-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue-26016 make usermention case insensitive #591
Conversation
@sobitneupane would you please comment here so I can assign you for review? @nikhildewoolkar please link the fixed issue properly next time so that auto assignment runs. |
let testString = '@[email protected]'; | ||
expect(parser.replace(testString)).toBe('<mention-user>@[email protected]</mention-user>'); | ||
|
||
testString = '@[email protected]'; | ||
expect(parser.replace(testString)).toBe('<mention-user>@[email protected]</mention-user>'); | ||
|
||
testString = '@[email protected]'; | ||
expect(parser.replace(testString)).toBe('<mention-user>@[email protected]</mention-user>'); | ||
|
||
testString = '@[email protected]'; | ||
expect(parser.replace(testString)).toBe('<mention-user>@[email protected]</mention-user>'); | ||
|
||
testString = '@[email protected]'; | ||
expect(parser.replace('<mention-user>@[email protected]</mention-user>')).toBe(testString); | ||
|
||
testString = '@[email protected]'; | ||
expect(parser.replace('<mention-user>@[email protected]</mention-user>')).toBe(testString); | ||
|
||
testString = '@[email protected]'; | ||
expect(parser.replace('<mention-user>@[email protected]</mention-user>')).toBe(testString); | ||
|
||
testString = '@[email protected]'; | ||
expect(parser.replace('<mention-user>@[email protected]</mention-user>')).toBe(testString); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only test htmlToMarkdown with that method
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nikhildewoolkar
We do have test for user mention in "ExpensiMark-HTML-test.js"
expensify-common/__tests__/ExpensiMark-HTML-test.js
Lines 1103 to 1107 in 82bfcd1
test('Test for user mention with @[email protected]', () => { | |
const testString = '@[email protected]'; | |
const resultString = '<mention-user>@[email protected]</mention-user>'; | |
expect(parser.replace(testString)).toBe(resultString); | |
}); |
You can add other similar tests with capital letters in username and domain in testString.
We do not have tests for html to text for <mention-user>
as of now. You can add those tests in "/ExpensiMark-HTMLToText-test.js" file. Please go through existing tests in the file and add new tests accordingly.
Kindly review PR. I have made requested changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Woohoo 🎉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes look good and tests well.
cc: @neil-marcellini
Fixed Issues
$ GH_LINK
Expensify/App#26016
Tests
Open the app
Open any report
Write '@' to trigger mentions
Select any one mention, make any letter of mention as capital and send
Hover on mention to observe that tooltip doesn't display the right display name and avatar
For same mention as step 4 or select different mention and capitalize all letters and send
Observe that now it is not displayed as mention