Add test for missing character before a Matrix ID
This commit is contained in:
committed by
Tobias Fella
parent
30e24069bc
commit
923cc67b55
@@ -463,6 +463,9 @@ void TextHandlerTest::receiveRichPlainUrl()
|
|||||||
QString testOutputStringMxId = QStringLiteral(
|
QString testOutputStringMxId = QStringLiteral(
|
||||||
"<b><a href=\"https://matrix.to/#/@user:kde.org\">@user:kde.org</a></b> <b><a href=\"https://matrix.to/#/@user:kde.org\">Link already rich</a></b>");
|
"<b><a href=\"https://matrix.to/#/@user:kde.org\">@user:kde.org</a></b> <b><a href=\"https://matrix.to/#/@user:kde.org\">Link already rich</a></b>");
|
||||||
|
|
||||||
|
QString testInputStringMxIdWithPrefix = QStringLiteral("a @user:kde.org b");
|
||||||
|
QString testOutputStringMxIdWithPrefix = QStringLiteral("a <b><a href=\"https://matrix.to/#/@user:kde.org\">@user:kde.org</a></b> b");
|
||||||
|
|
||||||
TextHandler testTextHandler;
|
TextHandler testTextHandler;
|
||||||
testTextHandler.setData(testInputStringLink1);
|
testTextHandler.setData(testInputStringLink1);
|
||||||
|
|
||||||
@@ -476,6 +479,9 @@ void TextHandlerTest::receiveRichPlainUrl()
|
|||||||
|
|
||||||
testTextHandler.setData(testInputStringMxId);
|
testTextHandler.setData(testInputStringMxId);
|
||||||
QCOMPARE(testTextHandler.handleRecieveRichText(Qt::RichText), testOutputStringMxId);
|
QCOMPARE(testTextHandler.handleRecieveRichText(Qt::RichText), testOutputStringMxId);
|
||||||
|
|
||||||
|
testTextHandler.setData(testInputStringMxIdWithPrefix);
|
||||||
|
QCOMPARE(testTextHandler.handleRecieveRichText(Qt::RichText), testOutputStringMxIdWithPrefix);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TextHandlerTest::receiveRichEdited_data()
|
void TextHandlerTest::receiveRichEdited_data()
|
||||||
|
|||||||
Reference in New Issue
Block a user