All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.integtests.resolve.SelfResolvingDependencyIntegrationTest.groovy Maven / Gradle / Ivy

There is a newer version: 8.6
Show newest version
/*
 * Copyright 2016 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.gradle.integtests.resolve

import org.gradle.integtests.fixtures.AbstractDependencyResolutionTest

class SelfResolvingDependencyIntegrationTest extends AbstractDependencyResolutionTest {
    def "can query file dependency for its files"() {
        buildFile << """
allprojects {
    configurations { 
        compile
    }
}
artifacts {
    compile file("main.jar") // include to ensure artifacts are not included in the result
}
dependencies {
    compile files("lib.jar")
    compile "group:test1:1.0" // unknown module, include to ensure that other dependencies are not resolved
}

task verify {
    doLast {
        def dep = configurations.compile.dependencies.find { it instanceof FileCollectionDependency }
        println "files: " + dep.resolve().collect { it.name }
        println "files-not-transitive: " + dep.resolve(false).collect { it.name } 
        println "files-transitive: " + dep.resolve(true).collect { it.name }
    }
}
"""

        when:
        run "verify"

        then:
        outputContains("files: [lib.jar]")
        outputContains("files-not-transitive: [lib.jar]")
        outputContains("files-transitive: [lib.jar]")
    }

    // This test documents existing behaviour rather than desired behaviour
    def "can query project dependency for its files"() {
        mavenRepo.module("group", "test1", "1.0").publish()
        mavenRepo.module("group", "test2", "1.0").publish()

        settingsFile << """
rootProject.name = "main"
include "child1", "child2", "child3"
"""
        buildFile << """
allprojects {
    repositories {
        maven { url '${mavenRepo.uri}' }
    }
    configurations { 
        compile
        create('default') { extendsFrom compile }
    }
}
artifacts {
    compile file("main.jar")
}
dependencies {
    compile files("lib.jar")
    compile "group:test1:1.0"
    compile project(':child1')
    compile project(':child2')
}
project(':child1') {
    artifacts {
        compile file("child1.jar")
    }
    dependencies {
        compile files("child1-lib.jar")
        compile "group:test2:1.0"
        compile project(':child3')
    }
}
project(':child2') {
    artifacts {
        compile file("child2.jar")
    }
    dependencies {
        compile files("child2-lib.jar")
    }
}
project(':child3') {
    artifacts {
        compile file("child3.jar")
    }
    dependencies {
        compile files("child3-lib.jar")
    }
}

task verify {
    doLast {
        def dep = configurations.compile.dependencies.find { it instanceof ProjectDependency }
        println "files: " + dep.resolve().collect { it.name }
        println "files-not-transitive: " + dep.resolve(false).collect { it.name } 
        println "files-transitive: " + dep.resolve(true).collect { it.name }
    }
}
"""

        when:
        run "verify"

        then:
        outputContains("files: [child1-lib.jar, child3-lib.jar]")
        outputContains("files-not-transitive: []")
        outputContains("files-transitive: [child1-lib.jar, child3-lib.jar]")
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy