Package org.apache.james.mailetcontainer.lib

Source Code of org.apache.james.mailetcontainer.lib.JamesMailetLoaderTest$JamesMailetLoaderConfiguration

/****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one   *
* or more contributor license agreements.  See the NOTICE file *
* distributed with this work for additional information        *
* regarding copyright ownership.  The ASF licenses this file   *
* to you 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.apache.james.mailetcontainer.lib;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import javax.mail.MessagingException;

import org.apache.commons.configuration.DefaultConfigurationBuilder;
import org.apache.commons.logging.impl.SimpleLog;
import org.apache.james.services.MockJSR250Loader;
import org.apache.mailet.Mailet;
import org.apache.mailet.MailetConfig;


import junit.framework.TestCase;


public class JamesMailetLoaderTest extends TestCase {

    private JamesMailetLoader m_jamesMailetLoader  = new JamesMailetLoader();
    private JamesMailetLoaderConfiguration m_conf = new JamesMailetLoaderConfiguration();

    @SuppressWarnings("serial")
    private class JamesMailetLoaderConfiguration extends DefaultConfigurationBuilder {
        private List<String> m_packageNames = new ArrayList<String>();
       
        public JamesMailetLoaderConfiguration() {
        }

        public void init() {
            for (Iterator<String> iterator = m_packageNames.iterator(); iterator.hasNext();) {
                String packageName = (String) iterator.next();
                addProperty("mailetpackages.mailetpackage", packageName);
            }
        }

        public void addStandardPackages() {
            add(JamesMailetLoaderTest.class.getPackage().getName());
        }

        public void add(String packageName) {
            m_packageNames.add(packageName);
        }

    }

    private void setUpLoader() throws Exception {
        m_conf.init();
        m_jamesMailetLoader.setLog(new SimpleLog("Test"));
        m_jamesMailetLoader.configure(m_conf);
        m_jamesMailetLoader.setFactory(new MockJSR250Loader());
    }

    private void assetIsMockMailet(Mailet mailet) {
        assertNotNull("MockMailet mailet loaded", mailet);
        assertTrue("MockMailet mailet is expected class", mailet instanceof MockMailet);
    }


    public void testUsingEmtpyConfig() {
        try {
            setUpLoader();
            fail("Should throw exception");
        } catch (Exception e) {
        }
    }

    public void testFullQualifiedUsingFakeConfig() throws Exception {
        m_conf.add("none.existing.package"); // has to be here so the Loader won't choke
        setUpLoader();

        Mailet mailet = m_jamesMailetLoader.getMailet(MockMailet.class.getName(), null);
        assetIsMockMailet(mailet);
    }

    public void testStandardMailets() throws Exception {
        m_conf.addStandardPackages();
        setUpLoader();

        // use standard package
        Mailet mailetNull1 = m_jamesMailetLoader.getMailet(MockMailet.class.getSimpleName(), null);
        assetIsMockMailet(mailetNull1);

        // use full qualified package in parallel
        Mailet mailetNull2 = m_jamesMailetLoader.getMailet(MockMailet.class.getName(), null);
        assetIsMockMailet(mailetNull2);

    }

    public void testTestMailets() throws Exception {
        m_conf.addStandardPackages();
        setUpLoader();

        checkTestMailet("MailetLoaderTestMailet");
       
    }

    private void checkTestMailet(String mailetName) throws MessagingException {
        // use standard package
        DefaultConfigurationBuilder configuration = new DefaultConfigurationBuilder();
        configuration.addProperty("testMailetKey", "testMailetValue");

        Mailet mailet = m_jamesMailetLoader.getMailet(mailetName, configuration);
        assertTrue("MailetLoaderTestMailet mailet is expected class", mailet instanceof MailetLoaderTestMailet);
        MailetLoaderTestMailet mailetLoaderTestMailet = ((MailetLoaderTestMailet) mailet);
        assertTrue("init was called by loader", mailetLoaderTestMailet.assertInitCalled());
        MailetConfig mailetConfig = mailetLoaderTestMailet.getMailetConfig();
        assertEquals("init was called w/ right config", "testMailetValue", mailetConfig.getInitParameter("testMailetKey"));
    }

}
TOP

Related Classes of org.apache.james.mailetcontainer.lib.JamesMailetLoaderTest$JamesMailetLoaderConfiguration

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.