Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for expectGetMissing (0.18 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenDescriptorIntegrationTest.groovy

            def module = ivyHttpRepo.module('group', 'projectA', '1.2').extendsFrom(organisation: 'group', module: 'parent', revision: 'a').publish()
    
            when:
            module.ivy.expectGet()
            parent.ivy.expectGetMissing()
    
            then:
            fails "checkDeps"
            failedResolve.assertFailurePresent(failure)
            failure
                .assertResolutionFailure(":compile")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenGradleMetadataRedirectionIntegrationTest.groovy

            buildFile << """
                dependencies {
                    api "org:main:1.0"
                }
            """
    
            when:
            mainModule.pom.expectGet()
            mainModule.moduleMetadata.expectGetMissing()
            mainModule.artifact.expectGet()
    
            run ':checkDeps'
    
            then:
            // falls back to POM file, since we have one
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/BadPomFileResolveIntegrationTest.groovy

    }
    configurations { compile }
    dependencies { compile 'org:child:1.0' }
    """
            failedResolve.prepare()
    
            when:
            child.pom.expectGet()
            parent.pom.expectGetMissing()
    
            and:
            fails 'checkDeps'
    
            then:
            failedResolve.assertFailurePresent(failure)
            failure.assertResolutionFailure(':compile')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:31:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyHttpRepoResolveIntegrationTest.groovy

            failureHasCause("Could not GET '$repo1.uri/group/projectA/1.0/ivy-1.0.xml'")
            failureHasCause('Read timed out')
    
            when:
            server.resetExpectations()
            module1.ivy.expectGetMissing()
            module2.ivy.expectGet()
            module2.jar.expectDownload()
    
            then:
            succeeds('checkDeps')
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top