blob: 7310b1dc79e68570ab82c23dd7036a0652da5c31 [file] [log] [blame]
/*
* Copyright 2003-2007 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 groovy.lang
/**
* Tests how closures resolve to either a delegate or an owner for a given resolveStrategy
* @author Graeme Rocher
* @since 1.1
*
* Created: Jul 12, 2007
* Time: 5:45:33 PM
*
*/
class ClosureResolvingTest extends GroovyTestCase {
def foo = "bar"
def bar = "foo"
void testResolveToSelf() {
def c = { foo }
assertEquals "bar", c.call()
c.resolveStrategy = Closure.TO_SELF
shouldFail {
c.call()
}
def metaClass = c.class.metaClass
metaClass.getFoo = {-> "hello!" }
c.metaClass = metaClass
assertEquals "hello!", c.call()
c = { doStuff() }
c.resolveStrategy = Closure.TO_SELF
shouldFail {
c.call()
}
metaClass = c.class.metaClass
metaClass.doStuff = {-> "hello" }
c.metaClass = metaClass
assertEquals "hello", c.call()
}
def doStuff() { "stuff" }
void testResolveDelegateFirst() {
def c = { foo }
assertEquals "bar", c.call()
c.setResolveStrategy(Closure.DELEGATE_FIRST)
c.delegate = [foo:"hello!"]
assertEquals "hello!", c.call()
c = { doStuff() }
c.setResolveStrategy(Closure.DELEGATE_FIRST)
assertEquals "stuff", c.call()
c.delegate = new TestResolve1()
assertEquals "foo", c.call()
}
void testResolveOwnerFirst() {
def c = { foo }
assertEquals "bar", c.call()
c.delegate = [foo:"hello!"]
assertEquals "bar", c.call()
c = { doStuff() }
c.delegate = new TestResolve1()
assertEquals "stuff", c.call()
}
void testResolveDelegateOnly() {
def c = { foo + bar }
assertEquals "barfoo", c.call()
c.resolveStrategy = Closure.DELEGATE_FIRST
c.delegate = new TestResolve1()
assertEquals "hellofoo", c.call()
c.resolveStrategy = Closure.DELEGATE_ONLY
shouldFail {
c.call()
}
c.delegate = new TestResolve2()
assertEquals "helloworld", c.call()
c = { doStuff() }
c.resolveStrategy = Closure.DELEGATE_ONLY
c.delegate = new TestResolve1()
assertEquals "foo", c.call()
}
void testResolveOwnerOnly() {
def c = { foo + bar }
assertEquals "barfoo", c.call()
c.resolveStrategy = Closure.OWNER_ONLY
c.delegate = new TestResolve2()
assertEquals "barfoo", c.call()
c = { doStuff() }
assertEquals "stuff", c.call()
c.resolveStrategy = Closure.OWNER_ONLY
c.delegate = new TestResolve1()
assertEquals "stuff", c.call()
}
}
class TestResolve1 {
def foo = "hello"
def doStuff() { "foo" }
}
class TestResolve2 {
def foo = "hello"
def bar = "world"
def doStuff() { "bar" }
}