Skip to content

CLITest for testing CLI commands in Processing IDE #1161

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions app/test/processing/app/CLITest.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
package processing.app

import java.io.File
import kotlin.test.Test

/*
This class is used to test the CLI commands of the Processing IDE.
It mostly exists to quickly run CLI commands without having to specify run configurations
or to manually run it on the command line.

In IntelliJ IDEA, it should display runnable arrows next to each test method.
Use this to quickly test the CLI commands.
The output will be displayed in the console after `Running CLI with arguments: ...`.
When developing on the CLI commands, feel free to add more test methods here.
*/
class CLITest {

@Test
fun testLSP(){
runCLIWithArguments("lsp")
}

@Test
fun testLegacyCLI(){
runCLIWithArguments("cli --help")
}

/*
This function runs the CLI with the given arguments.
*/
fun runCLIWithArguments(args: String) {
// TODO: Once Processing PDE correctly builds in IntelliJ IDEA switch over to using the code directly
// To see if the PDE builds correctly can be tested by running the Processing.kt main function directly in IntelliJ IDEA
// Set the JAVA_HOME environment variable to the JDK used by the IDE
println("Running CLI with arguments: $args")
val process = ProcessBuilder("./gradlew", "run", "--args=$args", "--quiet")
.directory(File(System.getProperty("user.dir")).resolve("../../../"))
.inheritIO()

process.environment().apply {
put("JAVA_HOME", System.getProperty("java.home"))
}

val result = process
.start()
.waitFor()
println("Done running CLI with arguments: $args (Result: $result)")

}
}