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
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
|
package com.vaadin.data;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotEquals;
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 static org.junit.Assert.fail;
import java.math.BigDecimal;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.util.Locale;
import java.util.Objects;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicReference;
import java.util.stream.Stream;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.Rule;
import org.junit.rules.ExpectedException;
import com.vaadin.data.Binder.Binding;
import com.vaadin.data.Binder.BindingBuilder;
import com.vaadin.data.converter.StringToBigDecimalConverter;
import com.vaadin.data.converter.StringToDoubleConverter;
import com.vaadin.data.converter.StringToIntegerConverter;
import com.vaadin.data.validator.IntegerRangeValidator;
import com.vaadin.data.validator.NotEmptyValidator;
import com.vaadin.data.validator.StringLengthValidator;
import com.vaadin.server.ErrorMessage;
import com.vaadin.shared.ui.ErrorLevel;
import com.vaadin.tests.data.bean.Person;
import com.vaadin.tests.data.bean.Sex;
import com.vaadin.ui.TextField;
import org.apache.commons.lang.StringUtils;
import org.hamcrest.CoreMatchers;
public class BinderTest extends BinderTestBase<Binder<Person>, Person> {
private int count;
@Rule
/*
* transient to avoid interfering with serialization tests that capture a
* test instance in a closure
*/
public transient ExpectedException exceptionRule = ExpectedException.none();
@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);
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);
assertEquals(fieldValue, person.getFirstName());
}
@Test
public void save_bound_beanAsDraft() {
Binder<Person> binder = new Binder<>();
binder.forField(nameField)
.withValidator((value,context) -> {
if (value.equals("Mike")) {
return ValidationResult.ok();
} else {
return ValidationResult.error("value must be Mike");
}
})
.bind(Person::getFirstName, Person::setFirstName);
binder.forField(ageField)
.withConverter(new StringToIntegerConverter(""))
.bind(Person::getAge, Person::setAge);
Person person = new Person();
String fieldValue = "John";
nameField.setValue(fieldValue);
int age = 10;
ageField.setValue("10");
person.setFirstName("Mark");
binder.writeBeanAsDraft(person);
// name is not written to draft as validation / conversion
// does not pass
assertNotEquals(fieldValue, person.getFirstName());
// age is written to draft even if firstname validation
// fails
assertEquals(age, person.getAge());
binder.writeBeanAsDraft(person,true);
// name is now written despite validation as write was forced
assertEquals(fieldValue, person.getFirstName());
}
@Test
public void save_bound_bean_disable_validation_binding() throws ValidationException {
Binder<Person> binder = new Binder<>();
Binding<Person, String> nameBinding = binder.forField(nameField)
.withValidator((value,context) -> {
if (value.equals("Mike")) {
return ValidationResult.ok();
} else {
return ValidationResult.error("value must be Mike");
}
})
.bind(Person::getFirstName, Person::setFirstName);
binder.forField(ageField)
.withConverter(new StringToIntegerConverter(""))
.bind(Person::getAge, Person::setAge);
Person person = new Person();
String fieldValue = "John";
nameField.setValue(fieldValue);
int age = 10;
ageField.setValue("10");
person.setFirstName("Mark");
nameBinding.setValidatorsDisabled(true);
binder.writeBean(person);
// name is now written as validation was disabled
assertEquals(fieldValue, person.getFirstName());
assertEquals(age, person.getAge());
}
@Test
public void save_bound_bean_disable_validation_binder() throws ValidationException {
Binder<Person> binder = new Binder<>();
binder.forField(nameField)
.withValidator((value,context) -> {
if (value.equals("Mike")) {
return ValidationResult.ok();
} else {
return ValidationResult.error("value must be Mike");
}
})
.bind(Person::getFirstName, Person::setFirstName);
binder.forField(ageField)
.withConverter(new StringToIntegerConverter(""))
.bind(Person::getAge, Person::setAge);
Person person = new Person();
String fieldValue = "John";
nameField.setValue(fieldValue);
int age = 10;
ageField.setValue("10");
person.setFirstName("Mark");
binder.setValidatorsDisabled(true);
binder.writeBean(person);
// name is now written as validation was disabled
assertEquals(fieldValue, person.getFirstName());
assertEquals(age, person.getAge());
}
@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);
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);
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);
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);
assertEquals(
"Bean was not correctly updated from a change in the field",
realName, namelessPerson.getFirstName());
// Verify conversion back to null
nameField.setValue(nullRepresentation);
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());
assertEquals("null", namelessPerson.getFirstName());
// Change value, see that textfield is not empty and bean is updated.
nullTextField.setValue("");
assertFalse(nullTextField.isEmpty());
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());
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);
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);
assertEquals(customNullConverter.toString(), ageField.getValue());
Integer salary = 11;
ageField.setValue(salary.toString());
assertEquals(11, salary.intValue());
}
@Test
public void withConverter_writeBackValue() {
TextField rentField = new TextField();
rentField.setValue("");
binder.forField(rentField).withConverter(new EuroConverter(""))
.withNullRepresentation(BigDecimal.valueOf(0d))
.bind(Person::getRent, Person::setRent);
binder.setBean(item);
rentField.setValue("10");
assertEquals("€ 10.00", rentField.getValue());
}
@Test
public void withConverter_writeBackValueDisabled() {
TextField rentField = new TextField();
rentField.setValue("");
Binding<Person, BigDecimal> binding = binder.forField(rentField)
.withConverter(new EuroConverter(""))
.withNullRepresentation(BigDecimal.valueOf(0d))
.bind(Person::getRent, Person::setRent);
binder.setBean(item);
binding.setConvertBackToPresentation(false);
rentField.setValue("10");
assertNotEquals("€ 10.00", rentField.getValue());
}
@Test
public void beanBinder_nullRepresentationIsNotDisabled() {
Binder<Person> binder = new Binder<>(Person.class);
binder.forField(nameField).bind("firstName");
Person person = new Person();
binder.setBean(person);
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);
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);
assertEquals(nullRepresentation, nameField.getValue());
String newValue = "bar";
nameField.setValue(newValue);
assertEquals(newValue, item.getFirstName());
}
@Test
public void setRequired_withErrorMessage_fieldGetsRequiredIndicatorAndValidator() {
TextField textField = new TextField();
assertFalse(textField.isRequiredIndicatorVisible());
BindingBuilder<Person, String> bindingBuilder = binder.forField(textField);
assertFalse(textField.isRequiredIndicatorVisible());
bindingBuilder.asRequired("foobar");
assertTrue(textField.isRequiredIndicatorVisible());
Binding<Person, String> binding = bindingBuilder.bind(Person::getFirstName, Person::setFirstName);
binder.setBean(item);
assertNull(textField.getErrorMessage());
textField.setValue(textField.getEmptyValue());
ErrorMessage errorMessage = textField.getErrorMessage();
assertNotNull(errorMessage);
assertEquals("foobar", errorMessage.getFormattedHtmlMessage());
textField.setValue("value");
assertNull(textField.getErrorMessage());
assertTrue(textField.isRequiredIndicatorVisible());
binding.setAsRequiredEnabled(false);
assertFalse(textField.isRequiredIndicatorVisible());
}
@Test
public void readNullBeanRemovesError() {
TextField textField = new TextField();
binder.forField(textField).asRequired("foobar")
.bind(Person::getFirstName, Person::setFirstName);
assertTrue(textField.isRequiredIndicatorVisible());
assertNull(textField.getErrorMessage());
binder.readBean(item);
assertNull(textField.getErrorMessage());
textField.setValue(textField.getEmptyValue());
assertTrue(textField.isRequiredIndicatorVisible());
assertNotNull(textField.getErrorMessage());
binder.readBean(null);
assertTrue(textField.isRequiredIndicatorVisible());
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();
assertSame(Locale.CANADA, context.getLocale().get());
return "foobar";
});
assertTrue(textField.isRequiredIndicatorVisible());
binding.bind(Person::getFirstName, Person::setFirstName);
binder.setBean(item);
assertNull(textField.getErrorMessage());
assertEquals(0, invokes.get());
textField.setValue(textField.getEmptyValue());
ErrorMessage errorMessage = textField.getErrorMessage();
assertNotNull(errorMessage);
assertEquals("foobar", errorMessage.getFormattedHtmlMessage());
// validation is done for all changed bindings once.
assertEquals(1, invokes.get());
textField.setValue("value");
assertNull(textField.getErrorMessage());
assertTrue(textField.isRequiredIndicatorVisible());
}
@Test
public void setRequired_withCustomValidator_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();
Validator<String> customRequiredValidator = (value, context) -> {
invokes.incrementAndGet();
if (StringUtils.isBlank(value)) {
return ValidationResult.error("Input is required.");
}
return ValidationResult.ok();
};
binding.asRequired(customRequiredValidator);
assertTrue(textField.isRequiredIndicatorVisible());
binding.bind(Person::getFirstName, Person::setFirstName);
binder.setBean(item);
assertNull(textField.getErrorMessage());
assertEquals(1, invokes.get());
textField.setValue(" ");
ErrorMessage errorMessage = textField.getErrorMessage();
assertNotNull(errorMessage);
assertEquals("Input is required.",
errorMessage.getFormattedHtmlMessage());
// validation is done for all changed bindings once.
assertEquals(2, invokes.get());
textField.setValue("value");
assertNull(textField.getErrorMessage());
assertTrue(textField.isRequiredIndicatorVisible());
}
@Test
public void setRequired_withCustomValidator_modelConverterBeforeValidator() {
TextField textField = new TextField();
textField.setLocale(Locale.CANADA);
assertFalse(textField.isRequiredIndicatorVisible());
Converter<String, String> stringBasicPreProcessingConverter = new Converter<String, String>() {
@Override
public Result<String> convertToModel(String value,
ValueContext context) {
if (StringUtils.isBlank(value)) {
return Result.ok(null);
}
return Result.ok(StringUtils.trim(value));
}
@Override
public String convertToPresentation(String value,
ValueContext context) {
if (value == null) {
return "";
}
return value;
}
};
AtomicInteger invokes = new AtomicInteger();
Validator<String> customRequiredValidator = (value, context) -> {
invokes.incrementAndGet();
if (value == null) {
return ValidationResult.error("Input required.");
}
return ValidationResult.ok();
};
binder.forField(textField)
.withConverter(stringBasicPreProcessingConverter)
.asRequired(customRequiredValidator)
.bind(Person::getFirstName, Person::setFirstName);
binder.setBean(item);
assertNull(textField.getErrorMessage());
assertEquals(1, invokes.get());
textField.setValue(" ");
ErrorMessage errorMessage = textField.getErrorMessage();
assertNotNull(errorMessage);
assertEquals("Input required.",
errorMessage.getFormattedHtmlMessage());
// validation is done for all changed bindings once.
assertEquals(2, invokes.get());
textField.setValue("value");
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:
assertEquals(2, invokes.get());
lastNameField.setValue("");
assertEquals(2, invokes.get());
firstNameField.setValue("");
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:
assertEquals(5, invokes.get());
lastNameField.setValue("");
assertEquals(5, invokes.get());
firstNameField.setValue("");
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 setReadonlyShouldIgnoreBindingsWithNullSetter() {
binder.bind(nameField, Person::getFirstName, null);
binder.forField(ageField)
.withConverter(new StringToIntegerConverter(""))
.bind(Person::getAge, Person::setAge);
binder.setReadOnly(true);
assertTrue("Name field should be ignored but should be readonly",
nameField.isReadOnly());
assertTrue("Age field should be readonly", ageField.isReadOnly());
binder.setReadOnly(false);
assertTrue("Name field should be ignored and should remain readonly",
nameField.isReadOnly());
assertFalse("Age field should not be readonly", ageField.isReadOnly());
nameField.setReadOnly(false);
binder.setReadOnly(false);
assertFalse("Name field should be ignored and remain not readonly",
nameField.isReadOnly());
assertFalse("Age field should not be readonly", ageField.isReadOnly());
binder.setReadOnly(true);
assertFalse("Name field should be ignored and remain not readonly",
nameField.isReadOnly());
assertTrue("Age field should be readonly", 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);
assertTrue(binder.isValid());
nameField.setValue("fail field validation");
assertFalse(binder.isValid());
nameField.setValue("");
assertTrue(binder.isValid());
nameField.setValue("fail bean validation");
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);
assertTrue(binder.isValid());
nameField.setValue("fail field validation");
assertFalse(binder.isValid());
nameField.setValue("");
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() {
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) {
assertArrayEquals(s1.toArray(), s2.toArray());
}
@Test
public void multiple_calls_to_same_binding_builder() {
String stringLength = "String length failure";
String conversion = "Conversion failed";
String ageLimit = "Age not in valid range";
BindingValidationStatus validation;
binder = new Binder<>(Person.class);
BindingBuilder builder = binder.forField(ageField);
builder.withValidator(new StringLengthValidator(stringLength, 0, 3));
builder.withConverter(new StringToIntegerConverter(conversion));
builder.withValidator(new IntegerRangeValidator(ageLimit, 3, 150));
Binding<Person, ?> bind = builder.bind("age");
binder.setBean(item);
ageField.setValue("123123");
validation = bind.validate();
assertTrue(validation.isError());
assertEquals(stringLength, validation.getMessage().get());
ageField.setValue("age");
validation = bind.validate();
assertTrue(validation.isError());
assertEquals(conversion, validation.getMessage().get());
ageField.setValue("256");
validation = bind.validate();
assertTrue(validation.isError());
assertEquals(ageLimit, validation.getMessage().get());
ageField.setValue("30");
validation = bind.validate();
assertFalse(validation.isError());
assertEquals(30, item.getAge());
}
@Test
public void remove_field_binding() {
binder.forField(ageField)
.withConverter(new StringToIntegerConverter("Can't convert"))
.bind(Person::getAge, Person::setAge);
// Test that the binding does work
assertTrue("Field not initially empty", ageField.isEmpty());
binder.setBean(item);
assertEquals("Binding did not work", String.valueOf(item.getAge()),
ageField.getValue());
binder.setBean(null);
assertTrue("Field not cleared", ageField.isEmpty());
// Remove the binding
binder.removeBinding(ageField);
// Test that it does not work anymore
binder.setBean(item);
assertNotEquals("Binding was not removed",
String.valueOf(item.getAge()), ageField.getValue());
}
@Test
public void remove_propertyname_binding() {
// Use a bean aware binder
Binder<Person> binder = new Binder<>(Person.class);
binder.bind(nameField, "firstName");
// Test that the binding does work
assertTrue("Field not initially empty", nameField.isEmpty());
binder.setBean(item);
assertEquals("Binding did not work", item.getFirstName(),
nameField.getValue());
binder.setBean(null);
assertTrue("Field not cleared", nameField.isEmpty());
// Remove the binding
binder.removeBinding("firstName");
// Test that it does not work anymore
binder.setBean(item);
assertNotEquals("Binding was not removed", item.getFirstName(),
nameField.getValue());
}
@Test
public void remove_binding() {
Binding<Person, Integer> binding = binder.forField(ageField)
.withConverter(new StringToIntegerConverter("Can't convert"))
.bind(Person::getAge, Person::setAge);
// Test that the binding does work
assertTrue("Field not initially empty", ageField.isEmpty());
binder.setBean(item);
assertEquals("Binding did not work", String.valueOf(item.getAge()),
ageField.getValue());
binder.setBean(null);
assertTrue("Field not cleared", ageField.isEmpty());
// Remove the binding
binder.removeBinding(binding);
// Test that it does not work anymore
binder.setBean(item);
assertNotEquals("Binding was not removed",
String.valueOf(item.getAge()), ageField.getValue());
}
@Test
public void remove_binding_fromFieldValueChangeListener() {
// Add listener before bind to make sure it will be executed first.
nameField.addValueChangeListener(e -> {
if (e.getValue() == "REMOVE") {
binder.removeBinding(nameField);
}
});
binder.bind(nameField, Person::getFirstName, Person::setFirstName);
binder.setBean(item);
nameField.setValue("REMOVE");
// Removed binding should not update bean.
assertNotEquals("REMOVE", item.getFirstName());
}
@Test
public void beanvalidation_two_fields_not_equal() {
TextField lastNameField = new TextField();
setBeanValidationFirstNameNotEqualsLastName(nameField, lastNameField);
item.setLastName("Valid");
binder.setBean(item);
assertFalse("Should not have changes initially", binder.hasChanges());
assertTrue("Should be ok initially", binder.validate().isOk());
assertNotEquals("First name and last name are not same initially",
item.getFirstName(), item.getLastName());
nameField.setValue("Invalid");
assertFalse("First name change not handled", binder.hasChanges());
assertTrue(
"Changing first name to something else than last name should be ok",
binder.validate().isOk());
lastNameField.setValue("Invalid");
assertTrue("Last name should not be saved yet", binder.hasChanges());
assertFalse("Binder validation should fail with pending illegal value",
binder.validate().isOk());
assertNotEquals("Illegal last name should not be stored to bean",
item.getFirstName(), item.getLastName());
nameField.setValue("Valid");
assertFalse("With new first name both changes should be saved",
binder.hasChanges());
assertTrue("Everything should be ok for 'Valid Invalid'",
binder.validate().isOk());
assertNotEquals("First name and last name should never match.",
item.getFirstName(), item.getLastName());
}
@Test
public void beanvalidation_initially_broken_bean() {
TextField lastNameField = new TextField();
setBeanValidationFirstNameNotEqualsLastName(nameField, lastNameField);
item.setLastName(item.getFirstName());
binder.setBean(item);
assertFalse(binder.isValid());
assertFalse(binder.validate().isOk());
}
@Test(expected = IllegalStateException.class)
public void beanvalidation_isValid_throws_with_readBean() {
TextField lastNameField = new TextField();
setBeanValidationFirstNameNotEqualsLastName(nameField, lastNameField);
binder.readBean(item);
assertTrue(binder.isValid());
}
@Test(expected = IllegalStateException.class)
public void beanvalidation_validate_throws_with_readBean() {
TextField lastNameField = new TextField();
setBeanValidationFirstNameNotEqualsLastName(nameField, lastNameField);
binder.readBean(item);
assertTrue(binder.validate().isOk());
}
protected void setBeanValidationFirstNameNotEqualsLastName(
TextField firstNameField, TextField lastNameField) {
binder.bind(firstNameField, Person::getFirstName, Person::setFirstName);
binder.forField(lastNameField)
.withValidator(t -> !"foo".equals(t),
"Last name cannot be 'foo'")
.bind(Person::getLastName, Person::setLastName);
binder.withValidator(p -> !p.getFirstName().equals(p.getLastName()),
"First name and last name can't be the same");
}
static class MyBindingHandler implements BindingValidationStatusHandler {
boolean expectingError = false;
int callCount = 0;
@Override
public void statusChange(BindingValidationStatus<?> statusChange) {
++callCount;
if (expectingError) {
assertTrue("Expecting error", statusChange.isError());
} else {
assertFalse("Unexpected error", statusChange.isError());
}
}
}
@Test
public void execute_binding_status_handler_from_binder_status_handler() {
MyBindingHandler bindingHandler = new MyBindingHandler();
binder.forField(nameField)
.withValidator(t -> !t.isEmpty(), "No empty values.")
.withValidationStatusHandler(bindingHandler)
.bind(Person::getFirstName, Person::setFirstName);
String ageError = "CONVERSIONERROR";
binder.forField(ageField)
.withConverter(new StringToIntegerConverter(ageError))
.bind(Person::getAge, Person::setAge);
binder.setValidationStatusHandler(
status -> status.notifyBindingValidationStatusHandlers());
String initialName = item.getFirstName();
int initialAge = item.getAge();
binder.setBean(item);
// Test specific error handling.
bindingHandler.expectingError = true;
nameField.setValue("");
// Test default error handling.
ageField.setValue("foo");
assertTrue("Component error does not contain error message",
ageField.getComponentError().getFormattedHtmlMessage()
.contains(ageError));
// Restore values and test no errors.
ageField.setValue(String.valueOf(initialAge));
assertNull("There should be no component error",
ageField.getComponentError());
bindingHandler.expectingError = false;
nameField.setValue(initialName);
// Assert that the handler was called.
assertEquals(
"Unexpected callCount to binding validation status handler", 6,
bindingHandler.callCount);
}
@Test
public void removed_binding_not_updates_value() {
Binding<Person, Integer> binding = binder.forField(ageField)
.withConverter(new StringToIntegerConverter("Can't convert"))
.bind(Person::getAge, Person::setAge);
binder.setBean(item);
String modifiedAge = String.valueOf(item.getAge() + 10);
String ageBeforeUnbind = String.valueOf(item.getAge());
binder.removeBinding(binding);
ageField.setValue(modifiedAge);
assertEquals("Binding still affects bean even after unbind",
ageBeforeUnbind, String.valueOf(item.getAge()));
}
@Test
public void info_validator_not_considered_error() {
String infoMessage = "Young";
binder.forField(ageField)
.withConverter(new StringToIntegerConverter("Can't convert"))
.withValidator(i -> i > 5, infoMessage, ErrorLevel.INFO)
.bind(Person::getAge, Person::setAge);
binder.setBean(item);
ageField.setValue("3");
assertEquals(infoMessage,
ageField.getComponentError().getFormattedHtmlMessage());
assertEquals(ErrorLevel.INFO,
ageField.getComponentError().getErrorLevel());
assertEquals(3, item.getAge());
}
@Test
public void two_asRequired_fields_without_initial_values() {
binder.forField(nameField).asRequired("Empty name").bind(p -> "",
(p, s) -> {
});
binder.forField(ageField).asRequired("Empty age").bind(p -> "",
(p, s) -> {
});
binder.setBean(item);
assertNull("Initially there should be no errors",
nameField.getComponentError());
assertNull("Initially there should be no errors",
ageField.getComponentError());
nameField.setValue("Foo");
assertNull("Name with a value should not be an error",
nameField.getComponentError());
assertNull(
"Age field should not be in error, since it has not been modified.",
ageField.getComponentError());
nameField.setValue("");
assertNotNull("Empty name should now be in error.",
nameField.getComponentError());
assertNull("Age field should still be ok.",
ageField.getComponentError());
}
@Test
public void refreshValueFromBean() {
Binding<Person, String> binding = binder.bind(nameField,
Person::getFirstName, Person::setFirstName);
binder.readBean(item);
assertEquals("Name should be read from the item", item.getFirstName(),
nameField.getValue());
nameField.setValue("foo");
assertNotEquals("Name should be different from the item",
item.getFirstName(), nameField.getValue());
binding.read(item);
assertEquals("Name should be read again from the item",
item.getFirstName(), nameField.getValue());
}
@Test(expected = IllegalArgumentException.class)
public void remove_binding_from_different_binder() {
Binder<Person> anotherBinder = new Binder<>();
Binding<Person, String> binding = anotherBinder.bind(nameField,
Person::getFirstName, Person::setFirstName);
binder.removeBinding(binding);
}
@Test(expected = IllegalStateException.class)
public void bindWithNullSetterSetReadWrite() {
Binding<Person, String> binding = binder.bind(nameField,
Person::getFirstName, null);
binding.setReadOnly(false);
}
@Test
public void bindWithNullSetterShouldMarkFieldAsReadonly() {
Binding<Person, String> nameBinding = binder.bind(nameField,
Person::getFirstName, null);
binder.forField(ageField)
.withConverter(new StringToIntegerConverter(""))
.bind(Person::getAge, Person::setAge);
assertTrue("Name field should be readonly", nameField.isReadOnly());
assertFalse("Age field should not be readonly", ageField.isReadOnly());
assertTrue("Binding should be marked readonly",
nameBinding.isReadOnly());
}
@Test
public void setReadOnly_binding() {
Binding<Person, String> binding = binder.bind(nameField,
Person::getFirstName, Person::setFirstName);
assertFalse("Binding should not be readonly", binding.isReadOnly());
assertFalse("Name field should not be readonly",
nameField.isReadOnly());
binding.setReadOnly(true);
assertTrue("Binding should be readonly", binding.isReadOnly());
assertTrue("Name field should be readonly", nameField.isReadOnly());
}
@Test
public void conversionWithLocaleBasedErrorMessage() {
String fiError = "VIRHE";
String otherError = "ERROR";
binder.forField(ageField).withConverter(new StringToIntegerConverter(
context -> context.getLocale().map(Locale::getLanguage)
.orElse("en").equals("fi") ? fiError : otherError))
.bind(Person::getAge, Person::setAge);
binder.setBean(item);
ageField.setValue("not a number");
assertEquals(otherError,
ageField.getErrorMessage().getFormattedHtmlMessage());
ageField.setLocale(new Locale("fi"));
// Re-validate to get the error message with correct locale
binder.validate();
assertEquals(fiError,
ageField.getErrorMessage().getFormattedHtmlMessage());
}
@Test
public void valueChangeListenerOrder() {
AtomicBoolean beanSet = new AtomicBoolean();
nameField.addValueChangeListener(e -> {
if (!beanSet.get()) {
assertEquals("Value in bean updated earlier than expected",
e.getOldValue(), item.getFirstName());
}
});
binder.bind(nameField, Person::getFirstName, Person::setFirstName);
nameField.addValueChangeListener(e -> {
if (!beanSet.get()) {
assertEquals("Value in bean not updated when expected",
e.getValue(), item.getFirstName());
}
});
beanSet.set(true);
binder.setBean(item);
beanSet.set(false);
nameField.setValue("Foo");
}
@Test
public void nonSymetricValue_setBean_writtenToBean() {
binder.bind(nameField, Person::getLastName, Person::setLastName);
assertNull(item.getLastName());
binder.setBean(item);
assertEquals("", item.getLastName());
}
@Test
public void nonSymmetricValue_readBean_beanNotTouched() {
binder.bind(nameField, Person::getLastName, Person::setLastName);
binder.addValueChangeListener(
event -> fail("No value change event should be fired"));
assertNull(item.getLastName());
binder.readBean(item);
assertNull(item.getLastName());
}
@Test
public void symetricValue_setBean_beanNotUpdated() {
binder.bind(nameField, Person::getFirstName, Person::setFirstName);
binder.setBean(new Person() {
@Override
public String getFirstName() {
return "First";
}
@Override
public void setFirstName(String firstName) {
fail("Setter should not be called");
}
});
}
@Test
public void nullRejetingField_nullValue_wrappedExceptionMentionsNullRepresentation() {
TextField field = createNullAnd42RejectingFieldWithEmptyValue("");
Binder<AtomicReference<Integer>> binder = createIntegerConverterBinder(
field);
exceptionRule.expect(IllegalStateException.class);
exceptionRule.expectMessage("null representation");
exceptionRule.expectCause(CoreMatchers.isA(NullPointerException.class));
binder.readBean(new AtomicReference<>());
}
@Test
public void nullRejetingField_otherRejectedValue_originalExceptionIsThrown() {
TextField field = createNullAnd42RejectingFieldWithEmptyValue("");
Binder<AtomicReference<Integer>> binder = createIntegerConverterBinder(
field);
exceptionRule.expect(IllegalArgumentException.class);
exceptionRule.expectMessage("42");
binder.readBean(new AtomicReference<>(Integer.valueOf(42)));
}
@Test(expected = NullPointerException.class)
public void nullAcceptingField_nullValue_originalExceptionIsThrown() {
/*
* Edge case with a field that throws for null but has null as the empty
* value. This is most likely the case if the field doesn't explicitly
* reject null values but is instead somehow broken so that any value is
* rejected.
*/
TextField field = createNullAnd42RejectingFieldWithEmptyValue(null);
Binder<AtomicReference<Integer>> binder = createIntegerConverterBinder(
field);
binder.readBean(new AtomicReference<>(null));
}
// See: https://github.com/vaadin/framework/issues/12356
@Test
public void validationShouldNotRunTwice() {
TextField salaryField = new TextField();
count = 0;
item.setSalaryDouble(100d);
binder.forField(salaryField)
.withConverter(new StringToDoubleConverter(""))
.bind(Person::getSalaryDouble, Person::setSalaryDouble);
binder.setBean(item);
binder.addValueChangeListener(event -> {
count++;
});
salaryField.setValue("1000");
assertTrue(binder.isValid());
salaryField.setValue("salary");
assertFalse(binder.isValid());
salaryField.setValue("2000");
// Without fix for #12356 count will be 5
assertEquals(3, count);
assertEquals(new Double(2000), item.getSalaryDouble());
}
// See: https://github.com/vaadin/framework/issues/9581
@Test
public void withConverter_hasChangesFalse() {
TextField nameField = new TextField();
nameField.setValue("");
TextField rentField = new TextField();
rentField.setValue("");
rentField.addValueChangeListener(event -> {
nameField.setValue("Name");
});
item.setRent(BigDecimal.valueOf(10));
binder.forField(nameField).bind(Person::getFirstName, Person::setFirstName);
binder.forField(rentField).withConverter(new EuroConverter(""))
.withNullRepresentation(BigDecimal.valueOf(0d))
.bind(Person::getRent, Person::setRent);
binder.readBean(item);
assertFalse(binder.hasChanges());
assertEquals("€ 10.00", rentField.getValue());
assertEquals("Name", nameField.getValue());
}
private TextField createNullAnd42RejectingFieldWithEmptyValue(
String emptyValue) {
return new TextField() {
@Override
public void setValue(String value) {
if (value == null) {
throw new NullPointerException("Null value");
} else if ("42".equals(value)) {
throw new IllegalArgumentException("42 is not allowed");
}
super.setValue(value);
}
@Override
public String getEmptyValue() {
return emptyValue;
}
};
}
private Binder<AtomicReference<Integer>> createIntegerConverterBinder(
TextField field) {
Binder<AtomicReference<Integer>> binder = new Binder<>();
binder.forField(field)
.withConverter(new StringToIntegerConverter("Must have number"))
.bind(AtomicReference::get, AtomicReference::set);
return binder;
}
/**
* A converter that adds/removes the euro sign and formats currencies with
* two decimal places.
*/
public class EuroConverter extends StringToBigDecimalConverter {
public EuroConverter() {
super("defaultErrorMessage");
}
public EuroConverter(String errorMessage) {
super(errorMessage);
}
@Override
public Result<BigDecimal> convertToModel(String value,
ValueContext context) {
if (value.isEmpty()) {
return Result.ok(null);
}
value = value.replaceAll("[€\\s]", "").trim();
if (value.isEmpty()) {
value = "0";
}
return super.convertToModel(value, context);
}
@Override
public String convertToPresentation(BigDecimal value,
ValueContext context) {
if (value == null) {
return convertToPresentation(BigDecimal.ZERO, context);
}
return "€ " + super.convertToPresentation(value, context);
}
@Override
protected NumberFormat getFormat(Locale locale) {
// Always display currency with two decimals
NumberFormat format = super.getFormat(locale);
if (format instanceof DecimalFormat) {
((DecimalFormat) format).setMaximumFractionDigits(2);
((DecimalFormat) format).setMinimumFractionDigits(2);
}
return format;
}
}
}
|