Package com.impetus.client.crud.event

Source Code of com.impetus.client.crud.event.EntityEventDispatcherTest

/*******************************************************************************
* * Copyright 2013 Impetus Infotech.
*  *
*  * 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 com.impetus.client.crud.event;

import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;
import javax.persistence.PostLoad;
import javax.persistence.PostPersist;
import javax.persistence.PrePersist;

import junit.framework.Assert;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import com.impetus.kundera.metadata.KunderaMetadataManager;
import com.impetus.kundera.metadata.model.EntityMetadata;
import com.impetus.kundera.persistence.EntityManagerFactoryImpl;
import com.impetus.kundera.persistence.event.EntityEventDispatcher;


/**
* Test case for {@link EntityEventDispatcher}
*
* @author amresh.singh
*
*/
public class EntityEventDispatcherTest
{

    private EntityEventDispatcher eventDispatcher;

    private EntityManager em;

    private EntityManagerFactory emf;

    /**
     * @throws java.lang.Exception
     */
    @Before
    public void setUp() throws Exception
    {
        eventDispatcher = new EntityEventDispatcher();
       
        emf = Persistence.createEntityManagerFactory("mongoTest");
        em = emf.createEntityManager();
    }

    /**
     * @throws java.lang.Exception
     */
    @After
    public void tearDown() throws Exception
    {
        eventDispatcher = null;
        em.close();
        emf.close();
    }

    /**
     * Test method for
     * {@link com.impetus.kundera.persistence.event.EntityEventDispatcher#fireEventListeners(com.impetus.kundera.metadata.model.EntityMetadata, java.lang.Object, java.lang.Class)}
     * .
     * @throws SecurityException
     * @throws NoSuchMethodException
     */
    @Test
    public void testExternalFireEventListeners() throws NoSuchMethodException, SecurityException
    {
        PersonEventDispatch person = new PersonEventDispatch("1", "John", "Smith");
        EntityMetadata m = KunderaMetadataManager.getEntityMetadata(((EntityManagerFactoryImpl)emf).getKunderaMetadataInstance(), person.getClass());
        eventDispatcher.fireEventListeners(m, person, PrePersist.class);
        Assert.assertEquals("Amresh", person.getFirstName());
        Assert.assertEquals("Smith", person.getLastName());
        eventDispatcher.fireEventListeners(m, person, PostPersist.class);
        Assert.assertEquals("Amresh", person.getFirstName());
        Assert.assertEquals("Singh", person.getLastName());
       
        eventDispatcher.fireEventListeners(m, person, PostLoad.class);
        Assert.assertEquals("Amresh", person.getFirstName());
        Assert.assertEquals("Post Load", person.getLastName());
       
      
    }
   
    /**
     * Test method for
     * {@link com.impetus.kundera.persistence.event.EntityEventDispatcher#fireEventListeners(com.impetus.kundera.metadata.model.EntityMetadata, java.lang.Object, java.lang.Class)}
     * .
     * @throws SecurityException
     * @throws NoSuchMethodException
     */
    @Test
    public void testEventListeners() throws NoSuchMethodException, SecurityException
    {
        PersonEventDispatch person = new PersonEventDispatch("1", "John", "Smith");
        em.persist(person);
       
        PersonEventDispatch found = em.find(PersonEventDispatch.class, "1");
        Assert.assertEquals("Singh", found.getLastName());
       
      
    }

 
}
TOP

Related Classes of com.impetus.client.crud.event.EntityEventDispatcherTest

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.