91 lines
3.5 KiB
Java
91 lines
3.5 KiB
Java
/*
|
|
* Copyright 2010-2015 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.integration;
|
|
|
|
import com.intellij.util.ArrayUtil;
|
|
import org.jetbrains.kotlin.test.JetTestUtils;
|
|
import org.jetbrains.kotlin.utils.StringsKt;
|
|
|
|
import java.io.File;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.Collection;
|
|
import java.util.Collections;
|
|
|
|
public class CompilerSmokeTest extends KotlinIntegrationTestBase {
|
|
private int run(String logName, String... args) throws Exception {
|
|
return runJava(JetTestUtils.getTestDataPathBase() + "/integration/smoke/" + getTestName(true), logName, args);
|
|
}
|
|
|
|
private int runCompiler(String logName, String... arguments) throws Exception {
|
|
Collection<String> javaArgs = new ArrayList<String>();
|
|
|
|
javaArgs.add("-cp");
|
|
javaArgs.add(StringsKt.join(Arrays.asList(
|
|
getCompilerLib().getAbsolutePath() + File.separator + "kotlin-compiler.jar",
|
|
new File("dependencies/bootstrap-compiler/Kotlin/kotlinc/lib/kotlin-runtime.jar").getAbsolutePath(),
|
|
new File("dependencies/bootstrap-compiler/Kotlin/kotlinc/lib/kotlin-reflect.jar").getAbsolutePath()
|
|
), File.pathSeparator));
|
|
javaArgs.add("org.jetbrains.kotlin.cli.jvm.K2JVMCompiler");
|
|
|
|
Collections.addAll(javaArgs, arguments);
|
|
|
|
return run(logName, ArrayUtil.toStringArray(javaArgs));
|
|
}
|
|
|
|
public void testHelloApp() throws Exception {
|
|
String jar = tmpdir.getAbsolutePath() + File.separator + "hello.jar";
|
|
|
|
assertEquals("compilation failed", 0, runCompiler("hello.compile", "-include-runtime", "hello.kt", "-d", jar));
|
|
run("hello.run", "-cp", jar, "Hello.HelloPackage");
|
|
}
|
|
|
|
public void testHelloAppFQMain() throws Exception {
|
|
String jar = tmpdir.getAbsolutePath() + File.separator + "hello.jar";
|
|
|
|
assertEquals("compilation failed", 0, runCompiler("hello.compile", "-include-runtime", "hello.kt", "-d", jar));
|
|
run("hello.run", "-cp", jar, "Hello.HelloPackage");
|
|
}
|
|
|
|
public void testHelloAppVarargMain() throws Exception {
|
|
String jar = tmpdir.getAbsolutePath() + File.separator + "hello.jar";
|
|
|
|
assertEquals("compilation failed", 0, runCompiler("hello.compile", "-include-runtime", "hello.kt", "-d", jar));
|
|
run("hello.run", "-cp", jar, "Hello.HelloPackage");
|
|
}
|
|
|
|
public void testCompilationFailed() throws Exception {
|
|
String jar = tmpdir.getAbsolutePath() + File.separator + "smoke.jar";
|
|
|
|
runCompiler("hello.compile", "hello.kt", "-d", jar);
|
|
}
|
|
|
|
public void testSyntaxErrors() throws Exception {
|
|
String jar = tmpdir.getAbsolutePath() + File.separator + "smoke.jar";
|
|
|
|
runCompiler("test.compile", "test.kt", "-d", jar);
|
|
}
|
|
|
|
public void testSimpleScript() throws Exception {
|
|
runCompiler("script", "-script", "script.kts", "hi", "there");
|
|
}
|
|
|
|
public void testScriptWithClasspath() throws Exception {
|
|
runCompiler("script", "-cp", new File("lib/javax.inject.jar").getAbsolutePath(), "-script", "script.kts");
|
|
}
|
|
}
|