blob: b4825616d44ec1cf1fdb877fc56bf1d0d06adf56 [file] [log] [blame]
/****************************************************************
* 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.mime4j.utils.search;
import com.google.common.collect.Lists;
import java.io.InputStream;
import org.junit.Test;
import static org.assertj.core.api.Assertions.assertThat;
public class MessageMatcherTest {
@Test
public void isFoundInShouldBeAbleToLocateTextFragments() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList("as attachment !"))
.caseInsensitive(true)
.includeHeaders(false)
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isTrue();
}
@Test
public void isFoundInShouldReturnFalseWhenTextIsAbsent() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList("Not in the mail"))
.caseInsensitive(true)
.includeHeaders(false)
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isFalse();
}
@Test
public void isFoundInShouldReturnFalseWhenSearchingHeaderTextOutsideHeaders() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList("message/rfc822"))
.caseInsensitive(true)
.includeHeaders(false)
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isFalse();
}
@Test
public void isFoundInShouldReturnFalseWhenSearchingTextLocatedInOtherMimeParts() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList("as attachment !"))
.caseInsensitive(true)
.includeHeaders(false)
.contentTypes(Lists.newArrayList("invalid"))
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isFalse();
}
@Test
public void isFoundInShouldReturnTrueWhenSearchingTextLocatedInSpecifiedMimePart() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList("as attachment !"))
.caseInsensitive(true)
.includeHeaders(false)
.contentTypes(Lists.newArrayList("text/plain"))
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isTrue();
}
@Test
public void isFoundInShouldBeAbleToRecognizedMimeTypes() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList(""))
.caseInsensitive(true)
.includeHeaders(false)
.contentTypes(Lists.newArrayList("text/plain"))
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isTrue();
}
@Test
public void isFoundInShouldNotBeAffectedByInvalidMimeTypes() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList("as attachment !"))
.caseInsensitive(true)
.includeHeaders(false)
.contentTypes(Lists.newArrayList("text/plain", "invalid"))
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isTrue();
}
@Test
public void caseSensitivenessShouldBeTakenIntoAccountWhenTurnedOn() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList("as aTtAchment !"))
.caseInsensitive(true)
.includeHeaders(false)
.contentTypes(Lists.newArrayList("text/plain", "invalid"))
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isTrue();
}
@Test
public void caseSensitivenessShouldBeIgnoredWhenTurnedOff() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList("as aTtAchment !"))
.caseInsensitive(false)
.includeHeaders(false)
.contentTypes(Lists.newArrayList("text/plain", "invalid"))
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isFalse();
}
@Test
public void headerShouldBeMatchedWhenHeaderMatchingIsTurnedOn() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList("message/rfc822"))
.caseInsensitive(true)
.includeHeaders(true)
.contentTypes(Lists.<String>newArrayList())
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isTrue();
}
@Test
public void headerShouldBeMatchedWhenIgnoringMime() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList("message/rfc822"))
.ignoringMime(true)
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isTrue();
}
@Test
public void isFoundInIgnoringMimeShouldIgnoreMimeStructure() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList("ail signature )\n\n--------------0004"))
.ignoringMime(true)
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isTrue();
}
@Test
public void isFoundInIgnoringMimeShouldReturnFalseOnNonContainedText() throws Exception {
MessageMatcher messageMatcher = MessageMatcher.builder()
.searchContents(Lists.<CharSequence>newArrayList("invalid"))
.ignoringMime(true)
.build();
assertThat(messageMatcher.messageMatches(getResourceStream("sampleMail.msg"))).isFalse();
}
private InputStream getResourceStream(String resourceName) {
return ClassLoader.getSystemClassLoader().getResourceAsStream(resourceName);
}
}