This is an automated email from the ASF dual-hosted git repository.
zhangliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new 462cd182a07 Add test cases on JobItemIncrementalTasksProgress (#33319)
462cd182a07 is described below
commit 462cd182a0751b0e9058154574e0ff6a8822357b
Author: Liang Zhang <[email protected]>
AuthorDate: Sat Oct 19 18:23:50 2024 +0800
Add test cases on JobItemIncrementalTasksProgress (#33319)
---
.../JobItemIncrementalTasksProgressTest.java | 54 ++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git
a/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/job/progress/JobItemIncrementalTasksProgressTest.java
b/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/job/progress/JobItemIncrementalTasksProgressTest.java
new file mode 100644
index 00000000000..10ed9815682
--- /dev/null
+++
b/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/job/progress/JobItemIncrementalTasksProgressTest.java
@@ -0,0 +1,54 @@
+/*
+ * 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.shardingsphere.data.pipeline.core.job.progress;
+
+import
org.apache.shardingsphere.data.pipeline.core.task.progress.IncrementalTaskProgress;
+import org.junit.jupiter.api.Test;
+
+import static org.hamcrest.CoreMatchers.is;
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.junit.jupiter.api.Assertions.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+import static org.mockito.Mockito.RETURNS_DEEP_STUBS;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+class JobItemIncrementalTasksProgressTest {
+
+ @Test
+ void assertGetIncrementalPositionWithNullIncrementalTaskProgress() {
+ assertFalse(new
JobItemIncrementalTasksProgress(null).getIncrementalPosition().isPresent());
+ }
+
+ @Test
+ void assertGetIncrementalPositionWithNotNullIncrementalTaskProgress() {
+ assertTrue(new
JobItemIncrementalTasksProgress(mock(IncrementalTaskProgress.class,
RETURNS_DEEP_STUBS)).getIncrementalPosition().isPresent());
+ }
+
+ @Test
+ void
assertGetIncrementalLatestActiveTimeMillisWithNullIncrementalTaskProgress() {
+ assertThat(new
JobItemIncrementalTasksProgress(null).getIncrementalLatestActiveTimeMillis(),
is(0L));
+ }
+
+ @Test
+ void
assertGetIncrementalLatestActiveTimeMillisWithNotNullIncrementalTaskProgress() {
+ IncrementalTaskProgress incrementalTaskProgress =
mock(IncrementalTaskProgress.class, RETURNS_DEEP_STUBS);
+
when(incrementalTaskProgress.getIncrementalTaskDelay().getLatestActiveTimeMillis()).thenReturn(10L);
+ assertThat(new
JobItemIncrementalTasksProgress(incrementalTaskProgress).getIncrementalLatestActiveTimeMillis(),
is(10L));
+ }
+}