- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for isTrustedDomain (0.13 sec)
-
src/test/java/jcifs/DfsResolverTest.java
when(mockContext.getConfig()).thenReturn(mockConfig); } // Test for isTrustedDomain method @Test void testIsTrustedDomain_DfsDisabled() throws CIFSException { when(mockConfig.isDfsDisabled()).thenReturn(true); assertFalse(dfsResolver.isTrustedDomain(mockContext, "anyDomain")); } @Test void testIsTrustedDomain_NoUserDomain() throws CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/DfsImplTest.java
assertNotNull(dfsImpl); } // Tests for isTrustedDomain @Test void testIsTrustedDomain_DfsDisabled() throws SmbAuthException { // Scenario: DFS is disabled in the configuration. when(mockConfig.isDfsDisabled()).thenReturn(true); assertFalse(dfsImpl.isTrustedDomain(mockContext, "anydomain.com")); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/DfsResolver.java
* @param tf the CIFS context * @param domain the domain name to check * @return whether the given domain is trusted * @throws CIFSException if the operation fails */ boolean isTrustedDomain(CIFSContext tf, String domain) throws CIFSException; /** * Get a connection to the domain controller for a given domain * * @param tf the CIFS context * @param domain the domain name
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/DfsTest.java
trustedDomains.put("domain.com", new HashMap()); cacheEntry.map = trustedDomains; dfs._domains = cacheEntry; assertTrue(dfs.isTrustedDomain("domain.com", auth)); assertFalse(dfs.isTrustedDomain("otherdomain.com", auth)); } @Test void testGetDc_Disabled() throws SmbAuthException { // Test with disabled DFS testDfs.setDisabled(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.6K bytes - Viewed (0)