blob: 6750d64e075c6f8426d4f7457cf5b0ed121bf116 (
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
|
package com.vaadin.data.validator;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
import com.vaadin.data.ValidationResult;
import com.vaadin.data.ValueContext;
/**
* @author Vaadin Ltd
*
*/
public class NotEmptyValidatorTest {
@Test
public void nullValueIsDisallowed() {
NotEmptyValidator<String> validator = new NotEmptyValidator<>("foo");
ValidationResult result = validator.apply(null, new ValueContext());
assertTrue(result.isError());
assertEquals("foo", result.getErrorMessage());
}
@Test
public void emptyValueIsDisallowed() {
NotEmptyValidator<String> validator = new NotEmptyValidator<>("foo");
ValidationResult result = validator.apply("", new ValueContext());
assertTrue(result.isError());
assertEquals("foo", result.getErrorMessage());
}
@Test
public void nonNullValueIsAllowed() {
NotEmptyValidator<Object> validator = new NotEmptyValidator<>("foo");
Object value = new Object();
ValidationResult result = validator.apply(value, new ValueContext());
assertFalse(result.isError());
assertFalse(result.isError());
}
}
|