org.gradle.language.cpp.CppIncrementalBuildStaleOutputsIntegrationTest.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2018 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.language.cpp
import org.gradle.integtests.fixtures.SourceFile
import org.gradle.nativeplatform.fixtures.AbstractInstalledToolChainIntegrationSpec
import org.gradle.nativeplatform.fixtures.app.IncrementalCppStaleCompileOutputApp
import org.gradle.nativeplatform.fixtures.app.IncrementalCppStaleCompileOutputLib
import org.gradle.nativeplatform.fixtures.app.IncrementalCppStaleLinkOutputApp
import org.gradle.nativeplatform.fixtures.app.IncrementalCppStaleLinkOutputAppWithLib
import org.gradle.nativeplatform.fixtures.app.IncrementalCppStaleLinkOutputLib
import org.gradle.nativeplatform.fixtures.app.SourceElement
class CppIncrementalBuildStaleOutputsIntegrationTest extends AbstractInstalledToolChainIntegrationSpec implements CppTaskNames {
def "removes stale object files for executable"() {
settingsFile << "rootProject.name = 'app'"
def app = new IncrementalCppStaleCompileOutputApp()
given:
app.writeToProject(testDirectory)
and:
buildFile << """
apply plugin: 'cpp-application'
"""
and:
succeeds "assemble"
app.applyChangesToProject(testDirectory)
expect:
succeeds "assemble"
result.assertTasksExecuted(tasks.debug.allToInstall, ":assemble")
result.assertTasksNotSkipped(tasks.debug.allToInstall, ":assemble")
file("build/obj/main/debug").assertHasDescendants(expectIntermediateDescendants(app.alternate))
executable("build/exe/main/debug/app").assertExists()
installation("build/install/main/debug").exec().out == app.expectedOutput
}
def "removes stale object files for library"() {
def lib = new IncrementalCppStaleCompileOutputLib()
settingsFile << "rootProject.name = 'hello'"
given:
lib.writeToProject(testDirectory)
and:
buildFile << """
apply plugin: 'cpp-library'
"""
and:
succeeds "assemble"
lib.applyChangesToProject(testDirectory)
expect:
succeeds "assemble"
result.assertTasksExecuted(tasks.debug.allToLink, ":assemble")
result.assertTasksNotSkipped(tasks.debug.allToLink, ":assemble")
file("build/obj/main/debug").assertHasDescendants(expectIntermediateDescendants(lib.alternate))
sharedLibrary("build/lib/main/debug/hello").assertExists()
}
def "removes stale installed executable and library file when all source files for executable are removed"() {
settingsFile << "include 'app', 'greeter'"
def app = new IncrementalCppStaleLinkOutputAppWithLib()
given:
buildFile << """
project(':app') {
apply plugin: 'cpp-application'
dependencies {
implementation project(':greeter')
}
}
project(':greeter') {
apply plugin: 'cpp-library'
}
"""
app.library.writeToProject(file("greeter"))
app.executable.writeToProject(file("app"))
when:
succeeds "assemble"
then:
executable("app/build/exe/main/debug/app").assertExists()
file("app/build/obj/main/debug").assertHasDescendants(expectIntermediateDescendants(app.executable.original))
installation("app/build/install/main/debug").assertInstalled()
sharedLibrary("greeter/build/lib/main/debug/greeter").assertExists()
file("greeter/build/obj/main/debug").assertHasDescendants(expectIntermediateDescendants(app.library.original))
when:
app.library.applyChangesToProject(file('greeter'))
app.executable.applyChangesToProject(file('app'))
succeeds "assemble"
then:
def skippedTasks = tasks(":greeter").debug.allToLink + [":greeter:assemble", ":assemble"]
def notSkippedTasks = tasks(":app").debug.allToInstall + [":app:assemble"]
result.assertTasksExecuted(skippedTasks, notSkippedTasks)
result.assertTasksNotSkipped(notSkippedTasks)
result.assertTasksSkipped(skippedTasks)
executable("app/build/exe/main/debug/app").assertDoesNotExist()
file("app/build/exe/main/debug").assertDoesNotExist()
file("app/build/obj/main/debug").assertHasDescendants()
installation("app/build/install/main/debug").assertNotInstalled()
sharedLibrary("greeter/build/lib/main/debug/greeter").assertExists()
file("greeter/build/obj/main/debug").assertHasDescendants(expectIntermediateDescendants(app.library.alternate))
}
def "removes stale executable file when all source files are removed"() {
settingsFile << "rootProject.name = 'app'"
def app = new IncrementalCppStaleLinkOutputApp()
given:
app.writeToProject(testDirectory)
and:
buildFile << """
apply plugin: 'cpp-application'
"""
when:
succeeds "assemble"
then:
executable("build/exe/main/debug/app").assertExists()
file("build/obj/main/debug").assertHasDescendants(expectIntermediateDescendants(app.original))
installation("build/install/main/debug").assertInstalled()
when:
app.applyChangesToProject(testDirectory)
succeeds "assemble"
then:
result.assertTasksExecuted(tasks.debug.allToInstall, ":assemble")
result.assertTasksNotSkipped(tasks.debug.allToInstall, ":assemble")
executable("build/exe/main/debug/app").assertDoesNotExist()
file("build/exe/main/debug").assertDoesNotExist()
file("build/obj/main/debug").assertHasDescendants()
installation("build/install/main/debug").assertNotInstalled()
}
def "removes stale library file when all source files are removed"() {
def lib = new IncrementalCppStaleLinkOutputLib()
settingsFile << "rootProject.name = 'hello'"
given:
lib.writeToProject(testDirectory)
and:
buildFile << """
apply plugin: 'cpp-library'
"""
when:
succeeds "assemble"
then:
sharedLibrary("build/lib/main/debug/hello").assertExists()
file("build/obj/main/debug").assertHasDescendants(expectIntermediateDescendants(lib.original))
when:
lib.applyChangesToProject(testDirectory)
succeeds "assemble"
then:
result.assertTasksExecuted(tasks.debug.allToLink, ":assemble")
result.assertTasksNotSkipped(tasks.debug.allToLink, ":assemble")
sharedLibrary("build/lib/main/debug/hello").assertDoesNotExist()
file("build/lib/main/debug").assertDoesNotExist()
file("build/obj/main/debug").assertHasDescendants()
}
private List expectIntermediateDescendants(SourceElement sourceElement) {
List result = new ArrayList()
String sourceSetName = sourceElement.getSourceSetName()
String intermediateFilesDirPath = "build/obj/main/debug"
File intermediateFilesDir = file(intermediateFilesDirPath)
for (SourceFile sourceFile : sourceElement.getFiles()) {
if (!sourceFile.getName().endsWith(".h")) {
def cppFile = file("src", sourceSetName, sourceFile.path, sourceFile.name)
result.add(objectFileFor(cppFile, intermediateFilesDirPath).relativizeFrom(intermediateFilesDir).path)
if (toolChain.isVisualCpp()) {
result.add(debugFileFor(cppFile).relativizeFrom(intermediateFilesDir).path)
}
}
}
return result
}
def debugFileFor(File sourceFile, String intermediateFilesDir = "build/obj/main/debug") {
return intermediateFileFor(sourceFile, intermediateFilesDir, ".obj.pdb")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy