blob: 478106faee67423a52ff748621e92e4792805b69 [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.jmap.model.message.view;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import java.time.Instant;
import java.util.Optional;
import org.apache.james.jmap.model.Attachment;
import org.apache.james.jmap.model.BlobId;
import org.apache.james.jmap.model.Emailer;
import org.junit.jupiter.api.Test;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
class SubMessageTest {
private static final Optional<String> DEFAULT_TEXT_BODY = Optional.of("textBody");
private static final Optional<String> DEFAULT_HTML_BODY = Optional.of("htmlBody");
@Test
void buildShouldThrowWhenHeadersIsNull() {
assertThatThrownBy(() -> SubMessage.builder().build())
.isInstanceOf(IllegalStateException.class);
}
@Test
void buildShouldThrowWhenSubjectIsNull() {
assertThatThrownBy(() -> SubMessage.builder()
.headers(ImmutableMap.of())
.build())
.isInstanceOf(IllegalStateException.class);
}
@Test
void buildShouldThrowWhenSubjectIsEmpty() {
assertThatThrownBy(() -> SubMessage.builder()
.headers(ImmutableMap.of())
.subject("")
.build())
.isInstanceOf(IllegalStateException.class);
}
@Test
void buildShouldThrowWhenDateIsNull() {
assertThatThrownBy(() -> SubMessage.builder()
.headers(ImmutableMap.of())
.subject("subject")
.build())
.isInstanceOf(IllegalStateException.class);
}
@Test
void buildShouldWorkWhenMandatoryFieldsArePresent() {
Instant currentDate = Instant.now();
SubMessage expected = new SubMessage(ImmutableMap.of("key", "value"), Optional.empty(),
ImmutableList.of(), ImmutableList.of(), ImmutableList.of(), ImmutableList.of(), "subject",
currentDate, Optional.empty(), Optional.empty(), ImmutableList.of(), ImmutableMap.of());
SubMessage tested = SubMessage.builder()
.headers(ImmutableMap.of("key", "value"))
.subject("subject")
.date(currentDate)
.build();
assertThat(tested).isEqualToComparingFieldByField(expected);
}
@Test
void buildShouldThrowWhenAttachedMessageIsNotMatchingAttachments() {
Attachment simpleAttachment = Attachment.builder().blobId(BlobId.of("blobId")).type("type").name("name").size(123).build();
ImmutableList<Attachment> attachments = ImmutableList.of(simpleAttachment);
SubMessage simpleMessage = SubMessage.builder()
.headers(ImmutableMap.of("key", "value"))
.subject("subject")
.date(Instant.now())
.build();
ImmutableMap<BlobId, SubMessage> attachedMessages = ImmutableMap.of(BlobId.of("differentBlobId"), simpleMessage);
assertThatThrownBy(() -> SubMessage.builder()
.headers(ImmutableMap.of("key", "value"))
.subject("subject")
.date(Instant.now())
.attachments(attachments)
.attachedMessages(attachedMessages)
.build())
.isInstanceOf(IllegalStateException.class);
}
@Test
void buildShouldWorkWhenAllFieldsArePresent() {
Emailer from = Emailer.builder().name("from").email("from@domain").build();
ImmutableList<Emailer> to = ImmutableList.of(Emailer.builder().name("to").email("to@domain").build());
ImmutableList<Emailer> cc = ImmutableList.of(Emailer.builder().name("cc").email("cc@domain").build());
ImmutableList<Emailer> bcc = ImmutableList.of(Emailer.builder().name("bcc").email("bcc@domain").build());
ImmutableList<Emailer> replyTo = ImmutableList.of(Emailer.builder().name("replyTo").email("replyTo@domain").build());
Instant currentDate = Instant.now();
Attachment simpleAttachment = Attachment.builder().blobId(BlobId.of("blobId")).type("type").name("name").size(123).build();
ImmutableList<Attachment> attachments = ImmutableList.of(simpleAttachment);
SubMessage simpleMessage = SubMessage.builder()
.headers(ImmutableMap.of("key", "value"))
.subject("subject")
.date(currentDate)
.build();
ImmutableMap<BlobId, SubMessage> attachedMessages = ImmutableMap.of(BlobId.of("blobId"), simpleMessage);
SubMessage expected = new SubMessage(
ImmutableMap.of("key", "value"),
Optional.of(from),
to,
cc,
bcc,
replyTo,
"subject",
currentDate,
DEFAULT_TEXT_BODY,
DEFAULT_HTML_BODY,
attachments,
attachedMessages);
SubMessage tested = SubMessage.builder()
.headers(ImmutableMap.of("key", "value"))
.from(from)
.to(to)
.cc(cc)
.bcc(bcc)
.replyTo(replyTo)
.subject("subject")
.date(currentDate)
.textBody(DEFAULT_TEXT_BODY)
.htmlBody(DEFAULT_HTML_BODY)
.attachments(attachments)
.attachedMessages(attachedMessages)
.build();
assertThat(tested).isEqualToComparingFieldByField(expected);
}
}