Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for configureServerCert (0.38 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/AbstractHttpsRepoResolveIntegrationTest.groovy

            keyStore.enableSslWithServerCert(server)
            server.authenticationScheme = authScheme
    
            setupRepo(useAuth)
            setupBuildFile(repoType, useAuth)
    
            when:
            keyStore.configureServerCert(executer)
            succeeds "libs"
    
            then:
            file('libs').assertHasDescendants('my-module-1.0.jar')
            and:
            server.authenticationAttempts.asList() == authenticationAttempts
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/keystore/TestKeyStore.groovy

        ) {
            // intentionally use wrong trust store for server
            server.enableSsl(trustStore.path, trustStorePassword, trustStore.path, keyStorePassword, configureServer)
        }
    
        void configureServerCert(GradleExecuter executer) {
            def args = getTrustStoreArguments()
            if (GradleContextualExecuter.embedded) {
                args.each {
                    executer.withArgument(it)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

                // https://issues.apache.org/jira/browse/HTTPCLIENT-1478
                def keyStore = TestKeyStore.init(temporaryFolder.file('ssl-keystore'))
                keyStore.enableSslWithServerCert(server)
                keyStore.configureServerCert(executer)
                server.expectSslHandshakeBlocking()
            } else {
                assert false: "Unsupported protocol: ${protocol}"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top