Package com.google.gdt.eclipse.designer.core.model.widgets

Source Code of com.google.gdt.eclipse.designer.core.model.widgets.PopupPanelTest

/*******************************************************************************
* Copyright 2011 Google Inc. All Rights Reserved.
*
* 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
*
* 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.
*******************************************************************************/
package com.google.gdt.eclipse.designer.core.model.widgets;

import com.google.gdt.eclipse.designer.core.model.GwtModelTest;
import com.google.gdt.eclipse.designer.model.widgets.WidgetInfo;
import com.google.gdt.eclipse.designer.model.widgets.panels.PopupPanelInfo;

import org.eclipse.wb.draw2d.geometry.Rectangle;

import org.eclipse.swt.graphics.Image;

import static org.fest.assertions.Assertions.assertThat;

/**
* Test {@link PopupPanelInfo}.
*
* @author scheglov_ke
*/
public class PopupPanelTest extends GwtModelTest {
  ////////////////////////////////////////////////////////////////////////////
  //
  // Exit zone :-) XXX
  //
  ////////////////////////////////////////////////////////////////////////////
  public void _test_exit() throws Exception {
    System.exit(0);
  }

  ////////////////////////////////////////////////////////////////////////////
  //
  // Tests
  //
  ////////////////////////////////////////////////////////////////////////////
  public void test_filled() throws Exception {
    PopupPanelInfo panel =
        parseJavaInfo(
            "public class Test extends PopupPanel {",
            "  public Test() {",
            "    {",
            "      Button button = new Button();",
            "      setWidget(button);",
            "      button.setPixelSize(450, 300);",
            "    }",
            "  }",
            "}");
    assertHierarchy(
        "{this: com.google.gwt.user.client.ui.PopupPanel} {this} {/setWidget(button)/}",
        "  {new: com.google.gwt.user.client.ui.Button} {local-unique: button} {/new Button()/ /setWidget(button)/ /button.setPixelSize(450, 300)/}");
    WidgetInfo button = panel.getWidget();
    // do refresh()
    panel.refresh();
    assertFalse(panel.isEmpty());
    // check PopupPanel bounds
    {
      Rectangle bounds = panel.getBounds();
      assertThat(bounds.x).isEqualTo(0);
      assertThat(bounds.y).isEqualTo(0);
      assertThat(bounds.width).isEqualTo(450);
      assertThat(bounds.height).isEqualTo(304);
    }
    {
      Image image = panel.getImage();
      assertNotNull(image);
      assertThat(image.getBounds().width).isEqualTo(450);
      assertThat(image.getBounds().height).isEqualTo(304);
    }
    // check Button bounds
    {
      Rectangle bounds = button.getBounds();
      assertEquals(new Rectangle(0, 0, 450, 300), bounds);
    }
  }

  public void test_empty() throws Exception {
    PopupPanelInfo panel =
        parseJavaInfo(
            "// filler filler filler",
            "public class Test extends PopupPanel {",
            "  public Test() {",
            "  }",
            "}");
    assertHierarchy("{this: com.google.gwt.user.client.ui.PopupPanel} {this} {}");
    // do refresh()
    panel.refresh();
    assertTrue(panel.isEmpty());
    assertNull(panel.getWidget());
  }

  public void test_setSize() throws Exception {
    PopupPanelInfo panel =
        parseJavaInfo(
            "public class Test extends PopupPanel {",
            "  public Test() {",
            "    {",
            "      Button button = new Button();",
            "      setWidget(button);",
            "      button.setPixelSize(150, 100);",
            "    }",
            "  }",
            "}");
    panel.refresh();
    // check initial size
    {
      Rectangle bounds = panel.getBounds();
      assertThat(bounds.width).isGreaterThanOrEqualTo(150);
      assertThat(bounds.height).isGreaterThanOrEqualTo(100);
    }
    // set new size
    panel.getTopBoundsSupport().setSize(300, 200);
    panel.refresh();
    {
      Rectangle bounds = panel.getBounds();
      assertThat(bounds.width).isGreaterThanOrEqualTo(300);
      assertThat(bounds.height).isGreaterThanOrEqualTo(200);
    }
    assertEditor(
        "public class Test extends PopupPanel {",
        "  public Test() {",
        "    {",
        "      Button button = new Button();",
        "      setWidget(button);",
        "      button.setSize('300px', '196px');",
        "    }",
        "  }",
        "}");
  }
}
TOP

Related Classes of com.google.gdt.eclipse.designer.core.model.widgets.PopupPanelTest

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.