org.gradle.tooling.internal.consumer.connection.BuildControllerAdapterTest.groovy Maven / Gradle / Ivy
/*
* 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.tooling.internal.consumer.connection
import org.gradle.tooling.UnknownModelException
import org.gradle.tooling.internal.adapter.ObjectGraphAdapter
import org.gradle.tooling.internal.adapter.ProtocolToModelAdapter
import org.gradle.tooling.internal.adapter.ViewBuilder
import org.gradle.tooling.internal.consumer.versioning.ModelMapping
import org.gradle.tooling.internal.protocol.*
import org.gradle.tooling.model.Element
import org.gradle.tooling.model.gradle.GradleBuild
import spock.lang.Specification
class BuildControllerAdapterTest extends Specification {
def internalController = Mock(InternalBuildController)
def graphAdapter = Mock(ObjectGraphAdapter)
def adapter = Mock(ProtocolToModelAdapter) {
newGraph() >> graphAdapter
}
def mapping = Stub(ModelMapping) {
getModelIdentifierFromModelType(_) >> { Class type ->
return Stub(ModelIdentifier) {
getName() >> type.simpleName
}
}
}
def controller = new BuildControllerAdapter(adapter, internalController, mapping, new File("root"))
def "unpacks unsupported model exception"() {
def failure = new RuntimeException()
given:
_ * internalController.getModel(null, _) >> { throw new InternalUnsupportedModelException().initCause(failure) }
when:
controller.getModel(String)
then:
UnknownModelException e = thrown()
e.message == /No model of type 'String' is available in this build./
e.cause == failure
}
def "fetches model for target object"() {
def model = new Object()
def targetElement = new Object()
def modelElement = Stub(Element)
def modelView = Stub(GradleBuild)
when:
def result = controller.getModel(modelElement, GradleBuild)
then:
result == modelView
and:
1 * adapter.unpack(modelElement) >> targetElement
1 * internalController.getModel(targetElement, _) >> { def target, ModelIdentifier identifier ->
assert identifier.name == 'GradleBuild'
return Stub(BuildResult) {
getModel() >> model
}
}
1 * graphAdapter.builder(GradleBuild) >> Stub(ViewBuilder) {
build(model) >> modelView
}
}
def "fetches missing model for target object"() {
def targetElement = new Object()
def modelElement = Stub(Element)
when:
def result = controller.findModel(modelElement, GradleBuild)
then:
result == null
and:
1 * adapter.unpack(modelElement) >> targetElement
1 * internalController.getModel(targetElement, _) >> { throw new InternalUnsupportedModelException() }
}
def "fetches build model"() {
def model = Stub(InternalProtocolInterface)
def modelView = Stub(GradleBuild)
when:
def result = controller.buildModel
then:
result == modelView
and:
1 * internalController.getModel(null, _) >> { def target, ModelIdentifier identifier ->
assert identifier.name == 'GradleBuild'
return Stub(BuildResult) {
getModel() >> model
}
}
1 * graphAdapter.builder(GradleBuild) >> Stub(ViewBuilder) {
build(model) >> modelView
}
}
def "fetches missing model"() {
when:
def result = controller.findModel(GradleBuild)
then:
result == null
and:
1 * internalController.getModel(null, _) >> { throw new InternalUnsupportedModelException() }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy