
org.gradle.api.internal.DependencyInjectionUsingClassGeneratorBackedInstantiatorTest.groovy Maven / Gradle / Ivy
/*
* Copyright 2017 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.api.internal
import org.gradle.internal.service.ServiceRegistry
import spock.lang.Specification
import javax.inject.Inject
class DependencyInjectionUsingClassGeneratorBackedInstantiatorTest extends Specification {
final ClassGenerator classGenerator = new AsmBackedClassGenerator()
final ServiceRegistry services = Mock()
final DependencyInjectingInstantiator dependencyInjectingInstantiator = new DependencyInjectingInstantiator(services, new DependencyInjectingInstantiator.ConstructorCache())
final instantiator = new ClassGeneratorBackedInstantiator(classGenerator, dependencyInjectingInstantiator)
def "injects service using getter injection"() {
given:
_ * services.get(String) >> "string"
when:
def result = instantiator.newInstance(HasGetterInjection)
then:
result instanceof DependencyInjectingInstantiator.WithServiceRegistry
result.someService == 'string'
}
def "class generation doesn't prevent injection of missing parameters from provided service registry"() {
given:
_ * services.get(String) >> "string"
when:
def result = instantiator.newInstance(HasInjectConstructor, 12)
then:
!(result instanceof DependencyInjectingInstantiator.WithServiceRegistry)
result.param1 == "string"
result.param2 == 12
}
public static class HasGetterInjection {
@Inject String getSomeService() { throw new UnsupportedOperationException() }
}
public static class HasInjectConstructor {
String param1
Number param2
@Inject
HasInjectConstructor(String param1, Number param2) {
this.param1 = param1
this.param2 = param2
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy