blob: 69705d41432084f4d27852bc25f85fc671e4322c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
package com.vaadin.tests.components.abstractfield;
import com.vaadin.data.util.ObjectProperty;
import com.vaadin.data.validator.StringLengthValidator;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.Button;
import com.vaadin.ui.TextField;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Button.ClickListener;
import com.vaadin.ui.Window.Notification;
public class AbstractFieldCommitWithInvalidValues extends TestBase {
private TextField tf;
@Override
protected String getDescription() {
return "Commiting a field with invalid values should throw an exception";
}
@Override
protected Integer getTicketNumber() {
return 2532;
}
@Override
protected void setup() {
tf = new TextField("A field, must contain 1-2 chars",
new ObjectProperty("a"));
tf
.addValidator(new StringLengthValidator("Invalid length", 1, 2,
false));
tf.setWriteThrough(false);
tf.setRequired(true);
Button b = new Button("Commit", new ClickListener() {
public void buttonClick(ClickEvent event) {
try {
tf.commit();
if (tf.isValid()) {
getMainWindow().showNotification(
"OK! Form validated and no error was thrown",
Notification.TYPE_HUMANIZED_MESSAGE);
} else {
getMainWindow().showNotification(
"Form is invalid but no exception was thrown",
Notification.TYPE_ERROR_MESSAGE);
}
} catch (Exception e) {
if (tf.isValid()) {
getMainWindow().showNotification(
"Form is valid but an exception was thrown",
Notification.TYPE_ERROR_MESSAGE);
} else {
getMainWindow().showNotification(
"OK! Error was thrown for an invalid input",
Notification.TYPE_HUMANIZED_MESSAGE);
}
}
}
});
addComponent(tf);
addComponent(b);
}
}
|