/* * Copyright 2004-2015 the Seasar Foundation and the Others. * * 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.seasar.extension.jdbc.parameter; import java.math.BigDecimal; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Map; import javax.persistence.Lob; import javax.persistence.Temporal; import javax.persistence.TemporalType; import junit.framework.TestCase; import org.seasar.framework.beans.BeanDesc; import org.seasar.framework.beans.PropertyDesc; import org.seasar.framework.beans.factory.BeanDescFactory; import static org.seasar.extension.jdbc.parameter.Parameter.*; /** * @author taedium * */ public class ParameterTest extends TestCase { /** * * @throws Exception */ public void testWrapIfNecessary() throws Exception { MyDto dto = new MyDto(); dto.aaa = "hoge"; dto.bbb = "foo"; dto.ccc = new SimpleDateFormat("HH:mm:dd").parse("12:11:10"); BeanDesc beanDesc = BeanDescFactory.getBeanDesc(MyDto.class); PropertyDesc pd = beanDesc.getPropertyDesc("aaa"); Object value = wrapIfNecessary(pd, pd.getValue(dto)); assertEquals(String.class, value.getClass()); pd = beanDesc.getPropertyDesc("bbb"); value = wrapIfNecessary(pd, pd.getValue(dto)); assertEquals(LobParameter.class, value.getClass()); pd = beanDesc.getPropertyDesc("ccc"); value = wrapIfNecessary(pd, pd.getValue(dto)); assertEquals(TemporalParameter.class, value.getClass()); pd = beanDesc.getPropertyDesc("ddd"); value = wrapIfNecessary(pd, pd.getValue(dto)); assertEquals(String.class, value.getClass()); } /** * @throws Exception */ public void testParams() throws Exception { Map<String, Object> map = params("a", 1).$("b", new BigDecimal("2")).$( "c", "3").$(); assertEquals(3, map.size()); assertEquals(new Integer(1), map.get("a")); assertEquals(new BigDecimal("2"), map.get("b")); assertEquals("3", map.get("c")); } /** * * @author taedium * */ public static class MyDto { /** */ public String aaa; /** */ @Lob public String bbb; /** */ @Temporal(TemporalType.TIME) public Date ccc; /** * * @return */ public String getDdd() { return aaa; } } }