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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
|
package com.vaadin.data;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
import java.util.Locale;
import java.util.Objects;
import java.util.concurrent.atomic.AtomicInteger;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import com.vaadin.data.Binder.Binding;
import com.vaadin.data.util.converter.StringToIntegerConverter;
import com.vaadin.data.validator.NotEmptyValidator;
import com.vaadin.server.ErrorMessage;
import com.vaadin.tests.data.bean.Person;
import com.vaadin.tests.data.bean.Sex;
import com.vaadin.ui.TextField;
public class BinderTest extends BinderTestBase<Binder<Person>, Person> {
@Before
public void setUp() {
binder = new Binder<>();
item = new Person();
item.setFirstName("Johannes");
item.setAge(32);
}
@Test
public void bindNullBean_noBeanPresent() {
binder.setBean(item);
assertTrue(binder.getBean().isPresent());
binder.setBean(null);
assertFalse(binder.getBean().isPresent());
}
@Test(expected = NullPointerException.class)
public void bindNullField_throws() {
binder.forField(null);
}
@Test(expected = NullPointerException.class)
public void bindNullGetter_throws() {
binder.bind(nameField, null, Person::setFirstName);
}
@Test
public void fieldBound_bindItem_fieldValueUpdated() {
binder.forField(nameField).bind(Person::getFirstName,
Person::setFirstName);
binder.setBean(item);
assertEquals("Johannes", nameField.getValue());
}
@Test
public void fieldBoundWithShortcut_bindBean_fieldValueUpdated() {
bindName();
assertEquals("Johannes", nameField.getValue());
}
@Test
public void beanBound_updateFieldValue_beanValueUpdated() {
binder.setBean(item);
binder.bind(nameField, Person::getFirstName, Person::setFirstName);
assertEquals("Johannes", nameField.getValue());
nameField.setValue("Artur");
assertEquals("Artur", item.getFirstName());
}
@Test
public void bound_getBean_returnsBoundBean() {
assertFalse(binder.getBean().isPresent());
binder.setBean(item);
assertSame(item, binder.getBean().get());
}
@Test
public void unbound_getBean_returnsNothing() {
binder.setBean(item);
binder.removeBean();
assertFalse(binder.getBean().isPresent());
}
@Test
public void bound_changeFieldValue_beanValueUpdated() {
bindName();
nameField.setValue("Henri");
assertEquals("Henri", item.getFirstName());
}
@Test
public void unbound_changeFieldValue_beanValueNotUpdated() {
bindName();
nameField.setValue("Henri");
binder.removeBean();
nameField.setValue("Aleksi");
assertEquals("Henri", item.getFirstName());
}
@Test
public void bindNullSetter_valueChangesIgnored() {
binder.bind(nameField, Person::getFirstName, null);
binder.setBean(item);
nameField.setValue("Artur");
assertEquals(item.getFirstName(), "Johannes");
}
@Test
public void bound_bindToAnotherBean_stopsUpdatingOriginal() {
bindName();
nameField.setValue("Leif");
Person p2 = new Person();
p2.setFirstName("Marlon");
binder.setBean(p2);
assertEquals("Marlon", nameField.getValue());
assertEquals("Leif", item.getFirstName());
assertSame(p2, binder.getBean().get());
nameField.setValue("Ilia");
assertEquals("Ilia", p2.getFirstName());
assertEquals("Leif", item.getFirstName());
}
@Test
public void save_unbound_noChanges() throws ValidationException {
Binder<Person> binder = new Binder<>();
Person person = new Person();
int age = 10;
person.setAge(age);
binder.writeBean(person);
Assert.assertEquals(age, person.getAge());
}
@Test
public void save_bound_beanIsUpdated() throws ValidationException {
Binder<Person> binder = new Binder<>();
binder.bind(nameField, Person::getFirstName, Person::setFirstName);
Person person = new Person();
String fieldValue = "bar";
nameField.setValue(fieldValue);
person.setFirstName("foo");
binder.writeBean(person);
Assert.assertEquals(fieldValue, person.getFirstName());
}
@Test
public void load_bound_fieldValueIsUpdated() {
binder.bind(nameField, Person::getFirstName, Person::setFirstName);
Person person = new Person();
String name = "bar";
person.setFirstName(name);
binder.readBean(person);
Assert.assertEquals(name, nameField.getValue());
}
@Test
public void load_unbound_noChanges() {
nameField.setValue("");
Person person = new Person();
String name = "bar";
person.setFirstName(name);
binder.readBean(person);
Assert.assertEquals("", nameField.getValue());
}
protected void bindName() {
binder.bind(nameField, Person::getFirstName, Person::setFirstName);
binder.setBean(item);
}
@Test
public void binding_with_null_representation() {
String nullRepresentation = "Some arbitrary text";
String realName = "John";
Person namelessPerson = new Person(null, "Doe", "", 25, Sex.UNKNOWN,
null);
binder.forField(nameField).withNullRepresentation(nullRepresentation)
.bind(Person::getFirstName, Person::setFirstName);
// Bind a person with null value and check that null representation is
// used
binder.setBean(namelessPerson);
Assert.assertEquals(
"Null value from bean was not converted to explicit null representation",
nullRepresentation, nameField.getValue());
// Verify that changes are applied to bean
nameField.setValue(realName);
Assert.assertEquals(
"Bean was not correctly updated from a change in the field",
realName, namelessPerson.getFirstName());
// Verify conversion back to null
nameField.setValue(nullRepresentation);
Assert.assertEquals(
"Two-way null representation did not change value back to null",
null, namelessPerson.getFirstName());
}
@Test
public void binding_with_default_null_representation() {
TextField nullTextField = new TextField() {
@Override
public String getEmptyValue() {
return "null";
}
};
Person namelessPerson = new Person(null, "Doe", "", 25, Sex.UNKNOWN,
null);
binder.bind(nullTextField, Person::getFirstName, Person::setFirstName);
binder.setBean(namelessPerson);
Assert.assertTrue(nullTextField.isEmpty());
Assert.assertEquals(null, namelessPerson.getFirstName());
// Change value, see that textfield is not empty and bean is updated.
nullTextField.setValue("");
Assert.assertFalse(nullTextField.isEmpty());
Assert.assertEquals("First name of person was not properly updated", "",
namelessPerson.getFirstName());
// Verify that default null representation does not map back to null
nullTextField.setValue("null");
Assert.assertTrue(nullTextField.isEmpty());
Assert.assertEquals("Default one-way null representation failed.",
"null", namelessPerson.getFirstName());
}
@Test
public void binding_with_null_representation_value_not_null() {
String nullRepresentation = "Some arbitrary text";
binder.forField(nameField).withNullRepresentation(nullRepresentation)
.bind(Person::getFirstName, Person::setFirstName);
Assert.assertFalse("First name in item should not be null",
Objects.isNull(item.getFirstName()));
binder.setBean(item);
Assert.assertEquals("Field value was not set correctly",
item.getFirstName(), nameField.getValue());
}
@Test
public void withConverter_disablesDefaulNullRepresentation() {
Integer customNullConverter = 0;
binder.forField(ageField).withNullRepresentation("foo")
.withConverter(new StringToIntegerConverter(""))
.withConverter(age -> age,
age -> age == null ? customNullConverter : age)
.bind(Person::getSalary, Person::setSalary);
binder.setBean(item);
Assert.assertEquals(customNullConverter.toString(),
ageField.getValue());
Integer salary = 11;
ageField.setValue(salary.toString());
Assert.assertEquals(11, salary.intValue());
}
@Test
public void beanBinder_nullRepresentationIsNotDisabled() {
BeanBinder<Person> binder = new BeanBinder<>(Person.class);
binder.forField(nameField).bind("firstName");
Person person = new Person();
binder.setBean(person);
Assert.assertEquals("", nameField.getValue());
}
@Test
public void beanBinder_withConverter_nullRepresentationIsNotDisabled() {
String customNullPointerRepresentation = "foo";
BeanBinder<Person> binder = new BeanBinder<>(Person.class);
binder.forField(nameField)
.withConverter(value -> value, value -> value == null
? customNullPointerRepresentation : value)
.bind("firstName");
Person person = new Person();
binder.setBean(person);
Assert.assertEquals(customNullPointerRepresentation,
nameField.getValue());
}
@Test
public void withValidator_doesNotDisablesDefaulNullRepresentation() {
String nullRepresentation = "foo";
binder.forField(nameField).withNullRepresentation(nullRepresentation)
.withValidator(new NotEmptyValidator<>(""))
.bind(Person::getFirstName, Person::setFirstName);
item.setFirstName(null);
binder.setBean(item);
Assert.assertEquals(nullRepresentation, nameField.getValue());
String newValue = "bar";
nameField.setValue(newValue);
Assert.assertEquals(newValue, item.getFirstName());
}
@Test
public void setRequired_withErrorMessage_fieldGetsRequiredIndicatorAndValidator() {
TextField textField = new TextField();
Assert.assertFalse(textField.isRequiredIndicatorVisible());
Binding<Person, String, String> binding = binder.forField(textField);
Assert.assertFalse(textField.isRequiredIndicatorVisible());
binding.setRequired("foobar");
Assert.assertTrue(textField.isRequiredIndicatorVisible());
binding.bind(Person::getFirstName, Person::setFirstName);
binder.setBean(item);
Assert.assertNull(textField.getErrorMessage());
textField.setValue(textField.getEmptyValue());
ErrorMessage errorMessage = textField.getErrorMessage();
Assert.assertNotNull(errorMessage);
Assert.assertEquals("foobar", errorMessage.getFormattedHtmlMessage());
textField.setValue("value");
Assert.assertNull(textField.getErrorMessage());
Assert.assertTrue(textField.isRequiredIndicatorVisible());
}
@Test
public void setRequired_withErrorMessageProvider_fieldGetsRequiredIndicatorAndValidator() {
TextField textField = new TextField();
textField.setLocale(Locale.CANADA);
Assert.assertFalse(textField.isRequiredIndicatorVisible());
Binding<Person, String, String> binding = binder.forField(textField);
Assert.assertFalse(textField.isRequiredIndicatorVisible());
AtomicInteger invokes = new AtomicInteger();
binding.setRequired(context -> {
invokes.incrementAndGet();
Assert.assertSame(Locale.CANADA, context.getLocale().get());
return "foobar";
});
Assert.assertTrue(textField.isRequiredIndicatorVisible());
binding.bind(Person::getFirstName, Person::setFirstName);
binder.setBean(item);
Assert.assertNull(textField.getErrorMessage());
Assert.assertEquals(0, invokes.get());
textField.setValue(textField.getEmptyValue());
ErrorMessage errorMessage = textField.getErrorMessage();
Assert.assertNotNull(errorMessage);
Assert.assertEquals("foobar", errorMessage.getFormattedHtmlMessage());
// validation is run twice, once for the field, then for all the fields
// for cross field validation...
Assert.assertEquals(2, invokes.get());
textField.setValue("value");
Assert.assertNull(textField.getErrorMessage());
Assert.assertTrue(textField.isRequiredIndicatorVisible());
}
}
|