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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
|
/* 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 functionality in the message header, e.g. tagging, contact editing,
* the more button ...
*/
// make SOLO_TEST=message-header/test-message-header.js mozmill-one
var MODULE_NAME = 'test-message-header';
var RELATIVE_ROOT = '../shared-modules';
var MODULE_REQUIRES = ['folder-display-helpers', 'window-helpers',
'address-book-helpers', 'dom-helpers'];
var elib = {};
ChromeUtils.import('resource://mozmill/modules/elementslib.js', elib);
ChromeUtils.import("resource:///modules/mailServices.js");
ChromeUtils.import("resource://gre/modules/Services.jsm");
var folder, folderMore;
var gInterestingMessage;
function setupModule(module) {
let fdh = collector.getModule('folder-display-helpers');
fdh.installInto(module);
let wh = collector.getModule('window-helpers');
wh.installInto(module);
let abh = collector.getModule('address-book-helpers');
abh.installInto(module);
let dh = collector.getModule('dom-helpers');
dh.installInto(module);
folder = create_folder("MessageWindowA");
folderMore = create_folder("MesageHeaderMoreButton");
// create a message that has the interesting headers that commonly
// show up in the message header pane for testing
gInterestingMessage = create_message({cc: msgGen.makeNamesAndAddresses(20), // YYY
subject: "This is a really, really, really, really, really, really, really, really, long subject.",
clobberHeaders: {
"Newsgroups": "alt.test",
"Reply-To": "J. Doe <j.doe@momo.invalid>",
"Content-Base": "http://example.com/",
"Bcc": "Richard Roe <richard.roe@momo.invalid>"
}});
add_message_to_folder(folder, gInterestingMessage);
// create a message that has more to and cc addresses than visible in the
// tooltip text of the more button
let msgMore1 = create_message({to: msgGen.makeNamesAndAddresses(40),
cc: msgGen.makeNamesAndAddresses(40)});
add_message_to_folder(folderMore, msgMore1);
// create a message that has more to and cc addresses than visible in the
// header
let msgMore2 = create_message({to: msgGen.makeNamesAndAddresses(20),
cc: msgGen.makeNamesAndAddresses(20)});
add_message_to_folder(folderMore, msgMore2);
// create a message that has boring headers to be able to switch to and
// back from, to force the more button to collapse again.
let msg = create_message();
add_message_to_folder(folder, msg);
// Some of these tests critically depends on the window width, collapse
// everything that might be in the way
collapse_panes(mc.e("folderpane_splitter"), true);
collapse_panes(mc.e("tabmail-container"), true);
// Disable animations on the panel, so that we don't have to deal with
// async openings.
let contactPanel = mc.eid('editContactPanel').getNode();
contactPanel.setAttribute("animate", false);
}
function teardownModule(module) {
let contactPanel = mc.eid('editContactPanel').getNode();
contactPanel.removeAttribute("animate");
// Now restore the panes we hid in setupModule
collapse_panes(mc.e("folderpane_splitter"), false);
collapse_panes(mc.e("tabmail-container"), false);
}
/**
* Helper function that takes an array of mail-emailaddress elements and
* returns the last one in the list that is not hidden. Returns null if no
* such element exists.
*
* @param aAddrs an array of mail-emailaddress elements.
*/
function get_last_visible_address(aAddrs) {
for (let i = aAddrs.length - 1; i >= 0; --i)
if (!aAddrs[i].hidden)
return aAddrs[i];
return null;
}
function test_add_tag_with_really_long_label() {
be_in_folder(folder);
// select the first message, which will display it
let curMessage = select_click_row(0);
assert_selected_and_displayed(mc, curMessage);
let topColumn = mc.eid("expandedHeadersNameColumn").node;
let bottomColumn = mc.eid("expandedHeaders2NameColumn").node;
if (topColumn.clientWidth != bottomColumn.clientWidth)
throw new Error("Header columns have different widths! " +
topColumn.clientWidth + " != " + bottomColumn.clientWidth);
let defaultWidth = topColumn.clientWidth;
// Make the tags label really long.
let tagsLabel = mc.eid("expandedtagsLabel").node;
let oldTagsValue = tagsLabel.value;
tagsLabel.value = "taaaaaaaaaaaaaaaaaags";
if (topColumn.clientWidth != bottomColumn.clientWidth) {
tagsLabel.value = oldTagsValue;
throw new Error("Header columns have different widths! " +
topColumn.clientWidth + " != " + bottomColumn.clientWidth);
}
if (topColumn.clientWidth != defaultWidth) {
tagsLabel.value = oldTagsValue;
throw new Error("Header columns changed width! " +
topColumn.clientWidth + " != " + defaultWidth);
}
// Add the first tag, and make sure that the label are the same length.
mc.keypress(mc.eid("expandedHeadersNameColumn"), "1", {});
if (topColumn.clientWidth != bottomColumn.clientWidth) {
tagsLabel.value = oldTagsValue;
throw new Error("Header columns have different widths! " +
topColumn.clientWidth + " != " + bottomColumn.clientWidth);
}
if (topColumn.clientWidth == defaultWidth) {
tagsLabel.value = oldTagsValue;
throw new Error("Header columns didn't change width! " +
topColumn.clientWidth + " == " + defaultWidth);
}
// Remove the tag and put it back so that the a11y label gets regenerated
// with the normal value rather than "taaaaaaaags"
tagsLabel.value = oldTagsValue;
mc.keypress(mc.eid("expandedHeadersNameColumn"), "1", {});
mc.keypress(mc.eid("expandedHeadersNameColumn"), "1", {});
}
/**
* @param headerName used for pretty-printing in exceptions
* @param headerValueElement code to be eval()ed returning the DOM element
* with the data.
* @param expectedName code to be eval()ed returning the expected value of
* nsIAccessible.name for the DOM element in question
* @param expectedRole the expected value for nsIAccessible.role
*/
let headersToTest = [
{
headerName: "Subject",
headerValueElement: "mc.a('expandedsubjectBox', {class: 'headerValue'})",
expectedName: "mc.e('expandedsubjectLabel').value + ': ' + " +
"headerValueElement.textContent",
expectedRole: Ci.nsIAccessibleRole.ROLE_ENTRY
},
{
headerName: "Content-Base",
headerValueElement: "mc.a('expandedcontent-baseBox', {class: 'headerValue text-link headerValueUrl'})",
expectedName: "mc.e('expandedcontent-baseLabel').value + ': ' + " +
"headerValueElement.textContent",
expectedRole: Ci.nsIAccessibleRole.ROLE_ENTRY
},
{
headerName: "From",
headerValueElement: "mc.window.document.getAnonymousElementByAttribute(" +
"mc.a('expandedfromBox', {tagName: 'mail-emailaddress'})," +
"'class', 'emailDisplayButton')",
expectedName: "mc.e('expandedfromLabel').value + ': ' + " +
"headerValueElement.parentNode.getAttribute('fullAddress')",
expectedRole: Ci.nsIAccessibleRole.ROLE_ENTRY
},
{
headerName: "To",
headerValueElement: "mc.window.document.getAnonymousElementByAttribute(" +
"mc.a('expandedtoBox', {tagName: 'mail-emailaddress'})," +
"'class', 'emailDisplayButton')",
expectedName: "mc.e('expandedtoLabel').value + ': ' + " +
"headerValueElement.parentNode.getAttribute('fullAddress')",
expectedRole: Ci.nsIAccessibleRole.ROLE_ENTRY
},
{
headerName: "Cc",
headerValueElement: "mc.window.document.getAnonymousElementByAttribute(" +
"mc.a('expandedccBox', {tagName: 'mail-emailaddress'})," +
"'class', 'emailDisplayButton')",
expectedName: "mc.e('expandedccLabel').value + ': ' + " +
"headerValueElement.parentNode.getAttribute('fullAddress')",
expectedRole: Ci.nsIAccessibleRole.ROLE_ENTRY
},
{
headerName: "Bcc",
headerValueElement: "mc.window.document.getAnonymousElementByAttribute(" +
"mc.a('expandedbccBox', {tagName: 'mail-emailaddress'})," +
"'class', 'emailDisplayButton')",
expectedName: "mc.e('expandedbccLabel').value + ': ' + " +
"headerValueElement.parentNode.getAttribute('fullAddress')",
expectedRole: Ci.nsIAccessibleRole.ROLE_ENTRY
},
{
headerName: "Reply-To",
headerValueElement: "mc.window.document.getAnonymousElementByAttribute(" +
"mc.a('expandedreply-toBox', {tagName: 'mail-emailaddress'})," +
"'class', 'emailDisplayButton')",
expectedName: "mc.e('expandedreply-toLabel').value + ': ' + " +
"headerValueElement.parentNode.getAttribute('fullAddress')",
expectedRole: Ci.nsIAccessibleRole.ROLE_ENTRY
},
{
headerName: "Newsgroups",
headerValueElement: "mc.window.document.getAnonymousElementByAttribute(" +
"mc.a('expandednewsgroupsBox', {tagName: 'mail-newsgroup'})," +
"'class', 'newsgrouplabel')",
expectedName: "mc.e('expandednewsgroupsLabel').value + ': ' + " +
"headerValueElement.parentNode.parentNode.getAttribute('newsgroup')",
expectedRole: Ci.nsIAccessibleRole.ROLE_ENTRY
},
{
headerName: "Tags",
headerValueElement: "mc.a('expandedtagsBox', {class: 'tagvalue blc-FF0000'})",
expectedName: "mc.e('expandedtagsLabel').value + ': ' + " +
"headerValueElement.getAttribute('value')",
expectedRole: Ci.nsIAccessibleRole.ROLE_LABEL
}
];
// used to get the accessible object for a DOM node
let gAccService = Cc["@mozilla.org/accessibilityService;1"].
getService(Ci.nsIAccessibilityService);
/**
* Use the information from aHeaderInfo to verify that screenreaders will
* do the right thing with the given message header.
*
* @param {Object} aHeaderInfo Information about how to do the verification;
* See the comments above the headersToTest array
* for details.
*/
function verify_header_a11y(aHeaderInfo) {
// XXX Don't use eval here.
let headerValueElement = eval(aHeaderInfo.headerValueElement);
let headerAccessible = gAccService.getAccessibleFor(headerValueElement);
if (headerAccessible.role != aHeaderInfo.expectedRole) {
throw new Error("role for " + aHeaderInfo.headerName + " was " +
headerAccessible.role + "; should have been " +
aHeaderInfo.expectedRole);
}
// XXX Don't use eval here.
let expectedName = eval(aHeaderInfo.expectedName);
if (headerAccessible.name != expectedName) {
throw new Error("headerAccessible.name for " + aHeaderInfo.headerName +
" was '" + headerAccessible.name + "'; expected '" +
expectedName + "'");
}
}
/**
* Test the accessibility attributes of the various message headers.
*
* XXX This test used to be after test_more_button_with_many_recipients,
* however, there were some accessibility changes that it didn't seem to play
* nicely with, and the toggling of the "more" button on the cc field was
* causing this test to fail on the cc element. Tests with accessibilty
* hardware/software showed that the code was working fine. Therefore the test
* may be suspect.
*
* XXX The gInterestingMessage has no tags until after
* test_add_tag_with_really_long_label, so ensure it runs after that one.
*/
function test_a11y_attrs() {
be_in_folder(folder);
// Convert the SyntheticMessage gInterestingMessage into an actual
// nsIMsgDBHdr XPCOM message.
let hdr = folder.msgDatabase
.getMsgHdrForMessageID(gInterestingMessage.messageId);
// select and open the interesting message
let curMessage = select_click_row(mc.dbView
.findIndexOfMsgHdr(hdr, false));
// make sure it loads
assert_selected_and_displayed(mc, curMessage);
headersToTest.forEach(verify_header_a11y);
}
function test_more_button_with_many_recipients()
{
// Start on the interesting message.
let curMessage = select_click_row(0);
// make sure it loads
wait_for_message_display_completion(mc);
assert_selected_and_displayed(mc, curMessage);
// Check the mode of the header.
let headerBox = mc.eid("expandedHeaderView");
let previousHeaderMode = headerBox.node.getAttribute("show_header_mode");
// Click the "more" button.
let moreIndicator = mc.eid("expandedccBox");
moreIndicator = mc.window.document.getAnonymousElementByAttribute(
moreIndicator.node, "anonid", "more");
moreIndicator = new elementslib.Elem(moreIndicator);
mc.click(moreIndicator);
// Check the new mode of the header.
if (headerBox.node.getAttribute("show_header_mode") != "all")
throw new Error("Header Mode didn't change to 'all'! " + "old=" +
previousHeaderMode + ", new=" +
headerBox.node.getAttribute("show_header_mode"));
// Switch to the boring message, to force the more button to collapse.
curMessage = select_click_row(1);
// make sure it loads
wait_for_message_display_completion(mc);
assert_selected_and_displayed(mc, curMessage);
// Check the even newer mode of the header.
if (headerBox.node.getAttribute("show_header_mode") != previousHeaderMode)
throw new Error("Header Mode changed from " + previousHeaderMode +
" to " + headerBox.node.getAttribute("show_header_mode") +
" and didn't change back.");
}
/**
* Test that we can open up the inline contact editor when we
* click on the star.
*/
function test_clicking_star_opens_inline_contact_editor()
{
// Make sure we're in the right folder
be_in_folder(folder);
// Add a new message
let msg = create_message();
add_message_to_folder(folder, msg);
// Open the latest message
let curMessage = select_click_row(-1);
wait_for_message_display_completion(mc);
// Make sure the star is clicked, and we add the
// new contact to our address book
let toDescription = mc.a('expandedtoBox', {class: "headerValue"});
// Ensure that the inline contact editing panel is not open
let contactPanel = mc.eid('editContactPanel').getNode();
assert_not_equals(contactPanel.state, "open");
subtest_more_widget_star_click(toDescription);
// Ok, if we're here, then the star has been clicked, and
// the contact has been added to our AB.
let addrs = toDescription.getElementsByTagName('mail-emailaddress');
let lastAddr = get_last_visible_address(addrs);
// Click on the star, and ensure that the inline contact
// editing panel opens
mc.click(mc.aid(lastAddr, {class: 'emailStar'}));
mc.waitFor(() => contactPanel.state == "open",
"Timeout waiting for contactPanel to open; state=" +
contactPanel.state);
contactPanel.hidePopup();
}
/**
* Ensure that the specified element is visible/hidden
*
* @param id the id of the element to check
* @param visible true if the element should be visible, false otherwise
*/
function assert_shown(id, visible) {
if (mc.e(id).hidden == visible)
throw new Error('"' + id + '" should be ' +
(visible ? "visible" : "hidden"));
}
/**
* Test that clicking references context menu works properly.
*/
function test_msg_id_context_menu() {
Services.prefs.setBoolPref("mailnews.headers.showReferences", true);
// Add a new message
let msg = create_message({
clobberHeaders: {
"References": "<4880C986@example.com> <4880CAB2@example.com> <4880CC76@example.com>"
}});
add_message_to_folder(folder, msg);
be_in_folder(folder);
// Open the latest message.
let curMessage = select_click_row(-1);
// Right click to show the context menu.
mc.rightClick(mc.aid("expandedreferencesBox", {tagName: "mail-messageid"}));
wait_for_popup_to_open(mc.e("messageIdContext"));
// Ensure Open Message For ID is shown... and that Open Browser With Message-ID
// isn't shown.
assert_shown("messageIdContext-openMessageForMsgId", true);
assert_shown("messageIdContext-openBrowserWithMsgId", false);
close_popup(mc, mc.eid("messageIdContext"));
Services.prefs.setBoolPref("mailnews.headers.showReferences", false);
}
/**
* Test that if a contact belongs to a mailing list within their
* address book, then the inline contact editor will not allow
* the user to change what address book the contact belongs to.
* The editor should also show a message to explain why the
* contact cannot be moved.
*/
function test_address_book_switch_disabled_on_contact_in_mailing_list()
{
const MAILING_LIST_DIRNAME = "Some Mailing List";
const ADDRESS_BOOK_NAME = "Some Address Book";
// Add a new message
let msg = create_message();
add_message_to_folder(folder, msg);
// Make sure we're in the right folder
be_in_folder(folder);
// Open the latest message
let curMessage = select_click_row(-1);
// Make sure the star is clicked, and we add the
// new contact to our address book
let toDescription = mc.a('expandedtoBox', {class: "headerValue"});
// Ensure that the inline contact editing panel is not open
let contactPanel = mc.eid('editContactPanel').getNode();
assert_not_equals(contactPanel.state, "open");
subtest_more_widget_star_click(toDescription);
// Ok, if we're here, then the star has been clicked, and
// the contact has been added to our AB.
let addrs = toDescription.getElementsByTagName('mail-emailaddress');
let lastAddr = get_last_visible_address(addrs);
// Click on the star, and ensure that the inline contact
// editing panel opens
mc.click(mc.aid(lastAddr, {class: 'emailStar'}));
mc.waitFor(() => contactPanel.state == "open",
"Timeout waiting for contactPanel to open; state=" +
contactPanel.state);
let abDrop = mc.eid('editContactAddressBookList').getNode();
let warningMsg = mc.eid('contactMoveDisabledText').getNode();
// Ensure that the address book dropdown is not disabled
assert_true(!abDrop.disabled);
// We should not be displaying any warning
assert_true(warningMsg.collapsed);
// Now close the popup
contactPanel.hidePopup();
// For the contact that was added, create a mailing list in the
// address book it resides in, and then add that contact to the
// mailing list
addrs = toDescription.getElementsByTagName('mail-emailaddress');
let targetAddr = get_last_visible_address(addrs).getAttribute("emailAddress");
let cards = get_cards_in_all_address_books_for_email(targetAddr);
// There should be only one copy of this email address
// in the address books.
assert_equals(cards.length, 1);
let card = cards[0];
// Remove the card from any of the address books
ensure_no_card_exists(targetAddr);
// Add the card to a new address book, and insert it
// into a mailing list under that address book
let ab = create_mork_address_book(ADDRESS_BOOK_NAME);
ab.dropCard(card, false);
let ml = create_mailing_list(MAILING_LIST_DIRNAME);
ab.addMailList(ml);
// Now we have to retrieve the mailing list from
// the address book, in order for us to add and
// delete cards from it.
ml = get_mailing_list_from_address_book(ab, MAILING_LIST_DIRNAME);
ml.addressLists.appendElement(card);
// Re-open the inline contact editing panel
mc.click(mc.aid(lastAddr, {class: 'emailStar'}));
mc.waitFor(() => contactPanel.state == "open",
"Timeout waiting for contactPanel to open; state=" +
contactPanel.state);
// The dropdown should be disabled now
assert_true(abDrop.disabled);
// We should be displaying a warning
assert_true(!warningMsg.collapsed);
contactPanel.hidePopup();
// And if we remove the contact from the mailing list, the
// warning should be gone and the address book switching
// menu re-enabled.
let cardArray = Cc["@mozilla.org/array;1"]
.createInstance(Ci.nsIMutableArray);
cardArray.appendElement(card);
ml.deleteCards(cardArray);
// Re-open the inline contact editing panel
mc.click(mc.aid(lastAddr, {class: 'emailStar'}));
mc.waitFor(() => contactPanel.state == "open",
"Timeout waiting for contactPanel to open; state=" +
contactPanel.state);
// Ensure that the address book dropdown is not disabled
assert_true(!abDrop.disabled);
// We should not be displaying any warning
assert_true(warningMsg.collapsed);
contactPanel.hidePopup();
}
/**
* Test that clicking the adding an address node adds it to the address book.
*/
function test_add_contact_from_context_menu() {
// Click the contact to show the emailAddressPopup popup menu.
mc.click(mc.aid("expandedfromBox", {tagName: "mail-emailaddress"}));
var addToAddressBookItem = mc.window.document.getElementById("addToAddressBookItem");
if (addToAddressBookItem.hidden)
throw new Error("addToAddressBookItem is hidden for unknown contact");
var editContactItem = mc.window.document.getElementById("editContactItem");
if (!editContactItem.getAttribute("hidden"))
throw new Error("editContactItem is NOT hidden for unknown contact");
// Click the Add to Address Book context menu entry.
mc.click(mc.eid("addToAddressBookItem"));
// (for reasons unknown, the pop-up does not close itself)
close_popup(mc, mc.eid("emailAddressPopup"));
// Now click the contact again, the context menu should now show the
// Edit Contact menu instead.
mc.click(mc.aid("expandedfromBox", {tagName: "mail-emailaddress"}));
// (for reasons unknown, the pop-up does not close itself)
close_popup(mc, mc.eid("emailAddressPopup"));
addToAddressBookItem = mc.window.document.getElementById("addToAddressBookItem");
if (!addToAddressBookItem.hidden)
throw new Error("addToAddressBookItem is NOT hidden for known contact");
editContactItem = mc.window.document.getElementById("editContactItem");
if (editContactItem.hidden)
throw new Error("editContactItem is hidden for known contact");
}
function test_that_msg_without_date_clears_previous_headers() {
be_in_folder(folder);
// create a message: with descritive subject
let msg = create_message({subject: "this is without date" });
// ensure that this message doesn't have a Date header
delete msg.headers.Date;
// this will add the message to the end of the folder
add_message_to_folder(folder, msg);
// Not the first anymore. The timestamp is that of "NOW".
// select and open the LAST message
let curMessage = select_click_row(-1);
// make sure it loads
wait_for_message_display_completion(mc);
assert_selected_and_displayed(mc, curMessage);
// Since we didn't give create_message an argument that would create a
// Newsgroups header, the newsgroups <row> element should be collapsed.
// However, since the previously displayed message _did_ have such a header,
// certain bugs in the display of this header could cause the collapse
// never to have happened.
if (mc.e("expandednewsgroupsRow").collapsed != true) {
throw new Error("Expected <row> element for Newsgroups header to be " +
"collapsed, but it wasn't\n!");
}
}
/**
* Test various aspects of the (n more) widgetry.
*/
function test_more_widget() {
// generate message with 35 recips (effectively guarantees overflow for n=3)
be_in_folder(folder);
let msg = create_message({toCount: 35,
subject: "Many To addresses to test_more_widget" });
// add the message to the end of the folder
add_message_to_folder(folder, msg);
// select and open the injected message;
// It is at the second last message in the display list.
let curMessage = select_click_row(-2);
// make sure it loads
wait_for_message_display_completion(mc);
assert_selected_and_displayed(mc, curMessage);
// get the description element containing the addresses
let toDescription = mc.a('expandedtoBox', {class: "headerValue"});
subtest_more_widget_display(toDescription);
subtest_more_widget_click(toDescription);
subtest_more_widget_star_click(toDescription);
let showNLinesPref = Services.prefs.getIntPref("mailnews.headers.show_n_lines_before_more");
Services.prefs.clearUserPref("mailnews.headers.show_n_lines_before_more");
change_to_header_normal_mode();
be_in_folder(folderMore);
// first test a message with so many addresses that they don't fit in the
// more widget's tooltip text
msg = select_click_row(0);
wait_for_message_display_completion(mc);
assert_selected_and_displayed(mc, msg);
subtest_more_button_tooltip(msg);
// then test a message with so many addresses that they do fit in the
// more widget's tooltip text
msg = select_click_row(1);
wait_for_message_display_completion(mc);
assert_selected_and_displayed(mc, msg);
subtest_more_button_tooltip(msg);
Services.prefs.setIntPref("mailnews.headers.show_n_lines_before_more", showNLinesPref);
}
/**
* Test that all addresses are shown in show all header mode
*/
function test_show_all_header_mode() {
// generate message with 35 recips (effectively guarantees overflow for n=3)
be_in_folder(folder);
let msg = create_message({toCount: 35,
subject: "many To addresses for test_show_all_header_mode" });
// add the message to the end of the folder
add_message_to_folder(folder, msg);
// select and open the added message.
// It is at the second last position in the display list.
let curMessage = select_click_row(-2);
// make sure it loads
wait_for_message_display_completion(mc);
assert_selected_and_displayed(mc, curMessage);
// get the description element containing the addresses
let toDescription = mc.a('expandedtoBox', {class: "headerValue"});
change_to_header_normal_mode();
subtest_more_widget_display(toDescription);
subtest_change_to_all_header_mode(toDescription);
change_to_header_normal_mode();
subtest_more_widget_click(toDescription);
}
function change_to_header_normal_mode() {
// XXX Clicking on check menu items doesn't work in 1.4.1b1 (bug 474486)...
// mc.click(new elib.Elem(mc.menus.View.viewheadersmenu.viewnormalheaders));
// ... so call the function instead.
mc.window.MsgViewNormalHeaders();
mc.sleep(0);
}
function change_to_all_header_mode() {
// XXX Clicking on check menu items doesn't work in 1.4.1b1 (bug 474486)...
// mc.click(new elib.Elem(mc.menus.View.viewheadersmenu.viewallheaders));
// ... so call the function instead.
mc.window.MsgViewAllHeaders();
mc.sleep(0);
}
/**
* Get the number of lines in one of the multi-address fields
* @param node the description element containing the addresses
* @return the number of lines
*/
function help_get_num_lines(node) {
let style = mc.window.getComputedStyle(node, null);
return style.height / style.lineHeight;
}
/**
* Test that the "more" widget displays when it should.
* @param toDescription the description node for the "to" field
*/
function subtest_more_widget_display(toDescription) {
// test that the to element doesn't have more than max lines
let numLines = help_get_num_lines(toDescription);
// get maxline pref
let maxLines = Services.prefs.getIntPref(
"mailnews.headers.show_n_lines_before_more");
// allow for a 15% tolerance for any padding that may be applied
if (numLines < 0.85*maxLines || numLines > 1.15*maxLines) {
throw new Error("expected == " + maxLines + "lines; found " + numLines);
}
// test that we've got a (more) node and that it's expanded
let moreNode = mc.a('expandedtoBox', {class: 'moreIndicator'});
if (!moreNode) {
throw new Error("more node not found before activation");
}
if (moreNode.collapsed) {
throw new Error("more node was collapsed when it should have been visible");
}
}
/**
* Test that clicking the "more" widget displays all the addresses.
* @param toDescription the description node for the "to" field
*/
function subtest_more_widget_click(toDescription) {
let oldNumLines = help_get_num_lines(toDescription);
// activate (n more)
let moreNode = mc.aid('expandedtoBox', {class: 'moreIndicator'});
mc.click(moreNode);
// test that (n more) is gone
moreNode = mc.a('expandedtoBox', {class: 'moreIndicator'});
if (!moreNode.collapsed) {
throw new Error("more node should be collapsed after activation");
}
// test that we actually have more lines than we did before!
let newNumLines = help_get_num_lines(toDescription);
if (newNumLines <= oldNumLines) {
throw new Error("number of address lines present after more clicked = " +
newNumLines + "<= number of lines present beforehand = " + oldNumLines);
}
}
/**
* Test that changing to all header lines mode displays all the addresses.
* @param toDescription the description node for the "to" field
*/
function subtest_change_to_all_header_mode(toDescription) {
let oldNumLines = help_get_num_lines(toDescription);
change_to_all_header_mode();
// test that (n more) is gone
let moreNode = mc.a('expandedtoBox', {class: 'moreIndicator'});
if (!moreNode.collapsed) {
throw new Error("more node should be collapsed in all header lines mode");
}
// test that we actually have more lines than we did before!
let newNumLines = help_get_num_lines(toDescription);
if (newNumLines <= oldNumLines) {
throw new Error("number of address lines present in all header lines mode = " +
newNumLines + "<= number of lines present beforehand = " + oldNumLines);
}
}
/**
* Test that clicking the star updates the UI properly (see bug 563612).
* @param toDescription the description node for the "to" field
*/
function subtest_more_widget_star_click(toDescription) {
let addrs = toDescription.getElementsByTagName('mail-emailaddress');
let lastAddr = get_last_visible_address(addrs);
ensure_no_card_exists(lastAddr.getAttribute("emailAddress"));
// scroll to the bottom first so the address is in view
let view = mc.e('expandedHeaderView');
view.scrollTop = view.scrollHeight - view.clientHeight;
mc.click(mc.aid(lastAddr, {class: 'emailStar'}));
if (lastAddr.getAttribute('hascard') == 'false') {
throw new Error("address not updated after clicking star");
}
}
/**
* Make sure the (more) widget hidden pref actually works with a
* non-default value.
*/
function test_more_widget_with_maxlines_of_3(){
// set maxLines to 3
let maxLines = Services.prefs.setIntPref(
"mailnews.headers.show_n_lines_before_more", 3);
// call test_more_widget again
// We need to look at the second last article in the display list.
test_more_widget();
}
/**
* Make sure the (more) widget hidden pref also works with an
* "all" (0) non-default value.
*/
function test_more_widget_with_disabled_more(){
// set maxLines to 0
let maxLines = Services.prefs.setIntPref(
"mailnews.headers.show_n_lines_before_more", 0);
// generate message with 35 recips (effectively guarantees overflow for n=3)
be_in_folder(folder);
let msg = create_message({toCount: 35});
// add the message to the end of the folder
add_message_to_folder(folder, msg);
// select and open the last message
let curMessage = select_click_row(-1);
// make sure it loads
wait_for_message_display_completion(mc);
assert_selected_and_displayed(mc, curMessage);
// test that (n more) is gone
let moreNode = mc.a('expandedtoBox', {class: 'moreIndicator'});
if (!moreNode.collapsed) {
throw new Error("more node should be collapsed in n=0 case");
}
// get the description element containing the addresses
let toDescription = mc.a('expandedtoBox', {class: "headerValue"});
// test that we actually have more lines than the 3 we know are filled
let newNumLines = help_get_num_lines(toDescription);
if (newNumLines <= 3) {
throw new Error("number of address lines present in all addresses mode = " +
newNumLines + "<= number of expected minimum of 3 lines filled");
}
}
/**
* When the window gets too narrow the toolbar should float above the From
* line. Then they need to return back to the right when we get large
* enough again.
*/
function test_toolbar_collapse_and_expand() {
be_in_folder(folder);
// Select and open a message, in this case the last, for no particular reason.
let curMessage = select_click_row(-1);
try {
let expandedHeadersTopBox = mc.e("expandedHeadersTopBox");
let toolbar = mc.e("header-view-toolbar");
let mode = toolbar.getAttribute("mode");
// Get really big, so that we can figure out how big we actually want to be.
mc.window.resizeTo(1200, 600);
// spin the event loop once
mc.sleep(0);
let fromWidth = mc.e("expandedfromRow").clientWidth;
// This is the biggest we need to be.
let bigWidth = fromWidth + toolbar.clientWidth;
// Now change to icons-only mode for a much smaller toolbar.
toolbar.setAttribute("mode", "icons");
let smallWidth = fromWidth + toolbar.clientWidth;
// Re-set the mode to its original value.
toolbar.setAttribute("mode", mode);
// And resize to half way between the big and small widths, so that we
// can toggle the mode to force the overflow.
mc.window.resizeTo((bigWidth + smallWidth) / 2, 600);
// spin the event loop once
mc.sleep(0);
// Make sure we are too small to contain the buttons and from line, so
// we will be tall.
let tallHeight = expandedHeadersTopBox.clientHeight;
// Change from icons and text to just icons to make our toolbar
// narrower, and by extension our header shorter.
toolbar.setAttribute("mode", "icons");
let shortHeight = expandedHeadersTopBox.clientHeight;
if (shortHeight >= tallHeight)
throw new Error("The header box should have been made smaller!");
// Change back to icons and text to make our toolbar wider and our
// header taller again.
toolbar.setAttribute("mode", mode);
if (expandedHeadersTopBox.clientHeight != tallHeight)
throw new Error("The header box should have returned to its original size!");
// And make our window big to achieve the same effect as the just icons mode.
mc.window.resizeTo(1200, 600);
// spin the event loop once
mc.sleep(0);
mc.waitFor(() => expandedHeadersTopBox.clientHeight == shortHeight,
"The header box should have returned to its wide size!")
}
finally {
// restore window to nominal dimensions; saving was not working out
// See also: quick-filter-bar/test-display-issues.js if we change the
// default window size.
mc.window.resizeTo(1024, 768);
}
}
/**
* Test if the tooltip text of the more widget contains the correct addresses
* not shown in the header and the number of addresses also hidden in the
* tooltip text.
* @param aMsg the message for which the subtest should be performed
*/
function subtest_more_button_tooltip(aMsg) {
// check for more indicator number of the more widget
let addresses = {};
let fullNames = {};
let names = {};
let numAddrsCC = MailServices.headerParser.parseHeadersWithArray(
aMsg.ccList, addresses, names, fullNames);
let numAddrsTo = MailServices.headerParser.parseHeadersWithArray(
aMsg.recipients, addresses, names, fullNames);
let shownToAddrNum = get_number_of_addresses_in_header("expandedtoBox");
let shownCCAddrNum = get_number_of_addresses_in_header("expandedccBox");
// first check the number of addresses in the more widget
let hiddenCCAddrsNum = numAddrsCC - shownCCAddrNum;
let hiddenToAddrsNum = numAddrsTo - shownToAddrNum;
let moreNumberTo = get_number_of_more_button("expandedtoBox");
assert_not_equals(NaN, moreNumberTo);
assert_equals(hiddenToAddrsNum, moreNumberTo);
let moreNumberCC = get_number_of_more_button("expandedccBox");
assert_not_equals(NaN, moreNumberCC);
assert_equals(hiddenCCAddrsNum, moreNumberCC);
subtest_addresses_in_tooltip_text(aMsg.recipients, "expandedtoBox",
shownToAddrNum, hiddenToAddrsNum);
subtest_addresses_in_tooltip_text(aMsg.ccList, "expandedccBox",
shownCCAddrNum, hiddenCCAddrsNum);
}
/**
* Return the number of addresses visible in headerBox.
* @param aHeaderBox the id of the header box element for which to look for
* visible addresses
* @return the number of visible addresses in the header box
*/
function get_number_of_addresses_in_header(aHeaderBox) {
let headerBoxElement = mc.a(aHeaderBox, {class: "headerValue"});
let addrs = headerBoxElement.getElementsByTagName('mail-emailaddress');
let addrNum = 0;
for (let i = 0; i < addrs.length; i++) {
// check that the address is really visible and not just a cached
// element
if (element_visible_recursive(addrs[i]))
addrNum += 1;
}
return addrNum;
}
/**
* Return the number shown in the more widget.
* @param aHeaderBox the id of the header box element for which to look for
* the number in the more widget
* @return the number shown in the more widget
*/
function get_number_of_more_button(aHeaderBox) {
let moreNumber = 0;
let headerBoxElement = mc.e(aHeaderBox);
let moreIndicator = headerBoxElement.more;
if (element_visible_recursive(moreIndicator)) {
let moreText = moreIndicator.getAttribute("value");
let moreSplit = moreText.split(" ");
moreNumber = parseInt(moreSplit[0])
}
return moreNumber;
}
/**
* Check if hidden addresses are part of more tooltip text.
* @param aRecipients an array containing the addresses to look for in the
* header or the tooltip text
* @param aHeaderBox the id of the header box element for which to look
* for hidden addresses
* @param aShownAddrsNum the number of addresses shown in the header
* @param aHiddenAddrsNum the number of addresses not shown in the header
*/
function subtest_addresses_in_tooltip_text(aRecipients, aHeaderBox,
aShownAddrsNum, aHiddenAddrsNum) {
// check for more indicator number of the more widget
let addresses = {};
let fullNames = {};
let names = {};
let numAddresses = MailServices.headerParser.parseHeadersWithArray(
aRecipients, addresses, names, fullNames);
let headerBoxElement = mc.e(aHeaderBox);
let moreIndicator = headerBoxElement.more;
let tooltipText = moreIndicator.getAttribute("tooltiptext");
let maxTooltipAddrsNum = headerBoxElement.maxAddressesInMoreTooltipValue;
let addrsNumInTooltip = 0;
for (let i = aShownAddrsNum; (i < numAddresses) &&
(i < maxTooltipAddrsNum + aShownAddrsNum); i++) {
assert_true(tooltipText.includes(fullNames.value[i]), fullNames.value[i]);
addrsNumInTooltip += 1;
}
if (aHiddenAddrsNum < maxTooltipAddrsNum) {
assert_equals(aHiddenAddrsNum, addrsNumInTooltip);
}
else {
assert_equals(maxTooltipAddrsNum, addrsNumInTooltip);
// check if ", and X more" shows the correct number
let moreTooltipSplit = tooltipText.split(", ");
let words = mc.window.document
.getElementById("bundle_messenger")
.getString("headerMoreAddrsTooltip");
let remainingAddresses = numAddresses - aShownAddrsNum - maxTooltipAddrsNum;
let moreForm = mc.window.PluralForm.get(remainingAddresses, words)
.replace("#1", remainingAddresses);
assert_equals(moreForm, ", " + moreTooltipSplit[moreTooltipSplit.length - 1]);
}
}
|