diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /comm/mail/components/im/test/browser/browser_removeMessage.js | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'comm/mail/components/im/test/browser/browser_removeMessage.js')
-rw-r--r-- | comm/mail/components/im/test/browser/browser_removeMessage.js | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/comm/mail/components/im/test/browser/browser_removeMessage.js b/comm/mail/components/im/test/browser/browser_removeMessage.js new file mode 100644 index 0000000000..0d95bb77b5 --- /dev/null +++ b/comm/mail/components/im/test/browser/browser_removeMessage.js @@ -0,0 +1,54 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +add_task(async function testRemove() { + const account = IMServices.accounts.createAccount( + "testuser", + "prpl-mochitest" + ); + account.password = "this is a test"; + account.connect(); + + await openChatTab(); + ok(BrowserTestUtils.is_visible(document.getElementById("chatPanel"))); + + const conversation = account.prplAccount.wrappedJSObject.makeMUC("collapse"); + const convNode = getConversationItem(conversation); + ok(convNode); + + conversation.writeMessage("mochitest", "hello world", { + incoming: true, + remoteId: "foo", + }); + + await EventUtils.synthesizeMouseAtCenter(convNode, {}); + + const chatConv = getChatConversationElement(conversation); + ok(chatConv, "found conversation"); + const browserDisplayed = BrowserTestUtils.waitForEvent( + chatConv.convBrowser, + "MessagesDisplayed" + ); + ok(BrowserTestUtils.is_visible(chatConv), "conversation visible"); + const messageParent = await getChatMessageParent(chatConv); + await browserDisplayed; + + is( + messageParent.querySelector(".message.incoming:nth-child(1) .ib-msg-txt") + .textContent, + "hello world", + "message added to conv" + ); + + const updateTextPromise = waitForNotification(conversation, "remove-text"); + conversation.removeMessage("foo"); + await updateTextPromise; + await TestUtils.waitForTick(); + + ok(!messageParent.querySelector(".message")); + + conversation.close(); + account.disconnect(); + IMServices.accounts.deleteAccount(account.id); +}); |