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
|
package com.vaadin.v7.tests.data.converter;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import org.junit.Test;
import com.vaadin.v7.data.util.converter.Converter;
import com.vaadin.v7.data.util.converter.Converter.ConversionException;
import com.vaadin.v7.data.util.converter.ReverseConverter;
import com.vaadin.v7.data.util.converter.StringToByteConverter;
public class StringToByteConverterTest {
StringToByteConverter converter = new StringToByteConverter();
Converter<Byte, String> reverseConverter = new ReverseConverter<Byte, String>(
converter);
@Test
public void testNullConversion() {
assertEquals("Null value was converted incorrectly", null,
converter.convertToModel(null, Byte.class, null));
}
@Test
public void testReverseNullConversion() {
assertEquals("Null value reversely was converted incorrectly", null,
reverseConverter.convertToModel(null, String.class, null));
}
@Test
public void testEmptyStringConversion() {
assertEquals("Empty value was converted incorrectly", null,
converter.convertToModel("", Byte.class, null));
}
@Test
public void testValueConversion() {
assertEquals("Byte value was converted incorrectly",
Byte.valueOf((byte) 10),
converter.convertToModel("10", Byte.class, null));
}
@Test
public void testReverseValueConversion() {
assertEquals("Byte value reversely was converted incorrectly",
reverseConverter.convertToModel((byte) 10, String.class, null),
"10");
}
@Test
public void testExtremeByteValueConversion() {
byte b = converter.convertToModel("127", Byte.class, null);
assertEquals(Byte.MAX_VALUE, b);
b = converter.convertToModel("-128", Byte.class, null);
assertEquals("Min byte value was converted incorrectly", Byte.MIN_VALUE,
b);
}
@Test
public void testValueOutOfRange() {
Double[] values = { Byte.MAX_VALUE * 2.0, Byte.MIN_VALUE * 2.0,
Long.MAX_VALUE * 2.0, Long.MIN_VALUE * 2.0 };
boolean accepted = false;
for (Number value : values) {
try {
converter.convertToModel(String.format("%.0f", value),
Byte.class, null);
accepted = true;
} catch (ConversionException expected) {
}
}
assertFalse("Accepted value outside range of int", accepted);
}
}
|