bind action

attribute mapper enhancements
This commit is contained in:
Keith Donald
2008-03-15 01:10:50 +00:00
parent 21d6318484
commit c5340f7f2b
39 changed files with 540 additions and 405 deletions

View File

@@ -0,0 +1,28 @@
/*
* Copyright 2004-2007 the original author or authors.
*
* 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 org.springframework.binding.mapping;
import junit.framework.TestCase;
/**
* Unit tests for the {@link org.springframework.binding.mapping.RequiredMapping}.
*/
public class MappingTests extends TestCase {
public void testMapping() {
}
}

View File

@@ -1,62 +0,0 @@
/*
* Copyright 2004-2007 the original author or authors.
*
* 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 org.springframework.binding.mapping;
import java.util.HashMap;
import junit.framework.TestCase;
import org.springframework.binding.expression.ognl.OgnlExpressionParser;
/**
* Unit tests for the {@link org.springframework.binding.mapping.RequiredMapping}.
*/
public class RequiredMappingTests extends TestCase {
public void testRequired() {
MappingBuilder builder = new MappingBuilder(new OgnlExpressionParser());
Mapping mapping = builder.source("foo").target("bar").required().value();
HashMap source = new HashMap();
source.put("foo", "baz");
HashMap target = new HashMap();
mapping.map(source, target, null);
assertEquals("baz", target.get("bar"));
}
public void testRequiredExceptionOnNull() {
MappingBuilder builder = new MappingBuilder(new OgnlExpressionParser());
Mapping mapping = builder.source("foo").target("bar").required().value();
HashMap source = new HashMap();
source.put("foo", null);
HashMap target = new HashMap();
try {
mapping.map(source, target, null);
} catch (RequiredMappingException e) {
}
}
public void testRequiredExceptionOnNoKey() {
MappingBuilder builder = new MappingBuilder(new OgnlExpressionParser());
Mapping mapping = builder.source("foo").target("bar").required().value();
HashMap source = new HashMap();
HashMap target = new HashMap();
try {
mapping.map(source, target, null);
} catch (RequiredMappingException e) {
}
}
}