Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for configureServerCert (0.34 sec)

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

            given:
            keyStore.enableSslWithServerCert(mavenHttpRepo.server) {
                it.addExcludeProtocols("TLSv1.2", "TLSv1.3")
                it.setIncludeProtocols("TLSv1", "TLSv1.1")
            }
            keyStore.configureServerCert(executer)
            def module = mavenHttpRepo.module('group', 'projectA', '1.2').publish()
    
            and:
            writeBuildFile()
            failedResolve.prepare()
    
            when:
            module.allowAll()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpsToHttpsRedirectResolveIntegrationTest.groovy

        }
    
        void beforeServerStart() {
            keyStore = TestKeyStore.init(resources.dir)
            keyStore.enableSslWithServerCert(server)
            keyStore.enableSslWithServerCert(backingServer)
            keyStore.configureServerCert(executer)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpsProxyResolveIntegrationTest.groovy

        @Override
        boolean isTunnel() { true }
    
        @Override
        void setupServer() {
            keyStore = TestKeyStore.init(resources.dir)
            keyStore.enableSslWithServerCert(server)
            keyStore.configureServerCert(executer)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpsToHttpRedirectResolveIntegrationTest.groovy

            return true
        }
    
        void beforeServerStart() {
            keyStore = TestKeyStore.init(resources.dir)
            keyStore.enableSslWithServerCert(server)
            keyStore.configureServerCert(executer)
        }
    
        def "refuses resolves module artifacts via HTTPS to HTTP redirect"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/AbstractHttpScriptPluginIntegrationSpec.groovy

            executer.requireOwnGradleUserHomeDir()
        }
    
        protected void applyTrustStore() {
            def keyStore = TestKeyStore.init(resources.dir)
            keyStore.enableSslWithServerCert(server)
            keyStore.configureServerCert(executer)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:45:30 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaRetriesIntegTest.groovy

                                }
                            }
                        }
                    }
                }
            """
    
            when:
            keyStore.configureServerCert(executer)
            expectPublication()
    
            ExecutionResult result = run "publish", '--info'
    
            then:
            verifyPublications()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpsIntegTest.groovy

        }
    
        def "publish with server certificate"() {
            given:
            keyStore.enableSslWithServerCert(server)
            initBuild()
    
            when:
            expectPublication()
            keyStore.configureServerCert(executer)
            succeeds 'publish'
    
            then:
            verifyPublications()
        }
    
        def "publish with server and client certificate"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpsIntegTest.groovy

        }
    
        def "publish with server certificate"() {
            given:
            keyStore.enableSslWithServerCert(server)
            initBuild()
    
            when:
            expectPublication()
            keyStore.configureServerCert(executer)
            succeeds 'publish'
    
            then:
            verifyPublications()
        }
    
        def "publish with server and client certificate"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaRetriesIntegTest.groovy

                        ivy(IvyPublication) {
                            from components.java
                        }
                    }
                }
            """
    
            when:
            keyStore.configureServerCert(executer)
            expectPublication()
    
            ExecutionResult result = run "publish", '--info'
    
            then:
            verifyPublications()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/resource/TextResourceIntegrationTest.groovy

            def uuid = UUID.randomUUID()
            def resourceFile = file("web-file.txt")
            def keyStore = TestKeyStore.init(resource.dir)
            keyStore.enableSslWithServerCert(server)
            keyStore.configureServerCert(executer)
    
            server.expectGet("/myConfig-${uuid}.txt", resourceFile)
            server.start()
    
            buildFile << """
                task uriText(type: MyTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top