xpipe/gradle/gradle_scripts/extension_test.gradle
2023-11-15 03:25:18 +00:00

70 lines
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:${javafxVersion}:win"
testImplementation "org.openjfx:javafx-controls:${javafxVersion}:win"
testImplementation "org.openjfx:javafx-graphics:${javafxVersion}:win"
}
def attachDebugger = System.getProperty('idea.debugger.dispatch.addr') != null
def daemonCommand = attachDebugger ? ':app:runAttachedDebugger' : ':app:run'
test {
workingDir = rootDir
jvmArgs += ["-Xmx2g"]
// Daemon properties
systemProperty "io.xpipe.beacon.daemonArgs",
" -Dio.xpipe.beacon.port=21725" +
" -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", "21725"
systemProperty "io.xpipe.beacon.launchDebugDaemon", "true"
systemProperty "io.xpipe.beacon.attachDebuggerToDaemon", "$daemonCommand"
}
task productionTest(type: Test) {
classpath = sourceSets.test.runtimeClasspath
useJUnitPlatform()
workingDir = rootDir
jvmArgs += ["-Xmx2g"]
// Daemon properties
systemProperty "io.xpipe.beacon.daemonArgs",
" -Dio.xpipe.beacon.port=21725" +
" -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", "21725"
}