blob: 8fde8efeb4d35f978e8889f1047326a8969a882a [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.transform.stc
import groovy.test.GroovyTestCase
import groovy.transform.CompileStatic
import groovy.transform.TypeChecked
import org.codehaus.groovy.control.CompilerConfiguration
import org.codehaus.groovy.control.MultipleCompilationErrorsException
import org.codehaus.groovy.control.customizers.ASTTransformationCustomizer
import org.codehaus.groovy.control.customizers.ImportCustomizer
import org.codehaus.groovy.control.messages.SyntaxErrorMessage
/**
* Support class for static type checking test cases.
*/
@CompileStatic
abstract class StaticTypeCheckingTestCase extends GroovyTestCase {
protected CompilerConfiguration config
protected GroovyShell shell
@Override
protected void setUp() {
super.setUp()
config = new CompilerConfiguration()
def imports = new ImportCustomizer()
imports.addImports(
'groovy.transform.ASTTest', 'org.codehaus.groovy.transform.stc.StaticTypesMarker',
'org.codehaus.groovy.ast.ClassHelper'
)
imports.addStaticStars('org.codehaus.groovy.control.CompilePhase')
imports.addStaticStars('org.codehaus.groovy.transform.stc.StaticTypesMarker')
imports.addStaticStars('org.codehaus.groovy.ast.ClassHelper')
config.addCompilationCustomizers(new ASTTransformationCustomizer(TypeChecked), imports)
configure()
shell = new GroovyShell(config)
extraSetup()
}
protected void extraSetup() {}
protected void configure() {}
@Override
protected void tearDown() {
super.tearDown()
shell = null
config = null
}
@Override
protected void assertScript(String script) {
shell.evaluate(script, getTestClassName())
}
protected Class assertClass(String classCode) {
GroovyClassLoader loader = new GroovyClassLoader(this.class.classLoader, config)
loader.parseClass(classCode)
}
protected void shouldFailWithMessages(final String code, final String... messages) {
boolean success = false
try {
shell.evaluate(code, getTestClassName())
} catch (MultipleCompilationErrorsException mce) {
success = messages.every { message ->
mce.errorCollector.errors.any {
it instanceof SyntaxErrorMessage && it.cause.message.contains(message)
}
}
if (success && mce.errorCollector.errorCount!=messages.length) {
throw new AssertionError("Expected error messages were found, but compiler threw additional errors : " + mce.toString())
}
if (!success) {
throw new AssertionError("Not all expected error messages were found, compiler threw these errors : " + mce.toString())
}
}
if (!success) throw new AssertionError("Test passed but should have failed with messages [$messages]")
}
}