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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
|
package com.vaadin.data;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
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 java.util.stream.Stream;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import com.vaadin.data.Binder.BindingBuilder;
import com.vaadin.data.converter.StringToDoubleConverter;
import com.vaadin.data.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);
assertNotNull(binder.getBean());
binder.setBean(null);
assertNull(binder.getBean());
}
@Test
public void bindNullBean_FieldsAreCleared() {
binder.forField(nameField).bind(Person::getFirstName,
Person::setFirstName);
binder.forField(ageField)
.withConverter(new StringToIntegerConverter(""))
.bind(Person::getAge, Person::setAge);
binder.setBean(item);
assertEquals("No name field value", "Johannes", nameField.getValue());
assertEquals("No age field value", "32", ageField.getValue());
binder.setBean(null);
assertEquals("Name field not empty", "", nameField.getValue());
assertEquals("Age field not empty", "", ageField.getValue());
}
@Test
public void clearForReadBean_boundFieldsAreCleared() {
binder.forField(nameField).bind(Person::getFirstName,
Person::setFirstName);
binder.forField(ageField)
.withConverter(new StringToIntegerConverter(""))
.bind(Person::getAge, Person::setAge);
binder.readBean(item);
assertEquals("No name field value", "Johannes", nameField.getValue());
assertEquals("No age field value", "32", ageField.getValue());
binder.readBean(null);
assertEquals("Name field not empty", "", nameField.getValue());
assertEquals("Age field not empty", "", ageField.getValue());
}
@Test
public void clearReadOnlyField_shouldClearField() {
binder.forField(nameField).bind(Person::getFirstName,
Person::setFirstName);
// Make name field read only
nameField.setReadOnly(true);
binder.setBean(item);
assertEquals("No name field value", "Johannes", nameField.getValue());
binder.setBean(null);
assertEquals("ReadOnly field not empty", "", nameField.getValue());
}
@Test
public void clearBean_setsHasChangesToFalse() {
binder.forField(nameField).bind(Person::getFirstName,
Person::setFirstName);
// Make name field read only
nameField.setReadOnly(true);
binder.readBean(item);
assertEquals("No name field value", "Johannes", nameField.getValue());
nameField.setValue("James");
assertTrue("Binder did not have value changes", binder.hasChanges());
binder.readBean(null);
assertFalse("Binder has changes after clearing all fields",
binder.hasChanges());
}
@Test
public void clearReadOnlyBinder_shouldClearFields() {
binder.forField(nameField).bind(Person::getFirstName,
Person::setFirstName);
binder.forField(ageField)
.withConverter(new StringToIntegerConverter(""))
.bind(Person::getAge, Person::setAge);
binder.setReadOnly(true);
binder.setBean(item);
binder.setBean(null);
assertEquals("ReadOnly name field not empty", "", nameField.getValue());
assertEquals("ReadOnly age field not empty", "", ageField.getValue());
}
@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() {
assertNull(binder.getBean());
binder.setBean(item);
assertSame(item, binder.getBean());
}
@Test
public void unbound_getBean_returnsNothing() {
binder.setBean(item);
binder.removeBean();
assertNull(binder.getBean());
}
@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());
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);
assertTrue(nullTextField.isEmpty());
Assert.assertEquals(null, namelessPerson.getFirstName());
// Change value, see that textfield is not empty and bean is updated.
nullTextField.setValue("");
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");
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);
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() {
Binder<Person> binder = new Binder<>(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";
Binder<Person> binder = new Binder<>(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();
assertFalse(textField.isRequiredIndicatorVisible());
BindingBuilder<Person, String> binding = binder.forField(textField);
assertFalse(textField.isRequiredIndicatorVisible());
binding.asRequired("foobar");
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());
assertTrue(textField.isRequiredIndicatorVisible());
}
@Test
public void readNullBeanRemovesError() {
TextField textField = new TextField();
binder.forField(textField).asRequired("foobar")
.bind(Person::getFirstName, Person::setFirstName);
Assert.assertTrue(textField.isRequiredIndicatorVisible());
Assert.assertNull(textField.getErrorMessage());
binder.readBean(item);
Assert.assertNull(textField.getErrorMessage());
textField.setValue(textField.getEmptyValue());
Assert.assertTrue(textField.isRequiredIndicatorVisible());
Assert.assertNotNull(textField.getErrorMessage());
binder.readBean(null);
assertTrue(textField.isRequiredIndicatorVisible());
Assert.assertNull(textField.getErrorMessage());
}
@Test
public void setRequired_withErrorMessageProvider_fieldGetsRequiredIndicatorAndValidator() {
TextField textField = new TextField();
textField.setLocale(Locale.CANADA);
assertFalse(textField.isRequiredIndicatorVisible());
BindingBuilder<Person, String> binding = binder.forField(textField);
assertFalse(textField.isRequiredIndicatorVisible());
AtomicInteger invokes = new AtomicInteger();
binding.asRequired(context -> {
invokes.incrementAndGet();
Assert.assertSame(Locale.CANADA, context.getLocale().get());
return "foobar";
});
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());
assertTrue(textField.isRequiredIndicatorVisible());
}
@Test
public void validationStatusHandler_onlyRunForChangedField() {
TextField firstNameField = new TextField();
TextField lastNameField = new TextField();
AtomicInteger invokes = new AtomicInteger();
binder.forField(firstNameField)
.withValidator(new NotEmptyValidator<>(""))
.withValidationStatusHandler(
validationStatus -> invokes.addAndGet(1))
.bind(Person::getFirstName, Person::setFirstName);
binder.forField(lastNameField)
.withValidator(new NotEmptyValidator<>(""))
.bind(Person::getLastName, Person::setLastName);
binder.setBean(item);
// setting the bean causes 2:
Assert.assertEquals(2, invokes.get());
lastNameField.setValue("");
Assert.assertEquals(2, invokes.get());
firstNameField.setValue("");
Assert.assertEquals(3, invokes.get());
binder.removeBean();
Person person = new Person();
person.setFirstName("a");
person.setLastName("a");
binder.readBean(person);
// reading from a bean causes 2:
Assert.assertEquals(5, invokes.get());
lastNameField.setValue("");
Assert.assertEquals(5, invokes.get());
firstNameField.setValue("");
Assert.assertEquals(6, invokes.get());
}
@Test(expected = IllegalStateException.class)
public void noArgsConstructor_stringBind_throws() {
binder.bind(new TextField(), "firstName");
}
@Test
public void setReadOnly_unboundBinder() {
binder.forField(nameField).bind(Person::getFirstName,
Person::setFirstName);
binder.forField(ageField);
binder.setReadOnly(true);
assertTrue(nameField.isReadOnly());
assertFalse(ageField.isReadOnly());
binder.setReadOnly(false);
assertFalse(nameField.isReadOnly());
assertFalse(ageField.isReadOnly());
}
@Test
public void setReadOnly_boundBinder() {
binder.forField(nameField).bind(Person::getFirstName,
Person::setFirstName);
binder.forField(ageField)
.withConverter(new StringToIntegerConverter(""))
.bind(Person::getAge, Person::setAge);
binder.setBean(new Person());
binder.setReadOnly(true);
assertTrue(nameField.isReadOnly());
assertTrue(ageField.isReadOnly());
binder.setReadOnly(false);
assertFalse(nameField.isReadOnly());
assertFalse(ageField.isReadOnly());
}
@Test
public void setReadOnly_binderLoadedByReadBean() {
binder.forField(nameField).bind(Person::getFirstName,
Person::setFirstName);
binder.forField(ageField)
.withConverter(new StringToIntegerConverter(""))
.bind(Person::getAge, Person::setAge);
binder.readBean(new Person());
binder.setReadOnly(true);
assertTrue(nameField.isReadOnly());
assertTrue(ageField.isReadOnly());
binder.setReadOnly(false);
assertFalse(nameField.isReadOnly());
assertFalse(ageField.isReadOnly());
}
@Test
public void isValidTest_bound_binder() {
binder.forField(nameField)
.withValidator(Validator.from(
name -> !name.equals("fail field validation"), ""))
.bind(Person::getFirstName, Person::setFirstName);
binder.withValidator(Validator.from(
person -> !person.getFirstName().equals("fail bean validation"),
""));
binder.setBean(item);
Assert.assertTrue(binder.isValid());
nameField.setValue("fail field validation");
Assert.assertFalse(binder.isValid());
nameField.setValue("");
Assert.assertTrue(binder.isValid());
nameField.setValue("fail bean validation");
Assert.assertFalse(binder.isValid());
}
@Test
public void isValidTest_unbound_binder() {
binder.forField(nameField)
.withValidator(Validator.from(
name -> !name.equals("fail field validation"), ""))
.bind(Person::getFirstName, Person::setFirstName);
Assert.assertTrue(binder.isValid());
nameField.setValue("fail field validation");
Assert.assertFalse(binder.isValid());
nameField.setValue("");
Assert.assertTrue(binder.isValid());
}
@Test(expected = IllegalStateException.class)
public void isValidTest_unbound_binder_throws_with_bean_level_validation() {
binder.forField(nameField).bind(Person::getFirstName,
Person::setFirstName);
binder.withValidator(Validator.from(
person -> !person.getFirstName().equals("fail bean validation"),
""));
binder.isValid();
}
@Test
public void getFields_returnsFields() {
Assert.assertEquals(0, binder.getFields().count());
binder.forField(nameField).bind(Person::getFirstName,
Person::setFirstName);
assertStreamEquals(Stream.of(nameField), binder.getFields());
binder.forField(ageField)
.withConverter(new StringToIntegerConverter(""))
.bind(Person::getAge, Person::setAge);
assertStreamEquals(Stream.of(nameField, ageField), binder.getFields());
}
private void assertStreamEquals(Stream<?> s1, Stream<?> s2) {
Assert.assertArrayEquals(s1.toArray(), s2.toArray());
}
/**
* Access to old step in binding chain that already has a converter applied
* to it is expected to prevent modifications.
*/
@Test(expected = IllegalStateException.class)
public void multiple_calls_to_same_binder_throws() {
BindingBuilder<Person, String> forField = binder.forField(nameField);
forField.withConverter(new StringToDoubleConverter("Failed"));
forField.bind(Person::getFirstName, Person::setFirstName);
}
}
|