Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TestRealm (0.25 sec)

  1. src/test/java/jcifs/http/NtlmHttpFilterTest.java

            initParams.put("jcifs.http.enableBasic", "true");
            initParams.put("jcifs.http.insecureBasic", "true");
            initParams.put("jcifs.http.basicRealm", "TestRealm");
    
            when(filterConfig.getInitParameterNames()).thenReturn(Collections.enumeration(initParams.keySet()));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/http/NtlmServletTest.java

            initParams.put("jcifs.http.enableBasic", "true");
            initParams.put("jcifs.http.insecureBasic", "true");
            initParams.put("jcifs.http.basicRealm", "TestRealm");
    
            lenient().when(servletConfig.getInitParameterNames()).thenReturn(Collections.enumeration(initParams.keySet()));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/http/NetworkExplorerTest.java

            initializeNetworkExplorer(true, "TestRealm");
    
            // Test with no auth - should request Basic
            when(request.getHeader("Authorization")).thenReturn(null);
    
            networkExplorer.doGet(request, response);
    
            // NetworkExplorer uses addHeader for Basic auth
            verify(response).addHeader("WWW-Authenticate", "Basic realm=\"TestRealm\"");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

      // http://code.google.com/p/android/issues/detail?id=11140
      @Test
      fun digestAuthentication() {
        val calls =
          authCallsForHeader(
            "WWW-Authenticate: Digest " +
              "realm=\"testrealm@host.com\", qop=\"auth,auth-int\", " +
              "nonce=\"dcd98b7102dd2f0e8b11d0f600bfb0c093\", " +
              "opaque=\"5ccc069c403ebaf9f0171e9517f40e41\"",
          )
        assertThat(calls.size).isEqualTo(0)
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
Back to top