Configuration: move scratch tests to separate module

This commit is contained in:
Natalia Selezneva
2019-10-03 09:39:35 +03:00
parent f2f97a9991
commit 17dcdb59de
103 changed files with 174 additions and 78 deletions
+2 -1
View File
@@ -602,7 +602,8 @@ tasks {
":idea:jvm-debugger:jvm-debugger-core:test", ":idea:jvm-debugger:jvm-debugger-core:test",
":idea:jvm-debugger:jvm-debugger-evaluation:test", ":idea:jvm-debugger:jvm-debugger-evaluation:test",
":idea:jvm-debugger:jvm-debugger-sequence:test", ":idea:jvm-debugger:jvm-debugger-sequence:test",
":idea:jvm-debugger:eval4j:test" ":idea:jvm-debugger:eval4j:test",
":idea:scripting-support:test"
) )
} }
+1
View File
@@ -19,6 +19,7 @@ dependencies {
compile(projectTests(":j2k")) compile(projectTests(":j2k"))
compile(projectTests(":nj2k")) compile(projectTests(":nj2k"))
compile(projectTests(":idea:idea-android")) compile(projectTests(":idea:idea-android"))
compile(projectTests(":idea:scripting-support"))
compile(projectTests(":jps-plugin")) compile(projectTests(":jps-plugin"))
compile(projectTests(":plugins:jvm-abi-gen")) compile(projectTests(":plugins:jvm-abi-gen"))
compile(projectTests(":plugins:android-extensions-compiler")) compile(projectTests(":plugins:android-extensions-compiler"))
@@ -843,6 +843,16 @@ fun main(args: Array<String>) {
model("slicer/inflow", singleClass = true) model("slicer/inflow", singleClass = true)
} }
testClass<AbstractFirMultiModuleResolveTest> {
model("fir/multiModule", recursive = false, extension = null)
}
testClass<AbstractFirLazyResolveTest> {
model("fir/lazyResolve", extension = "test", singleClass = true, filenameStartsLowerCase = true)
}
}
testGroup("idea/scripting-support/test", "idea/scripting-support/testData") {
testClass<AbstractScratchRunActionTest> { testClass<AbstractScratchRunActionTest> {
model( model(
"scratch", "scratch",
@@ -888,14 +898,6 @@ fun main(args: Array<String>) {
testClass<AbstractScratchLineMarkersTest> { testClass<AbstractScratchLineMarkersTest> {
model("scratch/lineMarker", testMethod = "doScratchTest", pattern = KT_OR_KTS) model("scratch/lineMarker", testMethod = "doScratchTest", pattern = KT_OR_KTS)
} }
testClass<AbstractFirMultiModuleResolveTest> {
model("fir/multiModule", recursive = false, extension = null)
}
testClass<AbstractFirLazyResolveTest> {
model("fir/lazyResolve", extension = "test", singleClass = true, filenameStartsLowerCase = true)
}
} }
testGroup("idea/idea-maven/test", "idea/idea-maven/testData") { testGroup("idea/idea-maven/test", "idea/idea-maven/testData") {
@@ -831,6 +831,16 @@ fun main(args: Array<String>) {
model("slicer/inflow", singleClass = true) model("slicer/inflow", singleClass = true)
} }
testClass<AbstractFirMultiModuleResolveTest> {
model("fir/multiModule", recursive = false, extension = null)
}
testClass<AbstractFirLazyResolveTest> {
model("fir/lazyResolve", extension = "test", singleClass = true, filenameStartsLowerCase = true)
}
}
testGroup("idea/scripting-support/test", "idea/scripting-support/testData") {
testClass<AbstractScratchRunActionTest> { testClass<AbstractScratchRunActionTest> {
model("scratch", extension = "kts", testMethod = "doScratchCompilingTest", testClassName = "ScratchCompiling", recursive = false) model("scratch", extension = "kts", testMethod = "doScratchCompilingTest", testClassName = "ScratchCompiling", recursive = false)
model("scratch", extension = "kts", testMethod = "doScratchReplTest", testClassName = "ScratchRepl", recursive = false) model("scratch", extension = "kts", testMethod = "doScratchReplTest", testClassName = "ScratchRepl", recursive = false)
@@ -819,6 +819,16 @@ fun main(args: Array<String>) {
model("slicer/inflow", singleClass = true) model("slicer/inflow", singleClass = true)
} }
testClass<AbstractFirMultiModuleResolveTest> {
model("fir/multiModule", recursive = false, extension = null)
}
testClass<AbstractFirLazyResolveTest> {
model("fir/lazyResolve", extension = "test", singleClass = true, filenameStartsLowerCase = true)
}
}
testGroup("idea/scripting-support/test", "idea/scripting-support/testData") {
testClass<AbstractScratchRunActionTest> { testClass<AbstractScratchRunActionTest> {
model("scratch", extension = "kts", testMethod = "doScratchCompilingTest", testClassName = "ScratchCompiling", recursive = false) model("scratch", extension = "kts", testMethod = "doScratchCompilingTest", testClassName = "ScratchCompiling", recursive = false)
model("scratch", extension = "kts", testMethod = "doScratchReplTest", testClassName = "ScratchRepl", recursive = false) model("scratch", extension = "kts", testMethod = "doScratchReplTest", testClassName = "ScratchRepl", recursive = false)
@@ -819,6 +819,16 @@ fun main(args: Array<String>) {
model("slicer/inflow", singleClass = true) model("slicer/inflow", singleClass = true)
} }
testClass<AbstractFirMultiModuleResolveTest> {
model("fir/multiModule", recursive = false, extension = null)
}
testClass<AbstractFirLazyResolveTest> {
model("fir/lazyResolve", extension = "test", singleClass = true, filenameStartsLowerCase = true)
}
}
testGroup("idea/scripting-support/test", "idea/scripting-support/testData") {
testClass<AbstractScratchRunActionTest> { testClass<AbstractScratchRunActionTest> {
model("scratch", extension = "kts", testMethod = "doScratchCompilingTest", testClassName = "ScratchCompiling", recursive = false) model("scratch", extension = "kts", testMethod = "doScratchCompilingTest", testClassName = "ScratchCompiling", recursive = false)
model("scratch", extension = "kts", testMethod = "doScratchReplTest", testClassName = "ScratchRepl", recursive = false) model("scratch", extension = "kts", testMethod = "doScratchReplTest", testClassName = "ScratchRepl", recursive = false)
@@ -819,6 +819,16 @@ fun main(args: Array<String>) {
model("slicer/inflow", singleClass = true) model("slicer/inflow", singleClass = true)
} }
testClass<AbstractFirMultiModuleResolveTest> {
model("fir/multiModule", recursive = false, extension = null)
}
testClass<AbstractFirLazyResolveTest> {
model("fir/lazyResolve", extension = "test", singleClass = true, filenameStartsLowerCase = true)
}
}
testGroup("idea/scripting-support/test", "idea/scripting-support/testData") {
testClass<AbstractScratchRunActionTest> { testClass<AbstractScratchRunActionTest> {
model("scratch", extension = "kts", testMethod = "doScratchCompilingTest", testClassName = "ScratchCompiling", recursive = false) model("scratch", extension = "kts", testMethod = "doScratchCompilingTest", testClassName = "ScratchCompiling", recursive = false)
model("scratch", extension = "kts", testMethod = "doScratchReplTest", testClassName = "ScratchRepl", recursive = false) model("scratch", extension = "kts", testMethod = "doScratchReplTest", testClassName = "ScratchRepl", recursive = false)
+50
View File
@@ -0,0 +1,50 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
testRuntime(intellijDep())
testRuntime(intellijRuntimeAnnotations())
testCompile(project(":compiler:backend"))
testCompile(project(":idea:idea-jvm"))
testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":idea:idea-test-framework")) { isTransitive = false }
testCompile(projectTests(":idea"))
testCompile(commonDep("junit:junit"))
testRuntime(project(":allopen-ide-plugin")) { isTransitive = false }
testRuntime(project(":kotlin-allopen-compiler-plugin"))
testRuntime(project(":noarg-ide-plugin")) { isTransitive = false }
testRuntime(project(":kotlin-noarg-compiler-plugin"))
testRuntime(project(":plugins:annotation-based-compiler-plugins-ide-support")) { isTransitive = false }
testRuntime(project(":kotlin-scripting-idea")) { isTransitive = false }
testRuntime(project(":kotlin-scripting-compiler"))
testRuntime(project(":kotlin-scripting-compiler-impl"))
testRuntime(project(":sam-with-receiver-ide-plugin")) { isTransitive = false }
testRuntime(project(":kotlinx-serialization-compiler-plugin"))
testRuntime(project(":kotlinx-serialization-ide-plugin")) { isTransitive = false }
Platform[192].orHigher {
testCompileOnly(intellijPluginDep("java"))
testRuntime(intellijPluginDep("java"))
}
testRuntime(project(":kotlin-reflect"))
testCompileOnly(intellijDep())
}
sourceSets {
"main" { none() }
"test" { projectDefault() }
}
projectTest {
dependsOn(":dist")
workingDir = rootDir
}
testsJar()
@@ -276,7 +276,7 @@ abstract class AbstractScratchRunActionTest : FileEditorManagerTestCase() {
} }
protected fun testScratchText(): String { protected fun testScratchText(): String {
return File(testDataPath, "idea/testData/scratch/custom/test_scratch.kts").readText() return File(testDataPath, "idea/scripting-support/testData/scratch/custom/test_scratch.kts").readText()
} }
override fun getTestDataPath() = KotlinTestUtils.getHomeDirectory() override fun getTestDataPath() = KotlinTestUtils.getHomeDirectory()
@@ -17,7 +17,7 @@ import java.util.regex.Pattern;
/** This class is generated by {@link org.jetbrains.kotlin.generators.tests.TestsPackage}. DO NOT MODIFY MANUALLY */ /** This class is generated by {@link org.jetbrains.kotlin.generators.tests.TestsPackage}. DO NOT MODIFY MANUALLY */
@SuppressWarnings("all") @SuppressWarnings("all")
@TestMetadata("idea/testData/scratch/lineMarker") @TestMetadata("idea/scripting-support/testData/scratch/lineMarker")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class) @RunWith(JUnit3RunnerWithInners.class)
public class ScratchLineMarkersTestGenerated extends AbstractScratchLineMarkersTest { public class ScratchLineMarkersTestGenerated extends AbstractScratchLineMarkersTest {
@@ -26,71 +26,71 @@ public class ScratchLineMarkersTestGenerated extends AbstractScratchLineMarkersT
} }
public void testAllFilesPresentInLineMarker() throws Exception { public void testAllFilesPresentInLineMarker() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/scratch/lineMarker"), Pattern.compile("^(.+)\\.(kt|kts)$"), TargetBackend.ANY, true); KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/scripting-support/testData/scratch/lineMarker"), Pattern.compile("^(.+)\\.(kt|kts)$"), TargetBackend.ANY, true);
} }
@TestMetadata("binaryExpression.kts") @TestMetadata("binaryExpression.kts")
public void testBinaryExpression() throws Exception { public void testBinaryExpression() throws Exception {
runTest("idea/testData/scratch/lineMarker/binaryExpression.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/binaryExpression.kts");
} }
@TestMetadata("binaryExpression2.kts") @TestMetadata("binaryExpression2.kts")
public void testBinaryExpression2() throws Exception { public void testBinaryExpression2() throws Exception {
runTest("idea/testData/scratch/lineMarker/binaryExpression2.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/binaryExpression2.kts");
} }
@TestMetadata("constantExpression.kts") @TestMetadata("constantExpression.kts")
public void testConstantExpression() throws Exception { public void testConstantExpression() throws Exception {
runTest("idea/testData/scratch/lineMarker/constantExpression.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/constantExpression.kts");
} }
@TestMetadata("for.kts") @TestMetadata("for.kts")
public void testFor() throws Exception { public void testFor() throws Exception {
runTest("idea/testData/scratch/lineMarker/for.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/for.kts");
} }
@TestMetadata("function.kts") @TestMetadata("function.kts")
public void testFunction() throws Exception { public void testFunction() throws Exception {
runTest("idea/testData/scratch/lineMarker/function.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/function.kts");
} }
@TestMetadata("lambda.kts") @TestMetadata("lambda.kts")
public void testLambda() throws Exception { public void testLambda() throws Exception {
runTest("idea/testData/scratch/lineMarker/lambda.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/lambda.kts");
} }
@TestMetadata("lambda2.kts") @TestMetadata("lambda2.kts")
public void testLambda2() throws Exception { public void testLambda2() throws Exception {
runTest("idea/testData/scratch/lineMarker/lambda2.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/lambda2.kts");
} }
@TestMetadata("object.kts") @TestMetadata("object.kts")
public void testObject() throws Exception { public void testObject() throws Exception {
runTest("idea/testData/scratch/lineMarker/object.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/object.kts");
} }
@TestMetadata("parentesized.kts") @TestMetadata("parentesized.kts")
public void testParentesized() throws Exception { public void testParentesized() throws Exception {
runTest("idea/testData/scratch/lineMarker/parentesized.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/parentesized.kts");
} }
@TestMetadata("qualified.kts") @TestMetadata("qualified.kts")
public void testQualified() throws Exception { public void testQualified() throws Exception {
runTest("idea/testData/scratch/lineMarker/qualified.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/qualified.kts");
} }
@TestMetadata("qualifiedMultiLine.kts") @TestMetadata("qualifiedMultiLine.kts")
public void testQualifiedMultiLine() throws Exception { public void testQualifiedMultiLine() throws Exception {
runTest("idea/testData/scratch/lineMarker/qualifiedMultiLine.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/qualifiedMultiLine.kts");
} }
@TestMetadata("referenceExpression.kts") @TestMetadata("referenceExpression.kts")
public void testReferenceExpression() throws Exception { public void testReferenceExpression() throws Exception {
runTest("idea/testData/scratch/lineMarker/referenceExpression.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/referenceExpression.kts");
} }
@TestMetadata("val.kts") @TestMetadata("val.kts")
public void testVal() throws Exception { public void testVal() throws Exception {
runTest("idea/testData/scratch/lineMarker/val.kts"); runTest("idea/scripting-support/testData/scratch/lineMarker/val.kts");
} }
} }
@@ -19,7 +19,7 @@ import java.util.regex.Pattern;
@SuppressWarnings("all") @SuppressWarnings("all")
@RunWith(JUnit3RunnerWithInners.class) @RunWith(JUnit3RunnerWithInners.class)
public class ScratchRunActionTestGenerated extends AbstractScratchRunActionTest { public class ScratchRunActionTestGenerated extends AbstractScratchRunActionTest {
@TestMetadata("idea/testData/scratch") @TestMetadata("idea/scripting-support/testData/scratch")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class) @RunWith(JUnit3RunnerWithInners.class)
public static class ScratchCompiling extends AbstractScratchRunActionTest { public static class ScratchCompiling extends AbstractScratchRunActionTest {
@@ -28,86 +28,86 @@ public class ScratchRunActionTestGenerated extends AbstractScratchRunActionTest
} }
public void testAllFilesPresentInScratchCompiling() throws Exception { public void testAllFilesPresentInScratchCompiling() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/scratch"), Pattern.compile("^(.+)\\.kts$"), TargetBackend.ANY, false); KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/scripting-support/testData/scratch"), Pattern.compile("^(.+)\\.kts$"), TargetBackend.ANY, false);
} }
@TestMetadata("for.kts") @TestMetadata("for.kts")
public void testFor() throws Exception { public void testFor() throws Exception {
runTest("idea/testData/scratch/for.kts"); runTest("idea/scripting-support/testData/scratch/for.kts");
} }
@TestMetadata("generics.kts") @TestMetadata("generics.kts")
public void testGenerics() throws Exception { public void testGenerics() throws Exception {
runTest("idea/testData/scratch/generics.kts"); runTest("idea/scripting-support/testData/scratch/generics.kts");
} }
@TestMetadata("klass.kts") @TestMetadata("klass.kts")
public void testKlass() throws Exception { public void testKlass() throws Exception {
runTest("idea/testData/scratch/klass.kts"); runTest("idea/scripting-support/testData/scratch/klass.kts");
} }
@TestMetadata("libraryDepWithKotlinTest.kts") @TestMetadata("libraryDepWithKotlinTest.kts")
public void testLibraryDepWithKotlinTest() throws Exception { public void testLibraryDepWithKotlinTest() throws Exception {
runTest("idea/testData/scratch/libraryDepWithKotlinTest.kts"); runTest("idea/scripting-support/testData/scratch/libraryDepWithKotlinTest.kts");
} }
@TestMetadata("simple.kts") @TestMetadata("simple.kts")
public void testSimple() throws Exception { public void testSimple() throws Exception {
runTest("idea/testData/scratch/simple.kts"); runTest("idea/scripting-support/testData/scratch/simple.kts");
} }
@TestMetadata("simpleFun.kts") @TestMetadata("simpleFun.kts")
public void testSimpleFun() throws Exception { public void testSimpleFun() throws Exception {
runTest("idea/testData/scratch/simpleFun.kts"); runTest("idea/scripting-support/testData/scratch/simpleFun.kts");
} }
@TestMetadata("simpleNoRuntime.kts") @TestMetadata("simpleNoRuntime.kts")
public void testSimpleNoRuntime() throws Exception { public void testSimpleNoRuntime() throws Exception {
runTest("idea/testData/scratch/simpleNoRuntime.kts"); runTest("idea/scripting-support/testData/scratch/simpleNoRuntime.kts");
} }
@TestMetadata("spacesAtLineStart.kts") @TestMetadata("spacesAtLineStart.kts")
public void testSpacesAtLineStart() throws Exception { public void testSpacesAtLineStart() throws Exception {
runTest("idea/testData/scratch/spacesAtLineStart.kts"); runTest("idea/scripting-support/testData/scratch/spacesAtLineStart.kts");
} }
@TestMetadata("stdlibFun.kts") @TestMetadata("stdlibFun.kts")
public void testStdlibFun() throws Exception { public void testStdlibFun() throws Exception {
runTest("idea/testData/scratch/stdlibFun.kts"); runTest("idea/scripting-support/testData/scratch/stdlibFun.kts");
} }
@TestMetadata("unresolved.kts") @TestMetadata("unresolved.kts")
public void testUnresolved() throws Exception { public void testUnresolved() throws Exception {
runTest("idea/testData/scratch/unresolved.kts"); runTest("idea/scripting-support/testData/scratch/unresolved.kts");
} }
@TestMetadata("unresolvedMultiline.kts") @TestMetadata("unresolvedMultiline.kts")
public void testUnresolvedMultiline() throws Exception { public void testUnresolvedMultiline() throws Exception {
runTest("idea/testData/scratch/unresolvedMultiline.kts"); runTest("idea/scripting-support/testData/scratch/unresolvedMultiline.kts");
} }
@TestMetadata("userOutput.kts") @TestMetadata("userOutput.kts")
public void testUserOutput() throws Exception { public void testUserOutput() throws Exception {
runTest("idea/testData/scratch/userOutput.kts"); runTest("idea/scripting-support/testData/scratch/userOutput.kts");
} }
@TestMetadata("var.kts") @TestMetadata("var.kts")
public void testVar() throws Exception { public void testVar() throws Exception {
runTest("idea/testData/scratch/var.kts"); runTest("idea/scripting-support/testData/scratch/var.kts");
} }
@TestMetadata("veryLongOutput.kts") @TestMetadata("veryLongOutput.kts")
public void testVeryLongOutput() throws Exception { public void testVeryLongOutput() throws Exception {
runTest("idea/testData/scratch/veryLongOutput.kts"); runTest("idea/scripting-support/testData/scratch/veryLongOutput.kts");
} }
@TestMetadata("when.kts") @TestMetadata("when.kts")
public void testWhen() throws Exception { public void testWhen() throws Exception {
runTest("idea/testData/scratch/when.kts"); runTest("idea/scripting-support/testData/scratch/when.kts");
} }
} }
@TestMetadata("idea/testData/scratch") @TestMetadata("idea/scripting-support/testData/scratch")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class) @RunWith(JUnit3RunnerWithInners.class)
public static class ScratchRepl extends AbstractScratchRunActionTest { public static class ScratchRepl extends AbstractScratchRunActionTest {
@@ -116,86 +116,86 @@ public class ScratchRunActionTestGenerated extends AbstractScratchRunActionTest
} }
public void testAllFilesPresentInScratchRepl() throws Exception { public void testAllFilesPresentInScratchRepl() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/scratch"), Pattern.compile("^(.+)\\.kts$"), TargetBackend.ANY, false); KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/scripting-support/testData/scratch"), Pattern.compile("^(.+)\\.kts$"), TargetBackend.ANY, false);
} }
@TestMetadata("for.kts") @TestMetadata("for.kts")
public void testFor() throws Exception { public void testFor() throws Exception {
runTest("idea/testData/scratch/for.kts"); runTest("idea/scripting-support/testData/scratch/for.kts");
} }
@TestMetadata("generics.kts") @TestMetadata("generics.kts")
public void testGenerics() throws Exception { public void testGenerics() throws Exception {
runTest("idea/testData/scratch/generics.kts"); runTest("idea/scripting-support/testData/scratch/generics.kts");
} }
@TestMetadata("klass.kts") @TestMetadata("klass.kts")
public void testKlass() throws Exception { public void testKlass() throws Exception {
runTest("idea/testData/scratch/klass.kts"); runTest("idea/scripting-support/testData/scratch/klass.kts");
} }
@TestMetadata("libraryDepWithKotlinTest.kts") @TestMetadata("libraryDepWithKotlinTest.kts")
public void testLibraryDepWithKotlinTest() throws Exception { public void testLibraryDepWithKotlinTest() throws Exception {
runTest("idea/testData/scratch/libraryDepWithKotlinTest.kts"); runTest("idea/scripting-support/testData/scratch/libraryDepWithKotlinTest.kts");
} }
@TestMetadata("simple.kts") @TestMetadata("simple.kts")
public void testSimple() throws Exception { public void testSimple() throws Exception {
runTest("idea/testData/scratch/simple.kts"); runTest("idea/scripting-support/testData/scratch/simple.kts");
} }
@TestMetadata("simpleFun.kts") @TestMetadata("simpleFun.kts")
public void testSimpleFun() throws Exception { public void testSimpleFun() throws Exception {
runTest("idea/testData/scratch/simpleFun.kts"); runTest("idea/scripting-support/testData/scratch/simpleFun.kts");
} }
@TestMetadata("simpleNoRuntime.kts") @TestMetadata("simpleNoRuntime.kts")
public void testSimpleNoRuntime() throws Exception { public void testSimpleNoRuntime() throws Exception {
runTest("idea/testData/scratch/simpleNoRuntime.kts"); runTest("idea/scripting-support/testData/scratch/simpleNoRuntime.kts");
} }
@TestMetadata("spacesAtLineStart.kts") @TestMetadata("spacesAtLineStart.kts")
public void testSpacesAtLineStart() throws Exception { public void testSpacesAtLineStart() throws Exception {
runTest("idea/testData/scratch/spacesAtLineStart.kts"); runTest("idea/scripting-support/testData/scratch/spacesAtLineStart.kts");
} }
@TestMetadata("stdlibFun.kts") @TestMetadata("stdlibFun.kts")
public void testStdlibFun() throws Exception { public void testStdlibFun() throws Exception {
runTest("idea/testData/scratch/stdlibFun.kts"); runTest("idea/scripting-support/testData/scratch/stdlibFun.kts");
} }
@TestMetadata("unresolved.kts") @TestMetadata("unresolved.kts")
public void testUnresolved() throws Exception { public void testUnresolved() throws Exception {
runTest("idea/testData/scratch/unresolved.kts"); runTest("idea/scripting-support/testData/scratch/unresolved.kts");
} }
@TestMetadata("unresolvedMultiline.kts") @TestMetadata("unresolvedMultiline.kts")
public void testUnresolvedMultiline() throws Exception { public void testUnresolvedMultiline() throws Exception {
runTest("idea/testData/scratch/unresolvedMultiline.kts"); runTest("idea/scripting-support/testData/scratch/unresolvedMultiline.kts");
} }
@TestMetadata("userOutput.kts") @TestMetadata("userOutput.kts")
public void testUserOutput() throws Exception { public void testUserOutput() throws Exception {
runTest("idea/testData/scratch/userOutput.kts"); runTest("idea/scripting-support/testData/scratch/userOutput.kts");
} }
@TestMetadata("var.kts") @TestMetadata("var.kts")
public void testVar() throws Exception { public void testVar() throws Exception {
runTest("idea/testData/scratch/var.kts"); runTest("idea/scripting-support/testData/scratch/var.kts");
} }
@TestMetadata("veryLongOutput.kts") @TestMetadata("veryLongOutput.kts")
public void testVeryLongOutput() throws Exception { public void testVeryLongOutput() throws Exception {
runTest("idea/testData/scratch/veryLongOutput.kts"); runTest("idea/scripting-support/testData/scratch/veryLongOutput.kts");
} }
@TestMetadata("when.kts") @TestMetadata("when.kts")
public void testWhen() throws Exception { public void testWhen() throws Exception {
runTest("idea/testData/scratch/when.kts"); runTest("idea/scripting-support/testData/scratch/when.kts");
} }
} }
@TestMetadata("idea/testData/scratch/multiFile") @TestMetadata("idea/scripting-support/testData/scratch/multiFile")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class) @RunWith(JUnit3RunnerWithInners.class)
public static class ScratchMultiFile extends AbstractScratchRunActionTest { public static class ScratchMultiFile extends AbstractScratchRunActionTest {
@@ -204,21 +204,21 @@ public class ScratchRunActionTestGenerated extends AbstractScratchRunActionTest
} }
public void testAllFilesPresentInScratchMultiFile() throws Exception { public void testAllFilesPresentInScratchMultiFile() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/scratch/multiFile"), Pattern.compile("^([^\\.]+)$"), TargetBackend.ANY, false); KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/scripting-support/testData/scratch/multiFile"), Pattern.compile("^([^\\.]+)$"), TargetBackend.ANY, false);
} }
@TestMetadata("inlineFun") @TestMetadata("inlineFun")
public void testInlineFun() throws Exception { public void testInlineFun() throws Exception {
runTest("idea/testData/scratch/multiFile/inlineFun/"); runTest("idea/scripting-support/testData/scratch/multiFile/inlineFun/");
} }
@TestMetadata("javaDep") @TestMetadata("javaDep")
public void testJavaDep() throws Exception { public void testJavaDep() throws Exception {
runTest("idea/testData/scratch/multiFile/javaDep/"); runTest("idea/scripting-support/testData/scratch/multiFile/javaDep/");
} }
} }
@TestMetadata("idea/testData/worksheet") @TestMetadata("idea/scripting-support/testData/worksheet")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class) @RunWith(JUnit3RunnerWithInners.class)
public static class WorksheetCompiling extends AbstractScratchRunActionTest { public static class WorksheetCompiling extends AbstractScratchRunActionTest {
@@ -227,16 +227,16 @@ public class ScratchRunActionTestGenerated extends AbstractScratchRunActionTest
} }
public void testAllFilesPresentInWorksheetCompiling() throws Exception { public void testAllFilesPresentInWorksheetCompiling() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/worksheet"), Pattern.compile("^(.+)\\.ws.kts$"), TargetBackend.ANY, false); KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/scripting-support/testData/worksheet"), Pattern.compile("^(.+)\\.ws.kts$"), TargetBackend.ANY, false);
} }
@TestMetadata("simpleScriptRuntime.ws.kts") @TestMetadata("simpleScriptRuntime.ws.kts")
public void testSimpleScriptRuntime() throws Exception { public void testSimpleScriptRuntime() throws Exception {
runTest("idea/testData/worksheet/simpleScriptRuntime.ws.kts"); runTest("idea/scripting-support/testData/worksheet/simpleScriptRuntime.ws.kts");
} }
} }
@TestMetadata("idea/testData/worksheet") @TestMetadata("idea/scripting-support/testData/worksheet")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class) @RunWith(JUnit3RunnerWithInners.class)
public static class WorksheetRepl extends AbstractScratchRunActionTest { public static class WorksheetRepl extends AbstractScratchRunActionTest {
@@ -245,16 +245,16 @@ public class ScratchRunActionTestGenerated extends AbstractScratchRunActionTest
} }
public void testAllFilesPresentInWorksheetRepl() throws Exception { public void testAllFilesPresentInWorksheetRepl() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/worksheet"), Pattern.compile("^(.+)\\.ws.kts$"), TargetBackend.ANY, false); KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/scripting-support/testData/worksheet"), Pattern.compile("^(.+)\\.ws.kts$"), TargetBackend.ANY, false);
} }
@TestMetadata("simpleScriptRuntime.ws.kts") @TestMetadata("simpleScriptRuntime.ws.kts")
public void testSimpleScriptRuntime() throws Exception { public void testSimpleScriptRuntime() throws Exception {
runTest("idea/testData/worksheet/simpleScriptRuntime.ws.kts"); runTest("idea/scripting-support/testData/worksheet/simpleScriptRuntime.ws.kts");
} }
} }
@TestMetadata("idea/testData/worksheet/multiFile") @TestMetadata("idea/scripting-support/testData/worksheet/multiFile")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class) @RunWith(JUnit3RunnerWithInners.class)
public static class WorksheetMultiFile extends AbstractScratchRunActionTest { public static class WorksheetMultiFile extends AbstractScratchRunActionTest {
@@ -263,21 +263,21 @@ public class ScratchRunActionTestGenerated extends AbstractScratchRunActionTest
} }
public void testAllFilesPresentInWorksheetMultiFile() throws Exception { public void testAllFilesPresentInWorksheetMultiFile() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/worksheet/multiFile"), Pattern.compile("^([^\\.]+)$"), TargetBackend.ANY, false); KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/scripting-support/testData/worksheet/multiFile"), Pattern.compile("^([^\\.]+)$"), TargetBackend.ANY, false);
} }
@TestMetadata("inlineFunScriptRuntime") @TestMetadata("inlineFunScriptRuntime")
public void testInlineFunScriptRuntime() throws Exception { public void testInlineFunScriptRuntime() throws Exception {
runTest("idea/testData/worksheet/multiFile/inlineFunScriptRuntime/"); runTest("idea/scripting-support/testData/worksheet/multiFile/inlineFunScriptRuntime/");
} }
@TestMetadata("javaDepScriptRuntime") @TestMetadata("javaDepScriptRuntime")
public void testJavaDepScriptRuntime() throws Exception { public void testJavaDepScriptRuntime() throws Exception {
runTest("idea/testData/worksheet/multiFile/javaDepScriptRuntime/"); runTest("idea/scripting-support/testData/worksheet/multiFile/javaDepScriptRuntime/");
} }
} }
@TestMetadata("idea/testData/scratch/rightPanelOutput") @TestMetadata("idea/scripting-support/testData/scratch/rightPanelOutput")
@TestDataPath("$PROJECT_ROOT") @TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class) @RunWith(JUnit3RunnerWithInners.class)
public static class ScratchRightPanelOutput extends AbstractScratchRunActionTest { public static class ScratchRightPanelOutput extends AbstractScratchRunActionTest {
@@ -286,22 +286,22 @@ public class ScratchRunActionTestGenerated extends AbstractScratchRunActionTest
} }
public void testAllFilesPresentInScratchRightPanelOutput() throws Exception { public void testAllFilesPresentInScratchRightPanelOutput() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/scratch/rightPanelOutput"), Pattern.compile("^(.+)\\.kts$"), TargetBackend.ANY, false); KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/scripting-support/testData/scratch/rightPanelOutput"), Pattern.compile("^(.+)\\.kts$"), TargetBackend.ANY, false);
} }
@TestMetadata("bigSequentialOutputs.kts") @TestMetadata("bigSequentialOutputs.kts")
public void testBigSequentialOutputs() throws Exception { public void testBigSequentialOutputs() throws Exception {
runTest("idea/testData/scratch/rightPanelOutput/bigSequentialOutputs.kts"); runTest("idea/scripting-support/testData/scratch/rightPanelOutput/bigSequentialOutputs.kts");
} }
@TestMetadata("shortExpression.longOutput.singleTop.kts") @TestMetadata("shortExpression.longOutput.singleTop.kts")
public void testShortExpression_longOutput_singleTop() throws Exception { public void testShortExpression_longOutput_singleTop() throws Exception {
runTest("idea/testData/scratch/rightPanelOutput/shortExpression.longOutput.singleTop.kts"); runTest("idea/scripting-support/testData/scratch/rightPanelOutput/shortExpression.longOutput.singleTop.kts");
} }
@TestMetadata("shortExpression.shortOutput.singleTop.kts") @TestMetadata("shortExpression.shortOutput.singleTop.kts")
public void testShortExpression_shortOutput_singleTop() throws Exception { public void testShortExpression_shortOutput_singleTop() throws Exception {
runTest("idea/testData/scratch/rightPanelOutput/shortExpression.shortOutput.singleTop.kts"); runTest("idea/scripting-support/testData/scratch/rightPanelOutput/shortExpression.shortOutput.singleTop.kts");
} }
} }
} }

Some files were not shown because too many files have changed in this diff Show More