mitm.application.djigzo.james.mailets.MailAddressHandlerTest.java Source code

Java tutorial

Introduction

Here is the source code for mitm.application.djigzo.james.mailets.MailAddressHandlerTest.java

Source

/*
 * Copyright (c) 2008-2011, Martijn Brinkers, Djigzo.
 * 
 * This file is part of Djigzo email encryption.
 *
 * Djigzo is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License 
 * version 3, 19 November 2007 as published by the Free Software 
 * Foundation.
 *
 * Djigzo 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public 
 * License along with Djigzo. If not, see <http://www.gnu.org/licenses/>
 *
 * Additional permission under GNU AGPL version 3 section 7
 * 
 * If you modify this Program, or any covered work, by linking or 
 * combining it with aspectjrt.jar, aspectjweaver.jar, tyrex-1.0.3.jar, 
 * freemarker.jar, dom4j.jar, mx4j-jmx.jar, mx4j-tools.jar, 
 * spice-classman-1.0.jar, spice-loggerstore-0.5.jar, spice-salt-0.8.jar, 
 * spice-xmlpolicy-1.0.jar, saaj-api-1.3.jar, saaj-impl-1.3.jar, 
 * wsdl4j-1.6.1.jar (or modified versions of these libraries), 
 * containing parts covered by the terms of Eclipse Public License, 
 * tyrex license, freemarker license, dom4j license, mx4j license,
 * Spice Software License, Common Development and Distribution License
 * (CDDL), Common Public License (CPL) the licensors of this Program grant 
 * you additional permission to convey the resulting work.
 */
package mitm.application.djigzo.james.mailets;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import java.util.Collection;

import javax.mail.MessagingException;
import javax.mail.internet.InternetAddress;

import mitm.application.djigzo.DjigzoTestUtils;
import mitm.application.djigzo.User;
import mitm.application.djigzo.james.MailAddressUtils;
import mitm.application.djigzo.service.SystemServices;
import mitm.application.djigzo.workflow.UserWorkflow;
import mitm.common.hibernate.DatabaseActionExecutor;
import mitm.common.hibernate.DatabaseActionExecutorBuilder;
import mitm.common.hibernate.DatabaseActionRetryEvent;
import mitm.common.hibernate.HibernateUtils;
import mitm.common.hibernate.SessionManager;

import org.apache.commons.lang.exception.ExceptionUtils;
import org.apache.commons.lang.mutable.MutableBoolean;
import org.apache.commons.lang.mutable.MutableInt;
import org.apache.mailet.MailAddress;
import org.hibernate.exception.ConstraintViolationException;
import org.junit.BeforeClass;
import org.junit.Test;

public class MailAddressHandlerTest {
    private static SessionManager sessionManager;
    private static UserWorkflow userWorkflow;
    private static DatabaseActionExecutor actionExecutor;

    @BeforeClass
    public static void setUpBeforeClass() throws Exception {
        DjigzoTestUtils.initialize();

        HibernateUtils.recreateTables(SystemServices.getHibernateSessionSource().getHibernateConfiguration());

        sessionManager = SystemServices.getSessionManager();
        userWorkflow = SystemServices.getUserWorkflow();
        actionExecutor = DatabaseActionExecutorBuilder.createDatabaseActionExecutor(sessionManager);
    }

    @Test
    public void mailAddressHandlerRetrySuccess() throws Exception {
        final int retries = 4;

        final MutableInt count = new MutableInt();

        final MutableBoolean action = new MutableBoolean(false);

        MailAddressHandler.HandleUserEventHandler eventHandler = new MailAddressHandler.HandleUserEventHandler() {
            @Override
            public void handleUser(User user) throws MessagingException {
                count.increment();

                if (count.intValue() <= retries) {
                    throw new ConstraintViolationException("Dummy ConstraintViolationException", null, "");
                }

                action.setValue(true);
            }
        };

        MailAddressHandler handler = new MailAddressHandler(sessionManager, userWorkflow, actionExecutor,
                eventHandler, retries);

        Collection<MailAddress> recipients = MailAddressUtils
                .fromAddressArrayToMailAddressList(new InternetAddress("test@example.com"));

        handler.handleMailAddresses(recipients);

        assertTrue(action.booleanValue());
        assertEquals(retries + 1, count.intValue());
    }

    @Test
    public void mailAddressHandlerRetry() throws Exception {
        final int retries = 4;

        final MutableInt count = new MutableInt();

        MailAddressHandler.HandleUserEventHandler eventHandler = new MailAddressHandler.HandleUserEventHandler() {
            @Override
            public void handleUser(User user) throws MessagingException {
                count.increment();

                throw new ConstraintViolationException("Dummy ConstraintViolationException", null, "");
            }
        };

        MailAddressHandler handler = new MailAddressHandler(sessionManager, userWorkflow, actionExecutor,
                eventHandler, retries);

        Collection<MailAddress> recipients = MailAddressUtils
                .fromAddressArrayToMailAddressList(new InternetAddress("test@example.com"));

        try {
            handler.handleMailAddresses(recipients);

            fail();
        } catch (MessagingException e) {
            assertTrue(ExceptionUtils.getRootCause(e) instanceof ConstraintViolationException);
        }

        assertEquals(5, count.intValue());
    }

    @Test
    public void mailAddressHandlerRetryEvent() throws Exception {
        final int retries = 2;

        final MutableInt count = new MutableInt();

        final MutableInt eventCount = new MutableInt();

        MailAddressHandler.HandleUserEventHandler eventHandler = new MailAddressHandler.HandleUserEventHandler() {
            @Override
            public void handleUser(User user) throws MessagingException {
                count.increment();

                throw new ConstraintViolationException("Dummy ConstraintViolationException", null, "");
            }
        };

        DatabaseActionRetryEvent retryEvent = new DatabaseActionRetryEvent() {
            @Override
            public void onRetry() {
                eventCount.increment();
            }
        };

        MailAddressHandler handler = new MailAddressHandler(sessionManager, userWorkflow, actionExecutor,
                eventHandler, retries, retryEvent);

        Collection<MailAddress> recipients = MailAddressUtils
                .fromAddressArrayToMailAddressList(new InternetAddress("test@example.com"));

        try {
            handler.handleMailAddresses(recipients);

            fail();
        } catch (MessagingException e) {
            assertTrue(ExceptionUtils.getRootCause(e) instanceof ConstraintViolationException);
        }

        assertEquals(retries + 1, count.intValue());
        assertEquals(retries, eventCount.intValue());
    }

    @Test
    public void mailAddressHandler() throws Exception {
        final MutableInt count = new MutableInt();

        MailAddressHandler.HandleUserEventHandler eventHandler = new MailAddressHandler.HandleUserEventHandler() {
            @Override
            public void handleUser(User user) throws MessagingException {
                count.increment();

                throw new ConstraintViolationException("Dummy ConstraintViolationException", null, "");
            }
        };

        MailAddressHandler handler = new MailAddressHandler(sessionManager, userWorkflow, actionExecutor,
                eventHandler, 0);

        Collection<MailAddress> recipients = MailAddressUtils
                .fromAddressArrayToMailAddressList(new InternetAddress("test@example.com"));

        try {
            handler.handleMailAddresses(recipients);

            fail();
        } catch (MessagingException e) {
            assertTrue(ExceptionUtils.getRootCause(e) instanceof ConstraintViolationException);
        }

        assertEquals(1, count.intValue());
    }
}