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 c8b6dcb4c33 Add test case for ShardingSphereURLLoadEngine (#30271)
c8b6dcb4c33 is described below

commit c8b6dcb4c3316df1766aaa27640c7266662e0bde
Author: ilyas ahsan <[email protected]>
AuthorDate: Sat Feb 24 21:41:24 2024 +0700

    Add test case for ShardingSphereURLLoadEngine (#30271)
    
    * Add test case for ShardingSphereURLLoadEngine
    
    * Fix code style to follow formatter rules.
---
 .../url/core/ShardingSphereURLLoadEngineTest.java  | 52 ++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git 
a/infra/url/core/src/test/java/org/apache/shardingsphere/infra/url/core/ShardingSphereURLLoadEngineTest.java
 
b/infra/url/core/src/test/java/org/apache/shardingsphere/infra/url/core/ShardingSphereURLLoadEngineTest.java
new file mode 100644
index 00000000000..d2e9d7572ee
--- /dev/null
+++ 
b/infra/url/core/src/test/java/org/apache/shardingsphere/infra/url/core/ShardingSphereURLLoadEngineTest.java
@@ -0,0 +1,52 @@
+/*
+ * 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.url.core;
+
+import org.apache.shardingsphere.infra.spi.type.typed.TypedSPILoader;
+import org.apache.shardingsphere.infra.url.spi.ShardingSphereURLLoader;
+import org.junit.jupiter.api.Test;
+import org.mockito.MockedStatic;
+
+import java.util.Properties;
+
+import static org.hamcrest.CoreMatchers.is;
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.mockito.ArgumentMatchers.any;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.mockStatic;
+import static org.mockito.Mockito.when;
+
+public class ShardingSphereURLLoadEngineTest {
+    
+    @Test
+    void assertLoadContent() {
+        String content = "foo_driver_fixture_db=2\nstorage_unit_count=2\n";
+        ShardingSphereURL url = mock(ShardingSphereURL.class);
+        ShardingSphereURLLoader urlLoader = 
mock(ShardingSphereURLLoader.class);
+        
+        when(url.getSourceType()).thenReturn("classpath:");
+        when(url.getQueryProps()).thenReturn(new Properties());
+        when(urlLoader.load(any(), any())).thenReturn(content);
+        
+        MockedStatic<TypedSPILoader> typedSPILoaderMockedStatic = 
mockStatic(TypedSPILoader.class);
+        typedSPILoaderMockedStatic.when(() -> 
TypedSPILoader.getService(ShardingSphereURLLoader.class, 
"classpath:")).thenReturn(urlLoader);
+        ShardingSphereURLLoadEngine shardingSphereURLLoadEngine = new 
ShardingSphereURLLoadEngine(url);
+        
+        assertThat(shardingSphereURLLoadEngine.loadContent(), 
is(content.getBytes()));
+    }
+}

Reply via email to