py.una.pol.karaku.test.test.dao.interceptors.TimeInterceptorTest.java Source code

Java tutorial

Introduction

Here is the source code for py.una.pol.karaku.test.test.dao.interceptors.TimeInterceptorTest.java

Source

/*-
 * Copyright (c)
 *
 *       2012-2014, Facultad Politcnica, Universidad Nacional de Asuncin.
 *       2012-2014, Facultad de Ciencias Mdicas, Universidad Nacional de Asuncin.
 *       2012-2013, Centro Nacional de Computacin, Universidad Nacional de Asuncin.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA 02110-1301  USA
 */
package py.una.pol.karaku.test.test.dao.interceptors;

import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertThat;
import java.util.Calendar;
import java.util.Date;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.support.AnnotationConfigContextLoader;
import py.una.pol.karaku.dao.entity.Operation;
import py.una.pol.karaku.dao.entity.annotations.Time;
import py.una.pol.karaku.dao.entity.annotations.Time.Type;
import py.una.pol.karaku.dao.entity.interceptors.InterceptorHandler;
import py.una.pol.karaku.dao.entity.interceptors.TimeInterceptor;
import py.una.pol.karaku.test.base.BaseTest;
import py.una.pol.karaku.test.configuration.BaseTestConfiguration;

/**
 * The Class TimeInterceptorTest.
 * 
 * @author Arturo Volpe
 * @since 1.0
 * @version 1.0 Oct 1, 2013
 */
@ContextConfiguration(loader = AnnotationConfigContextLoader.class)
public class TimeInterceptorTest extends BaseTest {

    /**
     * The Class ContextConfiguration.
     */
    @Configuration
    static class ContextConfiguration extends BaseTestConfiguration {

        /**
         * Interceptor handler.
         * 
         * @return the interceptor handler
         */
        @Bean
        InterceptorHandler interceptorHandler() {

            return new InterceptorHandler();
        }

        /**
         * Time interceptor.
         * 
         * @return the time interceptor
         */
        @Bean
        TimeInterceptor timeInterceptor() {

            return new TimeInterceptor();
        }
    }

    /** The interceptor handler. */
    @Autowired
    private transient InterceptorHandler interceptorHandler;

    /**
     * Injection.
     */
    @Test
    public void injection() {

        assertNotNull(this.interceptorHandler);
        assertThat(this.interceptorHandler.getInterceptorsCount(), is(1));
    }

    /**
     * Test time.
     */
    @Test
    public void testTime() {

        Date d = new Date();
        Date d2 = new Date(d.getTime());

        TimeTest tt = new TimeTest(d, d, d);

        this.interceptorHandler.intercept(Operation.CREATE, tt);

        Calendar c = Calendar.getInstance();
        c.setTime(tt.getTime());

        Calendar c2 = Calendar.getInstance();
        c2.setTime(d2);

        assertThat(c.get(Calendar.YEAR), is(1970));
        assertThat(c.get(Calendar.MONTH), is(0));
        assertThat(c.get(Calendar.DAY_OF_MONTH), is(1));

        assertThat(c.get(Calendar.HOUR_OF_DAY), is(c2.get(Calendar.HOUR_OF_DAY)));
        assertThat(c.get(Calendar.MINUTE), is(c2.get(Calendar.MINUTE)));

        assertThat(c.get(Calendar.SECOND), is(0));
        assertThat(c.get(Calendar.MILLISECOND), is(0));

    }

    /**
     * Test date time.
     */
    @Test
    public void testDateTime() {

        Date d = new Date();
        Date d2 = new Date(d.getTime());

        TimeTest tt = new TimeTest(d, d, d);

        this.interceptorHandler.intercept(Operation.CREATE, tt);

        Calendar c = Calendar.getInstance();
        c.setTime(tt.getDateTime());

        Calendar c2 = Calendar.getInstance();
        c2.setTime(d2);

        assertThat(c.get(Calendar.YEAR), is(c2.get(Calendar.YEAR)));
        assertThat(c.get(Calendar.MONTH), is(c2.get(Calendar.MONTH)));
        assertThat(c.get(Calendar.DAY_OF_MONTH), is(c2.get(Calendar.DAY_OF_MONTH)));
        assertThat(c.get(Calendar.HOUR_OF_DAY), is(c2.get(Calendar.HOUR_OF_DAY)));
        assertThat(c.get(Calendar.MINUTE), is(c2.get(Calendar.MINUTE)));

        assertThat(c.get(Calendar.SECOND), is(0));
        assertThat(c.get(Calendar.MILLISECOND), is(0));

    }

    /**
     * Test date.
     */
    @Test
    public void testDate() {

        Date d = new Date();
        Date d2 = new Date(d.getTime());

        TimeTest tt = new TimeTest(d, d, d);

        this.interceptorHandler.intercept(Operation.CREATE, tt);

        Calendar c = Calendar.getInstance();
        c.setTime(tt.getDate());

        Calendar c2 = Calendar.getInstance();
        c2.setTime(d2);

        assertThat(c.get(Calendar.YEAR), is(c2.get(Calendar.YEAR)));
        assertThat(c.get(Calendar.MONTH), is(c2.get(Calendar.MONTH)));
        assertThat(c.get(Calendar.DAY_OF_MONTH), is(c2.get(Calendar.DAY_OF_MONTH)));
        assertThat(c.get(Calendar.HOUR_OF_DAY), is(0));
        assertThat(c.get(Calendar.MINUTE), is(0));

        assertThat(c.get(Calendar.SECOND), is(0));
        assertThat(c.get(Calendar.MILLISECOND), is(0));

    }

    /**
     * The Class TimeTest.
     */
    static class TimeTest {

        /** The time. */
        @Time(type = Type.TIME)
        Date time;

        /** The date time. */
        @Time(type = Type.DATETIME)
        Date dateTime;

        /** The date. */
        @Time
        Date date;

        /**
         * Instantiates a new time test.
         * 
         * @param time
         *            the time
         * @param dateTime
         *            the date time
         * @param date
         *            the date
         */
        public TimeTest(Date time, Date dateTime, Date date) {

            super();
            this.time = (Date) time.clone();
            this.dateTime = (Date) dateTime.clone();
            this.date = (Date) date.clone();
        }

        /**
         * Gets the time.
         * 
         * @return time
         */
        public Date getTime() {

            return this.time;
        }

        /**
         * Gets the date.
         * 
         * @return date
         */
        public Date getDate() {

            return this.date;
        }

        /**
         * Gets the date time.
         * 
         * @return dateTime
         */
        public Date getDateTime() {

            return this.dateTime;
        }

    }
}