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
|
/*
* 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.data;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.util.Collections;
import java.util.Set;
import java.util.concurrent.atomic.AtomicReference;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import org.junit.Before;
import org.junit.Test;
import com.vaadin.tests.data.bean.BeanWithEnums;
import com.vaadin.tests.data.bean.TestEnum;
import com.vaadin.ui.CheckBoxGroup;
public class BinderMultiSelectTest
extends BinderTestBase<Binder<BeanWithEnums>, BeanWithEnums> {
public class TestEnumSetToStringConverter
implements Converter<Set<TestEnum>, String> {
@Override
public Result<String> convertToModel(Set<TestEnum> value,
ValueContext context) {
return Result.ok(value.stream().map(TestEnum::name)
.collect(Collectors.joining(",")));
}
@Override
public Set<TestEnum> convertToPresentation(String value,
ValueContext context) {
return Stream.of(value.split(","))
.filter(string -> !string.isEmpty()).map(TestEnum::valueOf)
.collect(Collectors.toSet());
}
}
private final Binder<AtomicReference<String>> converterBinder = new Binder<>();
private CheckBoxGroup<TestEnum> select;
@Before
public void setUp() {
binder = new Binder<>();
item = new BeanWithEnums();
select = new CheckBoxGroup<>();
select.setItems(TestEnum.values());
converterBinder.forField(select)
.withConverter(new TestEnumSetToStringConverter())
.bind(AtomicReference::get,
AtomicReference::set);
}
@Test
public void beanBound_bindSelectByShortcut_selectionUpdated() {
item.setEnums(Collections.singleton(TestEnum.ONE));
binder.setBean(item);
binder.bind(select, BeanWithEnums::getEnums, BeanWithEnums::setEnums);
assertEquals(Collections.singleton(TestEnum.ONE),
select.getSelectedItems());
}
@Test
public void beanBound_bindSelect_selectionUpdated() {
item.setEnums(Collections.singleton(TestEnum.TWO));
binder.setBean(item);
binder.forField(select).bind(BeanWithEnums::getEnums,
BeanWithEnums::setEnums);
assertEquals(Collections.singleton(TestEnum.TWO),
select.getSelectedItems());
}
@Test
public void selectBound_bindBeanWithoutEnums_selectedItemNotPresent() {
bindEnum();
assertTrue(select.getSelectedItems().isEmpty());
}
@Test
public void selectBound_bindBean_selectionUpdated() {
item.setEnums(Collections.singleton(TestEnum.ONE));
bindEnum();
assertEquals(Collections.singleton(TestEnum.ONE),
select.getSelectedItems());
}
@Test
public void bound_setSelection_beanValueUpdated() {
bindEnum();
select.select(TestEnum.TWO);
assertEquals(Collections.singleton(TestEnum.TWO), item.getEnums());
}
@Test
public void bound_setSelection_beanValueIsACopy() {
bindEnum();
select.select(TestEnum.TWO);
Set<TestEnum> enums = item.getEnums();
binder.setBean(new BeanWithEnums());
select.select(TestEnum.ONE);
assertEquals(Collections.singleton(TestEnum.TWO), enums);
}
@Test
public void bound_deselect_beanValueUpdatedToNull() {
item.setEnums(Collections.singleton(TestEnum.ONE));
bindEnum();
select.deselect(TestEnum.ONE);
assertTrue(item.getEnums().isEmpty());
}
@Test
public void unbound_changeSelection_beanValueNotUpdated() {
item.setEnums(Collections.singleton(TestEnum.ONE));
bindEnum();
binder.removeBean();
select.select(TestEnum.TWO);
assertEquals(Collections.singleton(TestEnum.ONE), item.getEnums());
}
@Test
public void withConverter_load_selectUpdated() {
converterBinder.readBean(new AtomicReference<>("TWO"));
assertEquals(Collections.singleton(TestEnum.TWO),
select.getSelectedItems());
}
@Test
public void withConverter_save_referenceUpdated() {
select.select(TestEnum.ONE);
select.select(TestEnum.TWO);
AtomicReference<String> reference = new AtomicReference<>("");
converterBinder.writeBeanIfValid(reference);
assertEquals("ONE,TWO", reference.get());
}
@Test
public void withValidator_validate_validatorUsed() {
binder.forField(select)
.withValidator(selection -> selection.size() % 2 == 1,
"Must select odd number of items")
.bind(BeanWithEnums::getEnums, BeanWithEnums::setEnums);
binder.setBean(item);
assertFalse(binder.validate().isOk());
select.select(TestEnum.TWO);
assertTrue(binder.validate().isOk());
}
protected void bindEnum() {
binder.forField(select).bind(BeanWithEnums::getEnums,
BeanWithEnums::setEnums);
binder.setBean(item);
}
}
|