mirror of
https://github.com/xpipe-io/xpipe.git
synced 2025-04-22 12:13:25 +00:00
70 lines
No EOL
2.6 KiB
Groovy
70 lines
No EOL
2.6 KiB
Groovy
import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
|
|
|
|
apply from: "$buildscript.sourceFile/../junit.gradle"
|
|
|
|
dependencies {
|
|
testImplementation project(':api')
|
|
testImplementation project(':core')
|
|
testImplementation project(':app')
|
|
|
|
testImplementation "org.openjfx:javafx-base:20.0.1:win"
|
|
testImplementation "org.openjfx:javafx-controls:20.0.1:win"
|
|
testImplementation "org.openjfx:javafx-graphics:20.0.1:win"
|
|
}
|
|
|
|
def attachDebugger = System.getProperty('idea.debugger.dispatch.addr') != null
|
|
def daemonCommand = attachDebugger ? ':app:runAttachedDebugger' : ':app:run'
|
|
|
|
test {
|
|
workingDir = rootDir
|
|
|
|
jvmArgs += ["--enable-preview", "-Xmx2g"]
|
|
|
|
// Daemon properties
|
|
systemProperty "io.xpipe.beacon.daemonArgs",
|
|
" -Dio.xpipe.beacon.port=21723" +
|
|
" -Dio.xpipe.app.mode=tray" +
|
|
" -Dio.xpipe.app.dataDir=$projectDir/local/" +
|
|
" -Dio.xpipe.storage.persist=false" +
|
|
" -Dio.xpipe.app.writeSysOut=true" +
|
|
" -Dio.xpipe.app.writeLogs=false" +
|
|
" -Dio.xpipe.beacon.printMessages=false" +
|
|
" -Dio.xpipe.app.logLevel=trace"
|
|
|
|
// Use cmd window for tests
|
|
if (!rootProject.ci && DefaultNativePlatform.currentOperatingSystem.isWindows()) {
|
|
systemProperty "io.xpipe.beacon.customDaemonCommand",
|
|
"cmd.exe /c start \"\"XPipe Debug\"\" /i \"$rootDir\\gradlew.bat\" --console=plain $daemonCommand"
|
|
}
|
|
|
|
|
|
// Client properties
|
|
// systemProperty 'io.xpipe.beacon.printMessages', "true"
|
|
systemProperty 'io.xpipe.beacon.printDaemonOutput', "false"
|
|
systemProperty "io.xpipe.beacon.port", "21723"
|
|
systemProperty "io.xpipe.beacon.launchDebugDaemon", "true"
|
|
systemProperty "io.xpipe.beacon.attachDebuggerToDaemon", "$daemonCommand"
|
|
}
|
|
|
|
task productionTest(type: Test) {
|
|
classpath = sourceSets.test.runtimeClasspath
|
|
useJUnitPlatform()
|
|
workingDir = rootDir
|
|
|
|
jvmArgs += ["--enable-preview", "-Xmx2g"]
|
|
|
|
// Daemon properties
|
|
systemProperty "io.xpipe.beacon.daemonArgs",
|
|
" -Dio.xpipe.beacon.port=21723" +
|
|
" -Dio.xpipe.app.dataDir=$projectDir/local/" +
|
|
" -Dio.xpipe.storage.persist=false" +
|
|
" -Dio.xpipe.app.writeSysOut=true" +
|
|
" -Dio.xpipe.app.writeLogs=false" +
|
|
" -Dio.xpipe.beacon.printMessages=false" +
|
|
" -Dio.xpipe.app.logLevel=trace"
|
|
|
|
// Client properties
|
|
systemProperty 'io.xpipe.beacon.printMessages', "true"
|
|
systemProperty 'io.xpipe.beacon.printDaemonOutput', "true"
|
|
systemProperty "io.xpipe.beacon.port", "21723"
|
|
} |