org.gradle.play.plugins.PlayTestPluginTest.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 2014 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.play.plugins
import org.gradle.api.Task
import org.gradle.api.artifacts.Configuration
import org.gradle.api.artifacts.ConfigurationContainer
import org.gradle.api.artifacts.dsl.DependencyHandler
import org.gradle.api.internal.file.FileResolver
import org.gradle.api.internal.project.ProjectIdentifier
import org.gradle.api.tasks.testing.Test
import org.gradle.language.scala.tasks.PlatformScalaCompile
import org.gradle.model.ModelMap
import org.gradle.platform.base.BinaryTasksCollection
import org.gradle.play.internal.PlayApplicationBinarySpecInternal
import org.gradle.play.internal.toolchain.PlayToolChainInternal
import org.gradle.play.internal.toolchain.PlayToolProvider
import org.gradle.play.platform.PlayPlatform
import spock.lang.Specification
class PlayTestPluginTest extends Specification {
ModelMap taskModelMap = Mock(ModelMap)
def binaryContainer = Mock(ModelMap)
def projectIdentifier = Mock(ProjectIdentifier)
def binary = Mock(PlayApplicationBinarySpecInternal)
def playPlatform = Mock(PlayPlatform)
def playToolChain = Mock(PlayToolChainInternal)
def playToolProvider = Mock(PlayToolProvider)
def configuration = Stub(Configuration)
def configurations = Mock(ConfigurationContainer)
def dependencyHandler = Mock(DependencyHandler)
File buildDir = new File("tmp")
PlayTestPlugin plugin = new PlayTestPlugin()
def setup(){
_ * binaryContainer.iterator() >> [binary].iterator()
_ * binary.projectScopedName >> "someBinary"
_ * binary.getTasks() >> Stub(BinaryTasksCollection) {
taskName(_, _) >> { String verb, String object -> "${verb}SomeBinary${object.capitalize()}"}
taskName(_) >> { String verb -> "${verb}SomeBinary"}
}
_ * configurations.create(_) >> configuration
_ * configurations.maybeCreate(_) >> configuration
}
def "adds test related tasks per binary"() {
given:
def fileResolver = Mock(FileResolver)
1 * fileResolver.resolve('test') >> new File('test')
1 * binary.getTargetPlatform() >> playPlatform
1 * binary.getToolChain() >> playToolChain
1 * playToolChain.select(playPlatform) >> playToolProvider
when:
plugin.createTestTasks(taskModelMap, binaryContainer, new PlayPluginConfigurations(configurations, dependencyHandler), fileResolver, projectIdentifier, buildDir)
then:
1 * taskModelMap.create("compileSomeBinaryTests", PlatformScalaCompile, _)
1 * taskModelMap.create("testSomeBinary", Test, _)
0 * taskModelMap.create(_)
0 * taskModelMap.create(_, _, _)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy