Package org.fest.swing.fixture

Source Code of org.fest.swing.fixture.Containers_Test$MyPanel

/*
* Created on Apr 28, 2009
*
* 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 @2009-2013 the original author or authors.
*/
package org.fest.swing.fixture;

import static java.awt.GridBagConstraints.REMAINDER;
import static javax.swing.BorderFactory.createEmptyBorder;
import static org.fest.assertions.Assertions.assertThat;
import static org.fest.swing.edt.GuiActionRunner.execute;

import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;

import javax.swing.Box;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;

import org.fest.swing.edt.GuiQuery;
import org.junit.Before;
import org.junit.Test;

/**
* Tests for {@link Containers}.
*
* @author Alex Ruiz
*/
public class Containers_Test {
  private MyPanel panel;

  @Before
  public void setUp() {
    panel = execute(new GuiQuery<MyPanel>() {
      @Override
      protected MyPanel executeInEDT() {
        return new MyPanel();
      }
    });
  }

  @Test
  public void should_show_container_in_JFrame() {
    FrameFixture frameFixture = null;
    try {
      frameFixture = Containers.showInFrame(panel);
      frameFixture.requireShowing();
      assertThat(frameFixture.target()).isNotNull();
    } finally {
      cleanUp(frameFixture);
    }
  }

  @Test
  public void should_place_Container_in_JFrame_without_showing() {
    FrameFixture frameFixture = null;
    try {
      frameFixture = Containers.frameFixtureFor(panel);
      frameFixture.requireNotVisible();
      assertThat(frameFixture.target()).isNotNull();
    } finally {
      cleanUp(frameFixture);
    }
  }

  private void cleanUp(FrameFixture frameFixture) {
    if (frameFixture != null) {
      frameFixture.cleanUp();
    }
  }

  private static class MyPanel extends JPanel {
    private final GridBagConstraints c = new GridBagConstraints();

    MyPanel() {
      setLayout(new GridBagLayout());
      setBorder(createEmptyBorder(10, 10, 10, 10));
      c.gridx = c.gridy = 0;
      addUsernameInput();
      nextLine();
      addPasswordInput();
    }

    private void addUsernameInput() {
      addInput("Username:", new JTextField(20));
    }

    private void addPasswordInput() {
      addInput("Password:", new JPasswordField(20));
    }

    private void addInput(String label, JComponent input) {
      add(new JLabel(label), c);
      c.gridx++;
      add(Box.createHorizontalStrut(10), c);
      c.gridx++;
      c.gridwidth = REMAINDER;
      add(input, c);
    }

    private void nextLine() {
      c.gridx = 0;
      c.gridwidth = 1;
      c.gridy++;
    }
  }
}
TOP

Related Classes of org.fest.swing.fixture.Containers_Test$MyPanel

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.