All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.gwt.test.assertions.BaseSuggestBoxAssert Maven / Gradle / Ivy

There is a newer version: 0.63
Show newest version
package com.googlecode.gwt.test.assertions;

import com.google.gwt.user.client.ui.SuggestBox;

import static org.assertj.core.util.Objects.areEqual;

/**
 * Base class for {@link SuggestBox} assertions.
 *
 * @param  used to simulate "self types." For more information please read "Emulating 'self types' using Java Generics to simplify fluent API
 *            implementation."
 * @param  the type of the "actual" value.
 * @author Gael Lazzari
 */
public class BaseSuggestBoxAssert, A extends SuggestBox>
        extends BaseWidgetAssert {

    /**
     * Creates a new {@link BaseSuggestBoxAssert}.
     *
     * @param actual   the actual value to verify.
     * @param selfType the "self type."
     */
    protected BaseSuggestBoxAssert(A actual, Class selfType) {
        super(actual, selfType);
    }

    /**
     * Verifies that the actual {@link SuggestBox} is currently enabled.
     *
     * @return this assertion object.
     * @throws AssertionError if the actual {@link SuggestBox} is not enabled.
     * @see SuggestBox#getValueBox()
     */
    public S isEnabled() {
        if (!actual.getValueBox().isEnabled())
            failWithMessage("should be enabled");

        return myself;
    }

    /**
     * Verifies that the actual {@link SuggestBox} is not currently enabled.
     *
     * @return this assertion object.
     * @throws AssertionError if the actual {@link SuggestBox} is enabled.
     * @see SuggestBox#getValueBox()
     */
    public S isNotEnabled() {
        if (actual.getValueBox().isEnabled())
            failWithMessage("should not be enabled");

        return myself;
    }

    /**
     * Verifies that the actual {@link SuggestBox} limit is equal to the given one.
     *
     * @param expected the given limit to compare the actual limit to.
     * @return this assertion object.
     * @throws AssertionError if the actual limit is not equal to the given one.
     * @see SuggestBox#getLimit()
     */
    public S limitEquals(int expected) {
        int limit = actual.getLimit();
        if (areEqual(limit, expected))
            return myself;
        throw propertyComparisonFailed("limit", limit, expected);
    }

    /**
     * Verifies that the actual {@link SuggestBox} value is equal to the given one.
     *
     * @param expected the given value to compare the actual value to.
     * @return this assertion object.
     * @throws AssertionError if the actual value is not equal to the given one.
     * @see SuggestBox#getValue()
     */
    public S valueEquals(String expected) {
        String value = actual.getValue();
        if (areEqual(value, expected))
            return myself;
        throw propertyComparisonFailed("value", value, expected);
    }

}