summaryrefslogtreecommitdiffstats
path: root/comm/mail/test/browser/folder-display/browser_messageSize.js
blob: d62c3d808c00285f49d1aa8a21f45f5cd1f100a2 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/* 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/. */

/*
 * Test that the size column of in the message list is formatted properly (e.g.
   0.1 KB, 1.2 KB, 12.3 KB, 123 KB, and likewise for MB and GB).
 */

"use strict";

var {
  add_message_to_folder,
  be_in_folder,
  create_folder,
  create_message,
  get_about_3pane,
  mc,
  select_click_row,
} = ChromeUtils.import(
  "resource://testing-common/mozmill/FolderDisplayHelpers.jsm"
);

var folder;

add_setup(async function () {
  folder = await create_folder("MessageSizeA");

  // Create messages with sizes in the byte, KB, and MB ranges.
  let bytemsg = create_message({ body: { body: " " } });

  let kbstring = "x ".repeat(1024 / 2);
  let kbmsg = create_message({ body: { body: kbstring } });

  let mbstring = kbstring.repeat(1024);
  let mbmsg = create_message({ body: { body: mbstring } });

  await add_message_to_folder([folder], bytemsg);
  await add_message_to_folder([folder], kbmsg);
  await add_message_to_folder([folder], mbmsg);
});

async function _help_test_message_size(index, unit) {
  await be_in_folder(folder);

  // Select the nth message
  let curMessage = select_click_row(index);
  // Look at the size column's data
  let sizeStr = get_about_3pane().gDBView.cellTextForColumn(index, "sizeCol");

  // Note: this assumes that the numeric part of the size string is first
  let realSize = curMessage.messageSize;
  let abbrSize = parseFloat(sizeStr);

  if (isNaN(abbrSize)) {
    throw new Error("formatted size is not numeric: '" + sizeStr + "'");
  }
  if (Math.abs(realSize / Math.pow(1024, unit) - abbrSize) > 0.5) {
    throw new Error("size mismatch: '" + realSize + "' and '" + sizeStr + "'");
  }
}

add_task(async function test_byte_message_size() {
  await _help_test_message_size(0, 1);
});

add_task(async function test_kb_message_size() {
  await _help_test_message_size(1, 1);
});

add_task(async function test_mb_message_size() {
  await _help_test_message_size(2, 2);

  Assert.report(
    false,
    undefined,
    undefined,
    "Test ran to completion successfully"
  );
});