This is an automated email from the ASF dual-hosted git repository.
duanzhengqiang 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 2e154699aea Add test cases on CursorConnectionContext (#33186)
2e154699aea is described below
commit 2e154699aead5eb882394689bc4f7d7e19d9d576
Author: Liang Zhang <[email protected]>
AuthorDate: Wed Oct 9 17:57:49 2024 +0800
Add test cases on CursorConnectionContext (#33186)
---
.../cursor/CursorConnectionContextTest.java | 60 ++++++++++++++++++++++
1 file changed, 60 insertions(+)
diff --git
a/infra/session/src/test/java/org/apache/shardingsphere/infra/session/connection/cursor/CursorConnectionContextTest.java
b/infra/session/src/test/java/org/apache/shardingsphere/infra/session/connection/cursor/CursorConnectionContextTest.java
new file mode 100644
index 00000000000..a1bde3c0bba
--- /dev/null
+++
b/infra/session/src/test/java/org/apache/shardingsphere/infra/session/connection/cursor/CursorConnectionContextTest.java
@@ -0,0 +1,60 @@
+/*
+ * 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.infra.session.connection.cursor;
+
+import
org.apache.shardingsphere.infra.binder.context.statement.ddl.CursorStatementContext;
+import org.junit.jupiter.api.Test;
+
+import java.util.Collections;
+
+import static org.junit.jupiter.api.Assertions.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+import static org.mockito.Mockito.mock;
+
+class CursorConnectionContextTest {
+
+ @SuppressWarnings("resource")
+ @Test
+ void removeCursor() {
+ CursorConnectionContext cursorConnectionContext =
createCursorConnectionContext();
+ cursorConnectionContext.removeCursor("foo");
+
assertFalse(cursorConnectionContext.getOrderByValueGroups().containsKey("foo"));
+
assertFalse(cursorConnectionContext.getMinGroupRowCounts().containsKey("foo"));
+
assertFalse(cursorConnectionContext.getCursorStatementContexts().containsKey("foo"));
+
assertFalse(cursorConnectionContext.getExecutedAllDirections().containsKey("foo"));
+ }
+
+ @Test
+ void removeClose() {
+ CursorConnectionContext cursorConnectionContext =
createCursorConnectionContext();
+ cursorConnectionContext.close();
+ assertTrue(cursorConnectionContext.getOrderByValueGroups().isEmpty());
+ assertTrue(cursorConnectionContext.getMinGroupRowCounts().isEmpty());
+
assertTrue(cursorConnectionContext.getCursorStatementContexts().isEmpty());
+
assertTrue(cursorConnectionContext.getExecutedAllDirections().isEmpty());
+ }
+
+ private CursorConnectionContext createCursorConnectionContext() {
+ CursorConnectionContext result = new CursorConnectionContext();
+ result.getOrderByValueGroups().put("foo", Collections.emptyList());
+ result.getMinGroupRowCounts().put("foo", 1L);
+ result.getCursorStatementContexts().put("foo",
mock(CursorStatementContext.class));
+ result.getExecutedAllDirections().put("foo", false);
+ return result;
+ }
+}