blob: 5ba2e110228ecc14e3e645777bbeef2086dc5f45 [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.bugs
import groovy.test.GroovyTestCase
class POJOCallSiteBug extends GroovyTestCase {
MetaClassRegistry registry
MetaClass originalMetaClass
void setUp() {
registry = GroovySystem.metaClassRegistry
originalMetaClass = registry.getMetaClass(POJOCallSiteBugFoo)
}
void tearDown() {
registry.setMetaClass(POJOCallSiteBugFoo, originalMetaClass)
org.codehaus.groovy.runtime.NullObject.getNullObject().setMetaClass(null)
}
void testPOJOCallSiteShouldBeUpdatedAfterMetaClassIsChanged() {
def foo = {s -> s.foo() }
def s = new POJOCallSiteBugFoo()
POJOCallSiteBugFoo.metaClass = new POJOCallSiteBugProxyMetaClass(registry, POJOCallSiteBugFoo, originalMetaClass, 'foo')
assert 'foo' == s.foo()
assert 'foo' == foo(s)
POJOCallSiteBugFoo.metaClass = new POJOCallSiteBugProxyMetaClass(registry, POJOCallSiteBugFoo, originalMetaClass, 'test')
assert 'test' == s.foo()
assert 'test' == foo(s)
}
void testPOJOPropertyCallSiteShouldBeUpdatedAfterMetaClassIsChanged() {
def bar = {foo -> foo.bar }
def foo = new POJOCallSiteBugFoo()
assert 'bar' == foo.bar
assert 'bar' == bar(foo)
foo.metaClass = new POJOCallSiteBugProxyMetaClass(registry, POJOCallSiteBugFoo, originalMetaClass, 'test')
assert 'test' == foo.bar
assert 'test' == bar(foo)
}
void testPOJOFieldCallSiteShouldBeUpdatedAfterMetaClassIsChanged() {
def field = {foo -> foo.field }
def foo = new POJOCallSiteBugFoo()
assert 'field' == foo.field
assert 'field' == field(foo)
foo.metaClass = new POJOCallSiteBugProxyMetaClass(registry, POJOCallSiteBugFoo, originalMetaClass, 'test')
assert 'test' == foo.field
assert 'test' == field(foo)
}
void testChangeFromNullToOther() {
def emc = new ExpandoMetaClass( org.codehaus.groovy.runtime.NullObject.getNullObject().getClass())
emc.plus = {b -> b}
emc.initialize()
org.codehaus.groovy.runtime.NullObject.getNullObject().setMetaClass(emc)
Double[][] a = new Double[10][10]
for (def i = 0; i <= 9; i++ ) {
for (def j = 0; j <= 9; j++ ) {
def o = a[0][i]
a[0][i] = o + 1
}
}
}
}
class POJOCallSiteBugProxyMetaClass extends ProxyMetaClass {
String result
POJOCallSiteBugProxyMetaClass(MetaClassRegistry metaClassRegistry, Class aClass, MetaClass adaptee, String result) {
super(metaClassRegistry, aClass, adaptee)
this.result = result
}
public Object invokeMethod(final Object object, final String methodName, final Object[] arguments) {
result
}
public Object getProperty(Class aClass, Object object, String property, boolean b, boolean b1) {
result
}
}