Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for expectPutAuthenticationError (0.31 sec)

  1. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3ErrorsIntegrationTest.groovy

                    from components.java
                }
            }
        }
        """
    
            when:
            def module = mavenS3Repo.module("org.gradle", "publishS3Test", "1.45")
            module.artifact.expectPutAuthenticationError()
    
            then:
            fails 'publish'
    
            failure.assertHasDescription("Execution failed for task ':publishPubPublicationToMavenRepository'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenPublishGcsErrorsIntegrationTest.groovy

                    from components.java
                }
            }
        }
        """
    
            when:
            def module = mavenGcsRepo.module("org.gradle", "publishGcsTest", "1.45")
            module.artifact.expectPutAuthenticationError()
    
            then:
            fails 'publish'
    
            failure.assertHasDescription("Execution failed for task ':publishPubPublicationToMavenRepository'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Resource.groovy

        def relativeFilePath() {
            String absolute = file.toURI()
            String base = "/${bucket}$repositoryPath"
            absolute.substring(absolute.indexOf(base), absolute.length())
        }
    
        def expectPutAuthenticationError() {
            server.stubPutFileAuthFailure(relativeFilePath());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsResource.groovy

        def relativeFilePath() {
            String absolute = file.toURI()
            String base = "/${bucket}$repositoryPath"
            absolute.substring(absolute.indexOf(base), absolute.length())
        }
    
        def expectPutAuthenticationError() {
            server.stubPutFileAuthFailure(relativeFilePath())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top