Package org.apache.james.mailbox.store

Source Code of org.apache.james.mailbox.store.SearchUtilsRFC822Test

/****************************************************************
* 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.mailbox.store;

import static org.junit.Assert.*;

import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.Collection;

import org.apache.james.mailbox.model.SearchQuery;
import org.apache.james.mailbox.store.mail.model.Message;
import org.apache.james.mailbox.store.search.MessageSearches;
import org.junit.Before;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class SearchUtilsRFC822Test {

    private static final String FROM_ADDRESS = "Harry <harry@example.org";

    private static final String SUBJECT_PART = "Mixed";

    private static final String CUSTARD = "CUSTARD";

    private static final String RHUBARD = "Rhubard";

    private static final String BODY = "This is a simple email\r\n "
            + "It has " + RHUBARD + ".\r\n" + "It has " + CUSTARD + ".\r\n"
            + "It needs naught else.\r\n";

    Message<Long> row;

    private Logger log = LoggerFactory.getLogger(getClass());
    Collection<Long> recent;

    @Before
    public void setUp() throws Exception {
        recent = new ArrayList<Long>();
        MessageBuilder builder = new MessageBuilder();
        builder.header("From", "Alex <alex@example.org");
        builder.header("To", FROM_ADDRESS);
        builder.header("Subject", "A " + SUBJECT_PART + " Multipart Mail");
        builder.header("Date", "Thu, 14 Feb 2008 12:00:00 +0000 (GMT)");
        builder.body = Charset.forName("us-ascii").encode(BODY).array();
        row = builder.build();
    }


    @Test
    public void testBodyShouldMatchPhraseInBody() throws Exception {
        assertTrue(new MessageSearches().isMatch(SearchQuery.bodyContains(CUSTARD), row,
                recent, log));
        assertFalse(new MessageSearches().isMatch(SearchQuery
                .bodyContains(CUSTARD + CUSTARD), row, recent, log));
    }

    @Test
    public void testBodyMatchShouldBeCaseInsensitive() throws Exception {
        assertTrue(new MessageSearches().isMatch(SearchQuery.bodyContains(RHUBARD), row,
                recent, log));
        assertTrue(new MessageSearches().isMatch(SearchQuery.bodyContains(RHUBARD
                .toLowerCase()), row, recent, log));
        assertTrue(new MessageSearches().isMatch(SearchQuery.bodyContains(RHUBARD
                .toLowerCase()), row, recent, log));
    }

    @Test
    public void testBodyShouldNotMatchPhraseOnlyInHeader() throws Exception {
        assertFalse(new MessageSearches().isMatch(SearchQuery.bodyContains(FROM_ADDRESS),
                row, recent, log));
        assertFalse(new MessageSearches().isMatch(SearchQuery.bodyContains(SUBJECT_PART),
                row, recent, log));
    }

    @Test
    public void testTextShouldMatchPhraseInBody() throws Exception {
        assertTrue(new MessageSearches().isMatch(SearchQuery.mailContains(CUSTARD), row,
                recent, log));
        assertFalse(new MessageSearches().isMatch(SearchQuery
                .mailContains(CUSTARD + CUSTARD), row, recent, log));
    }

    @Test
    public void testTextMatchShouldBeCaseInsensitive() throws Exception {
        assertTrue(new MessageSearches().isMatch(SearchQuery.mailContains(RHUBARD), row,
                recent, log));
        assertTrue(new MessageSearches().isMatch(SearchQuery.mailContains(RHUBARD
                .toLowerCase()), row, recent, log));
        assertTrue(new MessageSearches().isMatch(SearchQuery.mailContains(RHUBARD
                .toLowerCase()), row, recent, log));
    }

    @Test
    public void testBodyShouldMatchPhraseOnlyInHeader() throws Exception {
        assertTrue(new MessageSearches().isMatch(SearchQuery.mailContains(FROM_ADDRESS),
                row, recent, log));
        assertTrue(new MessageSearches().isMatch(SearchQuery.mailContains(SUBJECT_PART),
                row, recent, log));
    }
}
TOP

Related Classes of org.apache.james.mailbox.store.SearchUtilsRFC822Test

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.