Package org.fest.swing.fixture

Source Code of org.fest.swing.fixture.Bug133_scrollToItemToSelectInJTree_Test$MyWindow

/*
* Created on Apr 29, 2008
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright @2008-2013 the original author or authors.
*/
package org.fest.swing.fixture;

import static java.lang.String.valueOf;
import static org.fest.assertions.Assertions.assertThat;
import static org.fest.swing.edt.GuiActionRunner.execute;
import static org.fest.swing.test.core.CommonAssertions.failWhenExpectingException;
import static org.fest.swing.timing.Pause.pause;

import java.awt.Dimension;

import javax.swing.JScrollPane;
import javax.swing.JTree;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeModel;

import org.fest.swing.annotation.RunsInEDT;
import org.fest.swing.edt.GuiQuery;
import org.fest.swing.exception.LocationUnavailableException;
import org.fest.swing.test.core.RobotBasedTestCase;
import org.fest.swing.test.swing.TestTree;
import org.fest.swing.test.swing.TestWindow;
import org.junit.Test;

/**
* Test case for <a href="http://code.google.com/p/fest/issues/detail?id=133">Bug 133</a>.
*
* @author Alex Ruiz
*/
public class Bug133_scrollToItemToSelectInJTree_Test extends RobotBasedTestCase {
  private FrameFixture frame;
  private MyWindow window;

  @Override
  public void onSetUp() {
    window = MyWindow.createNew();
    frame = new FrameFixture(robot, window);
    frame.show();
  }

  @Test
  public void should_scroll_to_cell_when_selecting_by_path() {
    frame.tree("drag").selectPath("root/100/100.1");
    assertThat(selectionOf(window.dragTree)).isEqualTo("100.1");
  }

  @Test
  public void should_scroll_to_cell_when_selecting_by_row_index() {
    frame.tree("drag").selectRow(99);
    assertThat(selectionOf(window.dragTree)).isEqualTo("99");
  }

  @Test
  public void should_scroll_to_cells_when_dragging_and_dropping_by_path() {
    frame.tree("drag").drag("root/99");
    frame.tree("drop").drop("root/90");
    assertPathNotFoundInDragTree("root/99");
    pause(500);
    frame.tree("drop").selectPath("root/90/99");
  }

  @Test
  public void should_scroll_to_cells_when_dragging_and_dropping_by_row_index() {
    frame.tree("drag").drag(99);
    frame.tree("drop").drop(90);
    assertPathNotFoundInDragTree("root/99");
    pause(500);
    frame.tree("drop").selectPath("root/90/99");
  }

  private void assertPathNotFoundInDragTree(String path) {
    try {
      frame.tree("drag").selectPath(path);
      failWhenExpectingException();
    } catch (LocationUnavailableException e) {
      assertThat(e.getMessage()).contains(path);
    }
  }

  @RunsInEDT
  private static Object selectionOf(final JTree tree) {
    return execute(new GuiQuery<Object>() {
      @Override
      protected Object executeInEDT() {
        Object lastPathComponent = tree.getSelectionPath().getLastPathComponent();
        DefaultMutableTreeNode node = (DefaultMutableTreeNode) lastPathComponent;
        return node.getUserObject();
      }
    });
  }

  private static class MyWindow extends TestWindow {
    final JTree dragTree = new TestTree("drag");
    final JTree dropTree = new TestTree("drop");

    @RunsInEDT
    static MyWindow createNew() {
      return execute(new GuiQuery<MyWindow>() {
        @Override
        protected MyWindow executeInEDT() {
          return new MyWindow();
        }
      });
    }

    private MyWindow() {
      super(Bug133_scrollToItemToSelectInJTree_Test.class);
      dragTree.setModel(model());
      add(scrollPaneFor(dragTree));
      dropTree.setModel(model());
      add(scrollPaneFor(dropTree));
      setPreferredSize(new Dimension(300, 150));
    }

    private static JScrollPane scrollPaneFor(JTree tree) {
      JScrollPane scrollPane = new JScrollPane(tree);
      scrollPane.setPreferredSize(new Dimension(100, 100));
      return scrollPane;
    }

    private static DefaultTreeModel model() {
      return new DefaultTreeModel(rootWith100Nodes());
    }

    private static DefaultMutableTreeNode rootWith100Nodes() {
      DefaultMutableTreeNode root = new DefaultMutableTreeNode("root");
      for (int i = 0; i < 100; i++) {
        DefaultMutableTreeNode node = nodeWithIndex(i);
        if (i == 99) {
          node.add(new DefaultMutableTreeNode("100.1"));
        }
        root.add(node);
      }
      return root;
    }

    private static DefaultMutableTreeNode nodeWithIndex(int i) {
      return new DefaultMutableTreeNode(valueOf(i + 1));
    }
  }
}
TOP

Related Classes of org.fest.swing.fixture.Bug133_scrollToItemToSelectInJTree_Test$MyWindow

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.