summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/im/test/browser/browser_updateMessage.js
blob: 1aa74a9c645bd13bd04457be2cb4dc3c7ff33d63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* 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 testUpdate() {
  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, "update-text");
  conversation.updateMessage("mochitest", "bye world", {
    incoming: true,
    remoteId: "foo",
  });
  await updateTextPromise;
  await TestUtils.waitForTick();

  is(
    messageParent.querySelector(".message.incoming:nth-child(1) .ib-msg-txt")
      .textContent,
    "bye world",
    "message text updated"
  );

  conversation.close();
  account.disconnect();
  IMServices.accounts.deleteAccount(account.id);
});