/* * Copyright 2000-2016 Vaadin Ltd. * * 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. */ package com.vaadin.tests.tooltip; import com.vaadin.server.VaadinRequest; import com.vaadin.tests.components.AbstractReindeerTestUI; import com.vaadin.v7.data.validator.IntegerRangeValidator; import com.vaadin.v7.ui.TextField; /** * * UI test class for Tooltip with integer range validator. */ public class ValidatorCaptionTooltip extends AbstractReindeerTestUI { @Override protected void setup(VaadinRequest request) { TextField fieldWithError = new TextField(); int min = 0; int max = 100; String errorMessage = "Valid value is between " + min + " and " + max + ". {0} is not."; IntegerRangeValidator validator = new IntegerRangeValidator( errorMessage, min, max); fieldWithError.setValue("142"); fieldWithError.addValidator(validator); fieldWithError.setConverter(Integer.class); fieldWithError.setImmediate(true); TextField fieldWithoutError = new TextField(); fieldWithoutError.addValidator(validator); fieldWithoutError.setConverter(Integer.class); fieldWithoutError.setValue("42"); addComponent(fieldWithError); addComponent(fieldWithoutError); } @Override protected String getTestDescription() { return "Valid value is from 0 to 100.When the value is not valid. An error tooltip should appear"; } @Override protected Integer getTicketNumber() { return 14046; } }