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 bfef8d4d496 Add test cases on GlobalRuleDispatchEventBuilder (#32900)
bfef8d4d496 is described below
commit bfef8d4d4969e8214c5ae6619bf45ccf5b205b05
Author: Liang Zhang <[email protected]>
AuthorDate: Mon Sep 16 12:05:47 2024 +0800
Add test cases on GlobalRuleDispatchEventBuilder (#32900)
---
.../GlobalRuleDispatchEventBuilderTest.java | 56 ++++++++++++++++++++++
1 file changed, 56 insertions(+)
diff --git
a/mode/type/cluster/core/src/test/java/org/apache/shardingsphere/mode/manager/cluster/event/builder/GlobalRuleDispatchEventBuilderTest.java
b/mode/type/cluster/core/src/test/java/org/apache/shardingsphere/mode/manager/cluster/event/builder/GlobalRuleDispatchEventBuilderTest.java
new file mode 100644
index 00000000000..10cc7d3d157
--- /dev/null
+++
b/mode/type/cluster/core/src/test/java/org/apache/shardingsphere/mode/manager/cluster/event/builder/GlobalRuleDispatchEventBuilderTest.java
@@ -0,0 +1,56 @@
+/*
+ * 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.mode.manager.cluster.event.builder;
+
+import org.apache.shardingsphere.mode.event.DataChangedEvent;
+import org.apache.shardingsphere.mode.event.DataChangedEvent.Type;
+import org.apache.shardingsphere.mode.event.dispatch.DispatchEvent;
+import
org.apache.shardingsphere.mode.event.dispatch.config.AlterGlobalRuleConfigurationEvent;
+import org.junit.jupiter.api.Test;
+
+import java.util.Optional;
+
+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;
+
+class GlobalRuleDispatchEventBuilderTest {
+
+ private final GlobalRuleDispatchEventBuilder builder = new
GlobalRuleDispatchEventBuilder();
+
+ @Test
+ void assertGetSubscribedKey() {
+ assertThat(builder.getSubscribedKey(), is("/rules"));
+ }
+
+ @Test
+ void assertBuildAlterGlobalRuleConfigurationEvent() {
+ Optional<DispatchEvent> actual = builder.build(new
DataChangedEvent("/rules/foo_rule/active_version", "rule_value", Type.ADDED));
+ assertTrue(actual.isPresent());
+ assertThat(((AlterGlobalRuleConfigurationEvent)
actual.get()).getRuleSimpleName(), is("foo_rule"));
+ assertThat(((AlterGlobalRuleConfigurationEvent)
actual.get()).getActiveVersionKey(), is("/rules/foo_rule/active_version"));
+ assertThat(((AlterGlobalRuleConfigurationEvent)
actual.get()).getActiveVersion(), is("rule_value"));
+ }
+
+ @Test
+ void assertBuildWithInvalidEventKey() {
+ Optional<DispatchEvent> actual = builder.build(new
DataChangedEvent("/rules/foo_rule/xxx", "rule_value", Type.ADDED));
+ assertFalse(actual.isPresent());
+ }
+}