Package org.rcpmail

Source Code of org.rcpmail.MessageCreateTest

/*******************************************************************************
* Copyright (c) 2008 Ketan Padegaonkar and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     Ketan Padegaonkar - initial API and implementation
*******************************************************************************/
package org.rcpmail;

import static org.eclipse.swtbot.swt.finder.matchers.WidgetMatcherFactory.widgetOfType;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

import org.eclipse.swt.widgets.Tree;
import org.eclipse.swtbot.eclipse.finder.SWTWorkbenchBot;
import org.eclipse.swtbot.swt.finder.exceptions.WidgetNotFoundException;
import org.eclipse.swtbot.swt.finder.junit.SWTBotJunit4ClassRunner;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTree;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem;
import org.hamcrest.Matcher;
import org.junit.Test;
import org.junit.runner.RunWith;

@RunWith(SWTBotJunit4ClassRunner.class)
public class MessageCreateTest {
  private static SWTWorkbenchBot  bot  = new SWTWorkbenchBot();

  @Test
  public void CreatesAnotherMessageWindow() throws Exception {
    assertEquals(2, viewCount());
    bot.menu("File").menu("Open Another Message View").click();

    assertEquals(3, viewCount());
  }

  @Test
  public void ClosesAllMessageWindows() throws Exception {
    bot.viewByTitle("Message").close();
    bot.viewByTitle("Message").close();

    assertEquals(1, viewCount());
  }

  @Test
  public void MyMailBoxContainsDrafts() throws Exception {
    SWTBotTree mailbox = mailBox();
    SWTBotTreeItem myMailBox = mailbox.expandNode("me@this.com");
    assertTrue(myMailBox.getNodes().contains("Drafts"));
  }

  // oops this fails
  @Test
  public void OtherMailBoxContainsDrafts() throws Exception {
    SWTBotTree mailbox = mailBox();
    SWTBotTreeItem otherMailBox = mailbox.expandNode("other@aol.com");
    assertTrue(otherMailBox.getNodes().contains("Drafts"));
  }

  private SWTBotTree mailBox() throws WidgetNotFoundException {
    // find the tree
    return bot.viewByTitle("Mailboxes").bot().tree();
  }

  private Matcher treeMatcher() {
    return widgetOfType(Tree.class);
  }

  private int viewCount() throws WidgetNotFoundException {
    return bot.views().size();
  }

}
TOP

Related Classes of org.rcpmail.MessageCreateTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.