Browse Source

added test for invalid binding to ClassLoader

pull/1234/head
Juergen Hoeller 15 years ago
parent
commit
07e9f1775b
  1. 16
      org.springframework.context/src/test/java/org/springframework/validation/DataBinderTests.java

16
org.springframework.context/src/test/java/org/springframework/validation/DataBinderTests.java

@ -225,6 +225,22 @@ public class DataBinderTests extends TestCase { @@ -225,6 +225,22 @@ public class DataBinderTests extends TestCase {
}
}
public void testBindingWithSystemFieldError() throws Exception {
TestBean rod = new TestBean();
DataBinder binder = new DataBinder(rod, "person");
MutablePropertyValues pvs = new MutablePropertyValues();
pvs.add("class.classLoader.URLs[0]", "http://myserver");
binder.setIgnoreUnknownFields(false);
try {
binder.bind(pvs);
fail("Should have thrown NotWritablePropertyException");
}
catch (NotWritablePropertyException ex) {
assertTrue(ex.getMessage().contains("classLoader"));
}
}
public void testBindingWithErrorsAndCustomEditors() throws Exception {
TestBean rod = new TestBean();
DataBinder binder = new DataBinder(rod, "person");

Loading…
Cancel
Save