blob: c530b94cb1a3230faf3a5da1364544beeb3ef624 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
/**
* To test access to method scoped variable within closure
*
* @author <a href="mailto:jeremy.rayner@bigfoot.com">Jeremy Rayner</a>
*/
class MethodParameterAccessWithinClosureTest extends GroovyTestCase {
def cheese
def shop
void setUp() {
cheese = null
shop = ["wensleydale"]
}
void testSimpleMethodParameterAccess() {
assert "wensleydale" == vendor1("wensleydale")
}
void testMethodParameterWithDifferentNameToPropertyUsingClosure() {
assert "wensleydale" == vendor2("wensleydale")
}
void testMethodParameterWithSameNameAsPropertyUsingClosure() {
assert "wensleydale" == vendor3("wensleydale")
}
void testOptionalMethodParameterUsedInClosure() {
assert "wensleydale" == vendor4("wensleydale")
assert null == vendor4()
}
void testDoubleParameterAndsingleParameterUsedInClosure() {
assert vendor5(5.0d,2) == 7.0d
}
void testAccessToMethodParameterInOverwrittenMethodCalledBySuper() {
// GROOVY-2107
assertScript """
class A {
// the closure is accessing the parameter
def foo(x){ return {x}}
}
class B extends A {
def foo(y) {
super.foo(y+1)
}
}
def b = new B()
assert b.foo(1).call() == 2
"""
}
private String vendor1(cheese) {
cheese
}
private String vendor2(aCheese) {
shop.find() {it == aCheese}
}
private String vendor3(cheese) {
shop.find() {it == cheese}
}
/** note: cheese is a field, that is intended **/
private vendor4(aCheese=cheese) {
shop.find() {it == aCheese}
}
private vendor5(double a, int b) {
b.times {a++}
return a
}
}