Package org.dozer.functional_tests

Source Code of org.dozer.functional_tests.DateFormatTest$Destination

/*
* Copyright 2005-2009 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.dozer.functional_tests;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;

import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;

import javax.xml.datatype.DatatypeFactory;
import javax.xml.datatype.XMLGregorianCalendar;

import org.dozer.vo.DateContainer;
import org.dozer.vo.DateObjectDest;
import org.dozer.vo.DateObjectSource;
import org.junit.Before;
import org.junit.Test;

/**
* @author dmitry.buzdin
*/
public class DateFormatTest extends AbstractFunctionalTest {

  @Override
  @Before
  public void setUp() throws Exception {
    mapper = getMapper("dateFormat.xml");
  }

  @Test
  public void testConversion() {
    Calendar calendar = Calendar.getInstance();
    calendar.set(2009, 6, 3, 12, 20, 10);
    DateContainer result = mapper.map(calendar.getTime(), DateContainer.class);
    assertNotNull(result);
    assertEquals("2009-07-03 12:20:10", result.getDate());
    assertEquals("2009-07-03 12:20:10", result.getSet().iterator().next());
  }

  @Test
  public void testConversion_Calendar() {
    GregorianCalendar cal = new GregorianCalendar(2009, 2, 3);
    Date sourceValue = cal.getTime();
    Calendar result = mapper.map(sourceValue, Calendar.class);
    assertEquals(cal.getTime(), result.getTime());
  }

  @Test
  public void testConversion_CalendarInsideBean() {
    GregorianCalendar cal = new GregorianCalendar(2009, 2, 3);
    Date sourceValue = cal.getTime();
    Source source = new Source();
    source.setDate(sourceValue);
    Destination result = mapper.map(source, Destination.class);

    assertEquals(cal.getTime(), result.getDate().getTime());
  }

  @Test
  public void testGregorianCalendar() throws Exception{

    DateObjectSource source = new DateObjectSource();
    DatatypeFactory datatypeFactory = DatatypeFactory.newInstance();
    XMLGregorianCalendar xmlGregorianCalendar = datatypeFactory.newXMLGregorianCalendar();
    xmlGregorianCalendar.setTimezone(2 * 60);
    source.setRecalledDate(xmlGregorianCalendar);

    DateObjectDest dest = mapper.map(source, DateObjectDest.class);

    assertEquals(source.getRecalledDate().getYear(), dest.getRecDate().getYear());
    assertEquals(source.getRecalledDate().getMonth(), dest.getRecDate().getMonth());
    assertEquals(source.getRecalledDate().getDay(), dest.getRecDate().getDay());
    assertEquals(source.getRecalledDate().getHour(), dest.getRecDate().getHour());
    assertEquals(source.getRecalledDate().getMinute(), dest.getRecDate().getMinute());
    assertEquals(source.getRecalledDate().getSecond(), dest.getRecDate().getSecond());
    assertEquals(source.getRecalledDate().getTimezone(), dest.getRecDate().getTimezone());

    //Test when instance exist
    dest = new DateObjectDest();
    dest.setRecDate(DatatypeFactory.newInstance().newXMLGregorianCalendar());

    mapper.map(source, dest);

    assertEquals(source.getRecalledDate(), dest.getRecDate());
  }

  public static class Source {
    private Date date;

    public Date getDate() {
      return date;
    }

    public void setDate(Date date) {
      this.date = date;
    }
  }


  public static class Destination {

    private Calendar calendar;

    public Calendar getDate() {
      return calendar;
    }

    public void setDate(Calendar calendar) {
      this.calendar = calendar;
    }
  }

}
TOP

Related Classes of org.dozer.functional_tests.DateFormatTest$Destination

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.