-
-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathCLITest.kt
More file actions
50 lines (41 loc) · 1.64 KB
/
Copy pathCLITest.kt
File metadata and controls
50 lines (41 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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)")
}
}