blob: fa69fc46da9403c12437d359075bc0051f7dd017 (
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
|
package com.vaadin.ui;
import java.text.NumberFormat;
import java.util.Locale;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import com.vaadin.data.util.converter.StringToIntegerConverter;
import com.vaadin.server.VaadinRequest;
import com.vaadin.server.VaadinSession;
import com.vaadin.tests.util.AlwaysLockedVaadinSession;
public class AbsFieldDataSourceLocaleChange {
private VaadinSession vaadinSession;
private UI ui;
@Before
public void setup() {
vaadinSession = new AlwaysLockedVaadinSession(null);
VaadinSession.setCurrent(vaadinSession);
ui = new UI() {
@Override
protected void init(VaadinRequest request) {
}
};
ui.setSession(vaadinSession);
UI.setCurrent(ui);
}
@Test
public void localeChangesOnAttach() {
TextField tf = new TextField();
tf.setConverter(new StringToIntegerConverter() {
@Override
protected NumberFormat getFormat(Locale locale) {
if (locale == null) {
NumberFormat format = super.getFormat(locale);
format.setGroupingUsed(false);
format.setMinimumIntegerDigits(10);
return format;
}
return super.getFormat(locale);
}
});
tf.setImmediate(true);
tf.setConvertedValue(10000);
Assert.assertEquals("0000010000", tf.getValue());
VerticalLayout vl = new VerticalLayout();
ui.setContent(vl);
ui.setLocale(new Locale("en", "US"));
vl.addComponent(tf);
Assert.assertEquals("10,000", tf.getValue());
}
}
|