/* * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package test.javafx.beans.property; import javafx.beans.InvalidationListener; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import test.com.sun.javafx.binding.ErrorLoggingUtiltity; import javafx.beans.binding.ObjectExpression; import javafx.beans.property.BooleanProperty; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleBooleanProperty; import javafx.beans.property.SimpleObjectProperty; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import static org.junit.Assert.*; public class BooleanPropertyTest { private static final Object NO_BEAN = null; private static final String NO_NAME_1 = null; private static final String NO_NAME_2 = ""; private static final boolean VALUE_1 = true; private static final boolean VALUE_2 = false; private static final boolean DEFAULT = false; private static final ErrorLoggingUtiltity log = new ErrorLoggingUtiltity(); @BeforeClass public static void setUpClass() { log.start(); } @AfterClass public static void tearDownClass() { log.stop(); } @Test public void testSetValue_Null() { final BooleanProperty p = new SimpleBooleanProperty(VALUE_1); p.setValue(null); assertEquals(DEFAULT, p.get()); log.checkFine(NullPointerException.class); } @Test public void testBindBidirectional() { final BooleanProperty p1 = new SimpleBooleanProperty(VALUE_2); final BooleanProperty p2 = new SimpleBooleanProperty(VALUE_1); p1.bindBidirectional(p2); assertEquals(VALUE_1, p1.get()); assertEquals(VALUE_1, p2.get()); p1.set(VALUE_2); assertEquals(VALUE_2, p1.get()); assertEquals(VALUE_2, p2.get()); p2.set(VALUE_1); assertEquals(VALUE_1, p1.get()); assertEquals(VALUE_1, p2.get()); p1.unbindBidirectional(p2); p1.set(VALUE_2); assertEquals(VALUE_2, p1.get()); assertEquals(VALUE_1, p2.get()); p1.set(VALUE_1); p2.set(VALUE_2); assertEquals(VALUE_1, p1.get()); assertEquals(VALUE_2, p2.get()); } @Test public void testToString() { final BooleanProperty v0 = new BooleanPropertyStub(NO_BEAN, NO_NAME_1); assertEquals("BooleanProperty [value: " + DEFAULT + "]", v0.toString()); final BooleanProperty v1 = new BooleanPropertyStub(NO_BEAN, NO_NAME_2); assertEquals("BooleanProperty [value: " + DEFAULT + "]", v1.toString()); final Object bean = new Object(); final String name = "My name"; final BooleanProperty v2 = new BooleanPropertyStub(bean, name); assertEquals("BooleanProperty [bean: " + bean.toString() + ", name: My name, value: " + DEFAULT + "]", v2.toString()); v2.set(VALUE_1); assertEquals("BooleanProperty [bean: " + bean.toString() + ", name: My name, value: " + VALUE_1 + "]", v2.toString()); final BooleanProperty v3 = new BooleanPropertyStub(bean, NO_NAME_1); assertEquals("BooleanProperty [bean: " + bean.toString() + ", value: " + DEFAULT + "]", v3.toString()); v3.set(VALUE_1); assertEquals("BooleanProperty [bean: " + bean.toString() + ", value: " + VALUE_1 + "]", v3.toString()); final BooleanProperty v4 = new BooleanPropertyStub(bean, NO_NAME_2); assertEquals("BooleanProperty [bean: " + bean.toString() + ", value: " + DEFAULT + "]", v4.toString()); v4.set(VALUE_1); assertEquals("BooleanProperty [bean: " + bean.toString() + ", value: " + VALUE_1 + "]", v4.toString()); final BooleanProperty v5 = new BooleanPropertyStub(NO_BEAN, name); assertEquals("BooleanProperty [name: My name, value: " + DEFAULT + "]", v5.toString()); v5.set(VALUE_1); assertEquals("BooleanProperty [name: My name, value: " + VALUE_1 + "]", v5.toString()); } @Test public void testAsObject() { final BooleanProperty valueModel = new SimpleBooleanProperty(); final ObjectProperty exp = valueModel.asObject(); assertEquals(Boolean.FALSE, exp.get()); valueModel.set(true); assertEquals(Boolean.TRUE, exp.get()); valueModel.set(false); assertEquals(Boolean.FALSE, exp.get()); exp.set(Boolean.TRUE); assertEquals(true, valueModel.get()); } @Test public void testObjectToBoolean() { final ObjectProperty valueModel = new SimpleObjectProperty(true); final BooleanProperty exp = BooleanProperty.booleanProperty(valueModel); assertEquals(true, exp.get()); valueModel.set(true); assertEquals(true, exp.get()); valueModel.set(false); assertEquals(false, exp.get()); exp.set(true); assertEquals(true, valueModel.get()); } private class BooleanPropertyStub extends BooleanProperty { private final Object bean; private final String name; private boolean value; private BooleanPropertyStub(Object bean, String name) { this.bean = bean; this.name = name; } @Override public Object getBean() { return bean; } @Override public String getName() { return name; } @Override public boolean get() { return value; } @Override public void set(boolean value) { this.value = value; } @Override public void bind(ObservableValue observable) { fail("Not in use"); } @Override public void unbind() { fail("Not in use"); } @Override public boolean isBound() { fail("Not in use"); return false; } @Override public void addListener(ChangeListener listener) { fail("Not in use"); } @Override public void removeListener(ChangeListener listener) { fail("Not in use"); } @Override public void addListener(InvalidationListener listener) { fail("Not in use"); } @Override public void removeListener(InvalidationListener listener) { fail("Not in use"); } } }