Spring Support: Test framework

This commit is contained in:
Alexey Sedunov
2016-03-18 13:00:30 +03:00
parent d8a033e8a5
commit 161d11d9ec
5 changed files with 160 additions and 14 deletions
@@ -179,19 +179,22 @@ public class ConfigLibraryUtil {
);
}
public static void addLibrary(@NotNull Module module, @NotNull String libraryName, @NotNull String rootPath, @NotNull String[] jarPaths) {
NewLibraryEditor editor = new NewLibraryEditor();
editor.setName(libraryName);
for (String jarPath : jarPaths) {
editor.addRoot(VfsUtil.getUrlForLibraryRoot(new File(rootPath, jarPath)), OrderRootType.CLASSES);
}
addLibrary(editor, module);
}
public static void configureLibrariesByDirective(@NotNull Module module, String rootPath, String fileText) {
for (String libraryInfo : InTextDirectivesUtils.findListWithPrefixes(fileText, "// CONFIGURE_LIBRARY: ")) {
int i = libraryInfo.indexOf('@');
String libraryName = libraryInfo.substring(0, i);
String[] jarPaths = libraryInfo.substring(i + 1).split(";");
NewLibraryEditor editor = new NewLibraryEditor();
editor.setName(libraryName);
for (String jarPath : jarPaths) {
editor.addRoot(VfsUtil.getUrlForLibraryRoot(new File(rootPath, jarPath)), OrderRootType.CLASSES);
}
addLibrary(editor, module);
addLibrary(module, libraryName, rootPath, jarPaths);
}
}
@@ -0,0 +1,55 @@
/*
* Copyright 2010-2016 JetBrains s.r.o.
*
* 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 org.jetbrains.kotlin.idea.test
import com.intellij.openapi.module.Module
import com.intellij.util.SmartFMap
interface TestFixtureExtension {
fun setUp(module: Module)
fun tearDown()
companion object {
@Volatile
private var instances = SmartFMap.emptyMap<String, TestFixtureExtension>()
@Suppress("UNCHECKED_CAST")
fun loadFixture(className: String, module: Module): TestFixtureExtension {
instances[className]?.let { return it }
return (Class.forName(className).newInstance() as TestFixtureExtension).apply {
this.setUp(module)
instances = instances.plus(className, this)
}
}
inline fun <reified T : TestFixtureExtension> loadFixture(module: Module) = loadFixture(T::class.qualifiedName!!, module) as T
fun getFixture(className: String) = instances[className]
inline fun <reified T : TestFixtureExtension> getFixture() = getFixture(T::class.qualifiedName!!) as? T
fun unloadFixture(className: String) {
instances[className]?.let {
it.tearDown()
instances = instances.minus(className)
}
}
inline fun <reified T : TestFixtureExtension> unloadFixture() = unloadFixture(T::class.qualifiedName!!)
}
}