blob: 89c6cdf02ec047c7529528762fddeed851342787 [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.mailbox;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import org.junit.jupiter.api.Test;
class MessageUidTest {
private static final MessageUid _1 = MessageUid.of(1);
private static final MessageUid _2 = MessageUid.of(2);
private static final MessageUid _3 = MessageUid.of(3);
private static final MessageUid _4 = MessageUid.of(4);
@Test
void distanceShouldReturnZeroWhenSameValue() {
assertThat(_1.distance(_1)).isEqualTo(0);
}
@Test
void distanceShouldThrowWhenNullArgument() {
assertThatThrownBy(() -> _1.distance(null))
.isInstanceOf(NullPointerException.class);
}
@Test
void distanceShouldReturnPositiveDistanceWhenGreaterArgument() {
assertThat(_1.distance(_4)).isEqualTo(3);
}
@Test
void distanceShouldReturnNegativeDistanceWhenSmallerArgument() {
assertThat(_3.distance(_2)).isEqualTo(-1);
}
}