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 6c9a2317dc0 Add CDCAckPositionTest (#37382)
6c9a2317dc0 is described below
commit 6c9a2317dc07100722b13ba10db4f85639caee95
Author: Liang Zhang <[email protected]>
AuthorDate: Sun Dec 14 17:33:43 2025 +0800
Add CDCAckPositionTest (#37382)
---
.../pipeline/cdc/core/ack/CDCAckPositionTest.java | 33 ++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git
a/kernel/data-pipeline/scenario/cdc/core/src/test/java/org/apache/shardingsphere/data/pipeline/cdc/core/ack/CDCAckPositionTest.java
b/kernel/data-pipeline/scenario/cdc/core/src/test/java/org/apache/shardingsphere/data/pipeline/cdc/core/ack/CDCAckPositionTest.java
new file mode 100644
index 00000000000..56c9ddc5b9c
--- /dev/null
+++
b/kernel/data-pipeline/scenario/cdc/core/src/test/java/org/apache/shardingsphere/data/pipeline/cdc/core/ack/CDCAckPositionTest.java
@@ -0,0 +1,33 @@
+/*
+ * 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.cdc.core.ack;
+
+import
org.apache.shardingsphere.data.pipeline.core.ingest.position.type.placeholder.IngestPlaceholderPosition;
+import
org.apache.shardingsphere.data.pipeline.core.ingest.record.FinishedRecord;
+import org.junit.jupiter.api.Test;
+
+import static org.hamcrest.CoreMatchers.is;
+import static org.hamcrest.MatcherAssert.assertThat;
+
+class CDCAckPositionTest {
+
+ @Test
+ void assertGetDataRecordCount() {
+ assertThat(new CDCAckPosition(new FinishedRecord(new
IngestPlaceholderPosition()), 2).getDataRecordCount(), is(2));
+ }
+}