org.gradle.language.assembler.plugins.AssemblerPluginTest.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 2013 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.assembler.plugins
import org.gradle.api.tasks.TaskDependencyMatchers
import org.gradle.language.assembler.AssemblerSourceSet
import org.gradle.language.assembler.tasks.Assemble
import org.gradle.model.ModelMap
import org.gradle.nativeplatform.*
import org.gradle.platform.base.PlatformBaseSpecification
import org.gradle.util.GFileUtils
class AssemblerPluginTest extends PlatformBaseSpecification {
def "creates asm source set with conventional locations for components"() {
when:
dsl {
pluginManager.apply AssemblerPlugin
model {
components {
exe(NativeExecutableSpec)
}
}
}
then:
def components = realizeComponents()
def exe = components.exe
exe.sources instanceof ModelMap
exe.sources.asm instanceof AssemblerSourceSet
exe.sources.asm.source.srcDirs == [project.file("src/exe/asm")] as Set
and:
def sources = realizeSourceSets()
sources as Set == exe.sources as Set
}
def "can configure source set locations"() {
given:
dsl {
pluginManager.apply AssemblerPlugin
model {
components {
exe(NativeExecutableSpec) {
sources {
asm {
source {
srcDirs "d1", "d2"
}
}
}
}
}
}
}
expect:
realizeComponents().exe.sources.asm.source.srcDirs*.name == ["d1", "d2"]
}
def "creates assemble tasks for each non-empty executable source set "() {
when:
touch("src/test/asm/dummy.s")
touch("src/test/anotherOne/dummy.s")
dsl {
pluginManager.apply AssemblerPlugin
model {
components {
test(NativeExecutableSpec) {
sources {
anotherOne(AssemblerSourceSet) {}
emptyOne(AssemblerSourceSet) {}
}
binaries.all { NativeBinary binary ->
binary.assembler.args "ARG1", "ARG2"
}
}
}
}
}
then:
NativeExecutableBinarySpec binary = realizeBinaries().testExecutable
binary.tasks.withType(Assemble)*.name == ["assembleTestExecutableTestAnotherOne", "assembleTestExecutableTestAsm"]
and:
binary.tasks.withType(Assemble).each { compile ->
compile instanceof Assemble
compile.toolChain == binary.toolChain
compile.assemblerArgs == ["ARG1", "ARG2"]
}
and:
def linkTask = binary.tasks.link
linkTask TaskDependencyMatchers.dependsOn("assembleTestExecutableTestAnotherOne", "assembleTestExecutableTestAsm")
}
def "creates assemble tasks for each library source set"() {
when:
touch("src/test/asm/dummy.s")
touch("src/test/anotherOne/dummy.s")
dsl {
pluginManager.apply AssemblerPlugin
model {
components {
test(NativeLibrarySpec) {
sources {
anotherOne(AssemblerSourceSet) {}
emptyOne(AssemblerSourceSet) {}
}
binaries.all {
assembler.args "ARG1", "ARG2"
}
binaries.withType(SharedLibraryBinarySpec) {
assembler.args "SHARED1", "SHARED2"
}
binaries.withType(StaticLibraryBinarySpec) {
assembler.args "STATIC1", "STATIC2"
}
}
}
}
}
then:
SharedLibraryBinarySpec sharedLib = realizeBinaries().testSharedLibrary
sharedLib.tasks.withType(Assemble)*.name == ["assembleTestSharedLibraryTestAnotherOne", "assembleTestSharedLibraryTestAsm"]
sharedLib.tasks.withType(Assemble).each { compile ->
compile.toolChain == sharedLib.toolChain
compile.assemblerArgs == ["ARG1", "ARG2", "SHARED1", "SHARED2"]
}
def sharedLinkTask = sharedLib.tasks.link
sharedLinkTask TaskDependencyMatchers.dependsOn("assembleTestSharedLibraryTestAnotherOne", "assembleTestSharedLibraryTestAsm")
and:
StaticLibraryBinarySpec staticLib = realizeBinaries().testStaticLibrary
staticLib.tasks.withType(Assemble)*.name == ["assembleTestStaticLibraryTestAnotherOne", "assembleTestStaticLibraryTestAsm"]
staticLib.tasks.withType(Assemble).each { compile ->
compile.toolChain == sharedLib.toolChain
compile.assemblerArgs == ["ARG1", "ARG2", "STATIC1", "STATIC2"]
}
def staticLibTask = staticLib.tasks.createStaticLib
staticLibTask TaskDependencyMatchers.dependsOn("assembleTestStaticLibraryTestAnotherOne", "assembleTestStaticLibraryTestAsm")
}
def touch(String filePath) {
GFileUtils.touch(project.file(filePath))
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy