blob: c65c10eb1ad4c301934bc20b4e8952184b348cbc [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.draft.model.mailbox;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import org.apache.commons.lang3.NotImplementedException;
import org.apache.james.mailbox.Role;
import org.junit.Test;
public class MailboxCreateRequestTest {
@Test
public void builderShouldThrowOnNullRole() {
assertThatThrownBy(() -> MailboxCreateRequest.builder().role(null)).isInstanceOf(NullPointerException.class);
}
@Test
public void builderShouldThrowWhenRoleDefine() {
assertThatThrownBy(() -> MailboxCreateRequest.builder().role(Role.ARCHIVE)).isInstanceOf(NotImplementedException.class);
}
@Test
public void builderShouldThrowOnNullId() {
assertThatThrownBy(() -> MailboxCreateRequest.builder().id(null)).isInstanceOf(NullPointerException.class);
}
@Test
public void builderShouldThrowOnNullSortOrder() {
assertThatThrownBy(() -> MailboxCreateRequest.builder().sortOrder(null)).isInstanceOf(NullPointerException.class);
}
@Test
public void builderShouldThrowOnSortOrderDefine() {
assertThatThrownBy(() -> MailboxCreateRequest.builder().sortOrder(SortOrder.of(123))).isInstanceOf(NotImplementedException.class);
}
@Test
public void builderShouldThrowOnNullParentId() {
assertThatThrownBy(() -> MailboxCreateRequest.builder().parentId(null)).isInstanceOf(NullPointerException.class);
}
@Test
public void builderShouldThrowOnNullName() {
assertThatThrownBy(() -> MailboxCreateRequest.builder().name(null)).isInstanceOf(NullPointerException.class);
}
@Test
public void builderShouldRequireName() {
assertThatThrownBy(() -> MailboxCreateRequest.builder().build())
.isInstanceOf(IllegalStateException.class)
.hasMessageContaining("name");
}
@Test
public void builderShouldBuildWhenName() {
MailboxCreateRequest request = MailboxCreateRequest.builder().name("foo").build();
assertThat(request.getName()).isEqualTo("foo");
assertThat(request.getId()).isEmpty();
assertThat(request.getParentId()).isEmpty();
assertThat(request.getSortOrder()).isEmpty();
assertThat(request.getRole()).isEmpty();
}
}