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

yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-4.1 by this push:
     new 9a4f77afe78 branch-4.1: [fix](fe) Remove oidc plugin assertions from 
AuthenticationPluginManagerTest #63323 (#67950)
9a4f77afe78 is described below

commit 9a4f77afe78351ccbf58239c81db9bfb340c8a2e
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Sep 15 10:28:58 2026 +0800

    branch-4.1: [fix](fe) Remove oidc plugin assertions from 
AuthenticationPluginManagerTest #63323 (#67950)
    
    Cherry-picked from #63323
    
    Co-authored-by: heguanhui <[email protected]>
---
 .../authentication/handler/AuthenticationPluginManagerTest.java      | 5 -----
 1 file changed, 5 deletions(-)

diff --git 
a/fe/fe-authentication/fe-authentication-handler/src/test/java/org/apache/doris/authentication/handler/AuthenticationPluginManagerTest.java
 
b/fe/fe-authentication/fe-authentication-handler/src/test/java/org/apache/doris/authentication/handler/AuthenticationPluginManagerTest.java
index 6cde32bb90f..260afb30a96 100644
--- 
a/fe/fe-authentication/fe-authentication-handler/src/test/java/org/apache/doris/authentication/handler/AuthenticationPluginManagerTest.java
+++ 
b/fe/fe-authentication/fe-authentication-handler/src/test/java/org/apache/doris/authentication/handler/AuthenticationPluginManagerTest.java
@@ -70,7 +70,6 @@ public class AuthenticationPluginManagerTest {
         // Then
         Assertions.assertNotNull(pluginNames);
         Assertions.assertFalse(pluginNames.isEmpty(), "Should load at least 
built-in plugins");
-        Assertions.assertTrue(pluginNames.contains("oidc"), "Should include 
oidc plugin");
         Assertions.assertTrue(pluginNames.contains("password"), "Should 
include password plugin");
     }
 
@@ -147,10 +146,6 @@ public class AuthenticationPluginManagerTest {
         // Then
         Assertions.assertTrue(factory.isPresent());
         Assertions.assertEquals("password", factory.get().name());
-
-        Optional<AuthenticationPluginFactory> oidcFactory = 
pluginManager.getFactory("oidc");
-        Assertions.assertTrue(oidcFactory.isPresent());
-        Assertions.assertEquals("oidc", oidcFactory.get().name());
     }
 
     @Test


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to