This is an automated email from the ASF dual-hosted git repository.

menghaoran 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 95309b73bf4 Add test cases on MetaDataVersionPersistService (#32975)
95309b73bf4 is described below

commit 95309b73bf4151598238281e556afe50ba2c0924
Author: Liang Zhang <[email protected]>
AuthorDate: Tue Sep 24 13:45:01 2024 +0800

    Add test cases on MetaDataVersionPersistService (#32975)
---
 .../version/MetaDataVersionPersistServiceTest.java | 66 ++++++++++++++++++++++
 1 file changed, 66 insertions(+)

diff --git 
a/kernel/metadata/core/src/test/java/org/apache/shardingsphere/metadata/persist/service/version/MetaDataVersionPersistServiceTest.java
 
b/kernel/metadata/core/src/test/java/org/apache/shardingsphere/metadata/persist/service/version/MetaDataVersionPersistServiceTest.java
new file mode 100644
index 00000000000..8d86e733e0a
--- /dev/null
+++ 
b/kernel/metadata/core/src/test/java/org/apache/shardingsphere/metadata/persist/service/version/MetaDataVersionPersistServiceTest.java
@@ -0,0 +1,66 @@
+/*
+ * 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.metadata.persist.service.version;
+
+import org.apache.shardingsphere.infra.metadata.version.MetaDataVersion;
+import org.apache.shardingsphere.mode.spi.PersistRepository;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import org.mockito.Mock;
+import org.mockito.junit.jupiter.MockitoExtension;
+
+import java.util.Arrays;
+
+import static org.hamcrest.CoreMatchers.is;
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.mockito.Mockito.verify;
+import static org.mockito.Mockito.when;
+
+@ExtendWith(MockitoExtension.class)
+class MetaDataVersionPersistServiceTest {
+    
+    private MetaDataVersionPersistService persistService;
+    
+    @Mock
+    private PersistRepository repository;
+    
+    @BeforeEach
+    void setUp() {
+        persistService = new MetaDataVersionPersistService(repository);
+    }
+    
+    @Test
+    void assertSwitchActiveVersion() {
+        persistService.switchActiveVersion(Arrays.asList(new 
MetaDataVersion("foo_db", "0", "1"), new MetaDataVersion("bar_db", "2", "2")));
+        verify(repository).persist("foo_db/active_version", "1");
+        verify(repository).delete("foo_db/versions/0");
+    }
+    
+    @Test
+    void assertGetActiveVersionByFullPath() {
+        when(repository.query("foo_db/active_version")).thenReturn("1");
+        
assertThat(persistService.getActiveVersionByFullPath("foo_db/active_version"), 
is("1"));
+    }
+    
+    @Test
+    void assertGetVersionPathByActiveVersion() {
+        when(repository.query("foo_db/versions/1")).thenReturn("foo_path");
+        
assertThat(persistService.getVersionPathByActiveVersion("foo_db/active_version",
 "1"), is("foo_path"));
+    }
+}

Reply via email to