This is an automated email from the ASF dual-hosted git repository. rouazana pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit c57b922d848e392a956de4cf4c16668ab14dffaa Author: Rémi Kowalski <[email protected]> AuthorDate: Tue May 21 11:38:52 2019 +0200 JAMES-2777 add a class representing a task with its id --- .../java/org/apache/james/task/TaskWithId.java | 53 ++++++++++++++++++++++ .../java/org/apache/james/task/TaskWithIdTest.java | 47 +++++++++++++++++++ 2 files changed, 100 insertions(+) diff --git a/server/task/src/main/java/org/apache/james/task/TaskWithId.java b/server/task/src/main/java/org/apache/james/task/TaskWithId.java new file mode 100644 index 0000000..724c71c --- /dev/null +++ b/server/task/src/main/java/org/apache/james/task/TaskWithId.java @@ -0,0 +1,53 @@ +/**************************************************************** + * 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.task; + +import java.util.Objects; + +public class TaskWithId { + private final TaskId id; + private final Task task; + + public TaskWithId(TaskId id, Task task) { + this.id = id; + this.task = task; + } + + public TaskId getId() { + return id; + } + + public Task getTask() { + return task; + } + + @Override + public boolean equals(Object o) { + if (o instanceof TaskWithId) { + TaskWithId taskWithId = (TaskWithId) o; + return Objects.equals(this.id, taskWithId.id); + } + return false; + } + + @Override + public int hashCode() { + return Objects.hash(id); + } +} diff --git a/server/task/src/test/java/org/apache/james/task/TaskWithIdTest.java b/server/task/src/test/java/org/apache/james/task/TaskWithIdTest.java new file mode 100644 index 0000000..e66c436 --- /dev/null +++ b/server/task/src/test/java/org/apache/james/task/TaskWithIdTest.java @@ -0,0 +1,47 @@ +/**************************************************************** + * 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.task; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.junit.Test; + +public class TaskWithIdTest { + + @Test + public void twoTasksWithSameIdShouldBeEqual() { + TaskId id = TaskId.generateTaskId(); + Task task1 = () -> Task.Result.COMPLETED; + Task task2 = () -> Task.Result.COMPLETED; + TaskWithId taskWithId1 = new TaskWithId(id, task1); + TaskWithId taskWithId2 = new TaskWithId(id, task2); + assertThat(taskWithId1).isEqualTo(taskWithId2); + } + + @Test + public void sameTaskWithDifferentIdShouldNotBeEqual() { + TaskId id1 = TaskId.generateTaskId(); + TaskId id2 = TaskId.generateTaskId(); + Task task = () -> Task.Result.COMPLETED; + TaskWithId taskWithId1 = new TaskWithId(id1, task); + TaskWithId taskWithId2 = new TaskWithId(id2, task); + assertThat(taskWithId1).isNotEqualTo(taskWithId2); + } +} \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
