org.gradle.api.internal.plugins.DefaultConventionTest.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 2007-2008 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.plugins
import org.gradle.api.internal.ThreadGlobalInstantiator
import org.gradle.api.plugins.Convention
import org.gradle.api.plugins.TestPluginConvention1
import org.gradle.api.plugins.TestPluginConvention2
import org.gradle.internal.reflect.Instantiator
import org.junit.Before
import org.junit.Test
import static org.hamcrest.Matchers.equalTo
import static org.junit.Assert.*
class DefaultConventionTest {
Convention convention
TestPluginConvention1 convention1
TestPluginConvention2 convention2
Instantiator instantiator = ThreadGlobalInstantiator.getOrCreate()
@Before public void setUp() {
convention = new DefaultConvention(instantiator)
convention1 = new TestPluginConvention1()
convention2 = new TestPluginConvention2()
convention.plugins.plugin1 = convention1
convention.plugins.plugin2 = convention2
}
@Test public void mixesInEachPropertyOfConventionObject() {
assertEquals(convention1.b, convention.extensionsAsDynamicObject.b)
}
@Test public void conventionObjectsPropertiesHavePrecendenceAccordingToOrderAdded() {
assertEquals(convention1.a, convention.extensionsAsDynamicObject.a)
}
@Test public void canSetConventionObjectProperties() {
convention.extensionsAsDynamicObject.b = 'newvalue'
assertEquals('newvalue', convention1.b)
}
@Test public void canSetPropertiesWithAmbiguity() {
convention.extensionsAsDynamicObject.a = 'newvalue'
assertEquals('newvalue', convention1.a)
}
@Test(expected = MissingPropertyException) public void throwsMissingPropertyExceptionForUnknownProperty() {
convention.extensionsAsDynamicObject.prop
}
@Test public void mixesInEachMethodOfConventionObject() {
assertEquals(convention1.meth('somearg'), convention.extensionsAsDynamicObject.meth('somearg'))
}
@Test public void conventionObjectsMethodsHavePrecendenceAccordingToOrderAdded() {
assertEquals(convention1.meth(), convention.extensionsAsDynamicObject.meth())
}
@Test(expected = MissingMethodException) public void testMissingMethod() {
convention.extensionsAsDynamicObject.methUnknown()
}
@Test public void testCanLocateConventionObjectByType() {
assertSame(convention1, convention.getPlugin(TestPluginConvention1))
assertSame(convention2, convention.getPlugin(TestPluginConvention2))
assertSame(convention1, convention.findPlugin(TestPluginConvention1))
assertSame(convention2, convention.findPlugin(TestPluginConvention2))
}
@Test public void testGetPluginFailsWhenMultipleConventionObjectsWithCompatibleType() {
try {
convention.getPlugin(Object)
fail()
} catch (java.lang.IllegalStateException e) {
assertThat(e.message, equalTo('Found multiple convention objects of type Object.'))
}
}
@Test public void testFindPluginFailsWhenMultipleConventionObjectsWithCompatibleType() {
try {
convention.getPlugin(Object)
fail()
} catch (java.lang.IllegalStateException e) {
assertThat(e.message, equalTo('Found multiple convention objects of type Object.'))
}
}
@Test public void testGetPluginFailsWhenNoConventionObjectsWithCompatibleType() {
try {
convention.getPlugin(String)
fail()
} catch (java.lang.IllegalStateException e) {
assertThat(e.message, equalTo('Could not find any convention object of type String.'))
}
}
@Test public void testFindPluginReturnsNullWhenNoConventionObjectsWithCompatibleType() {
assertNull(convention.findPlugin(String))
}
@Test public void addsPropertyAndConfigureMethodForEachExtension() {
//when
convention = new DefaultConvention(instantiator)
def ext = new FooExtension()
convention.add("foo", ext)
//then
assertTrue(convention.extensionsAsDynamicObject.hasProperty("foo"))
assertTrue(convention.extensionsAsDynamicObject.hasMethod("foo", {}))
assertEquals(convention.extensionsAsDynamicObject.properties.get("foo"), ext);
}
@Test public void extensionsTakePrecendenceOverPluginConventions() {
convention = new DefaultConvention(instantiator)
convention.plugins.foo = new FooPluginExtension()
convention.add("foo", new FooExtension())
assertTrue(convention.extensionsAsDynamicObject.properties.get("foo") instanceof FooExtension);
assertTrue(convention.extensionsAsDynamicObject.foo instanceof FooExtension);
convention.extensionsAsDynamicObject.foo {
assertEquals("Hello world!", message);
}
}
@Test void canCreateExtensions() {
convention = new DefaultConvention(instantiator)
FooExtension extension = convention.create("foo", FooExtension)
assert extension.is(convention.getByName("foo"))
}
static class FooExtension {
String message = "Hello world!";
}
static class FooPluginExtension {
String foo = "foo"
void foo(Closure closure) {
fail("should not be called");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy