blob: 48da2d407151efc4b99a8e38855b2973b0e07ae3 [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 gls.classes.methods
import org.codehaus.groovy.control.CompilationFailedException
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.Parameterized
import static groovy.test.GroovyAssert.shouldFail
@RunWith(Parameterized)
class MethodOverridingDeniedTest {
String baseVisibility, childVisibility
MethodOverridingDeniedTest(String baseVisibility, String childVisibility) {
this.baseVisibility = baseVisibility
this.childVisibility = childVisibility
}
@Parameterized.Parameters(name = '{1} should not override {0}')
static data() {
[
['public', 'private'],
['public', '@groovy.transform.PackageScope'],
['public', 'protected'],
['protected', 'private'],
['protected', '@groovy.transform.PackageScope'],
['@groovy.transform.PackageScope', 'private'],
]*.toArray()
}
@Test
void 'weaker access must not override stronger'() {
def ex = shouldFail(CompilationFailedException,"""
abstract class Base {
$baseVisibility abstract myMethod()
}
class Child extends Base {
$childVisibility myMethod() { true }
}
assert new Child() != null
""")
assert ex.message.contains('cannot override myMethod in Base')
assert ex.message.contains('attempting to assign weaker access privileges')
assert ex.message.contains("was ${baseVisibility.contains('PackageScope') ? 'package-private' : baseVisibility}")
}
}