modules/controls/src/test/java/javafx/scene/control/skin/ToolBarSkinTest.java

Print this page
rev 9240 : 8076423: JEP 253: Prepare JavaFX UI Controls & CSS APIs for Modularization


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.javafx.scene.control.skin;
  27 
  28 import static org.junit.Assert.assertEquals;


  29 import javafx.geometry.Insets;
  30 import javafx.geometry.Orientation;
  31 import javafx.scene.control.Button;
  32 import javafx.scene.control.ToolBar;
  33 

  34 import org.junit.Before;
  35 import org.junit.Ignore;
  36 import org.junit.Test;
  37 
  38 /**
  39  * This fails with IllegalStateException because of the toolkit's check for the FX application thread
  40  */
  41 public class ToolBarSkinTest {
  42     private ToolBar toolbar;
  43     private ToolBarSkinMock skin;
  44 
  45     @Before public void setup() {
  46         toolbar = new ToolBar();
  47         toolbar.getItems().addAll(new Button("Cut"), new Button("Copy"));
  48         skin = new ToolBarSkinMock(toolbar);
  49         // Set some padding so that any places where padding was being
  50         // computed but wasn't expected will be caught.
  51         toolbar.setPadding(new Insets(10, 10, 10, 10));
  52         toolbar.setSkin(skin);
  53 
  54     }
  55 
  56     @Test public void horizontalMaxHeightTracksPreferred() {
  57         toolbar.setOrientation(Orientation.HORIZONTAL);
  58         toolbar.setPrefHeight(100);
  59         assertEquals(100, toolbar.maxHeight(-1), 0);
  60     }
  61 
  62     @Test public void verticalMaxWidthTracksPreferred() {
  63         toolbar.setOrientation(Orientation.VERTICAL);
  64         toolbar.setPrefWidth(100);
  65         assertEquals(100, toolbar.maxWidth(-1), 0);
  66     }
  67 
  68     public static final class ToolBarSkinMock extends ToolBarSkin {
  69         boolean propertyChanged = false;
  70         int propertyChangeCount = 0;
  71         public ToolBarSkinMock(ToolBar toolbar) {
  72             super(toolbar);
  73         }
  74         
  75         @Override protected void handleControlPropertyChanged(String p) {
  76             super.handleControlPropertyChanged(p);
  77             propertyChanged = true;
  78             propertyChangeCount++;

  79         }
  80     }
  81 }


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javafx.scene.control.skin;
  27 
  28 import static org.junit.Assert.assertEquals;
  29 
  30 import javafx.beans.value.ObservableValue;
  31 import javafx.geometry.Insets;
  32 import javafx.geometry.Orientation;
  33 import javafx.scene.control.Button;
  34 import javafx.scene.control.ToolBar;
  35 
  36 import javafx.scene.control.skin.ToolBarSkin;
  37 import org.junit.Before;

  38 import org.junit.Test;
  39 
  40 /**
  41  * This fails with IllegalStateException because of the toolkit's check for the FX application thread
  42  */
  43 public class ToolBarSkinTest {
  44     private ToolBar toolbar;
  45     private ToolBarSkinMock skin;
  46 
  47     @Before public void setup() {
  48         toolbar = new ToolBar();
  49         toolbar.getItems().addAll(new Button("Cut"), new Button("Copy"));
  50         skin = new ToolBarSkinMock(toolbar);
  51         // Set some padding so that any places where padding was being
  52         // computed but wasn't expected will be caught.
  53         toolbar.setPadding(new Insets(10, 10, 10, 10));
  54         toolbar.setSkin(skin);
  55 
  56     }
  57 
  58     @Test public void horizontalMaxHeightTracksPreferred() {
  59         toolbar.setOrientation(Orientation.HORIZONTAL);
  60         toolbar.setPrefHeight(100);
  61         assertEquals(100, toolbar.maxHeight(-1), 0);
  62     }
  63 
  64     @Test public void verticalMaxWidthTracksPreferred() {
  65         toolbar.setOrientation(Orientation.VERTICAL);
  66         toolbar.setPrefWidth(100);
  67         assertEquals(100, toolbar.maxWidth(-1), 0);
  68     }
  69 
  70     public static final class ToolBarSkinMock extends ToolBarSkin {
  71         boolean propertyChanged = false;
  72         int propertyChangeCount = 0;
  73         public ToolBarSkinMock(ToolBar toolbar) {
  74             super(toolbar);
  75         }
  76 
  77         public void addWatchedProperty(ObservableValue<?> p) {
  78             p.addListener(o -> {
  79                 propertyChanged = true;
  80                 propertyChangeCount++;
  81             });
  82         }
  83     }
  84 }