Initial commit

This commit is contained in:
Andreas Isler
2026-05-22 14:59:58 +02:00
commit 2f9c0a5c9e
130 changed files with 13126 additions and 0 deletions
@@ -0,0 +1,24 @@
spring.datasource.url=jdbc:h2:mem:flowable-work-db;DB_CLOSE_DELAY=1000
spring.datasource.username=admin
spring.datasource.password=test
# To make our life easier in tests we are disabling the async executor and elasticsearch
flowable.async-executor-activate=false
flowable.async-history-executor-activate=false
flowable.indexing.enabled=false
management.health.elasticsearch.enabled=false
management.metrics.export.elastic.enabled=false
# Set debug level in tests
logging.level.com.flowable=INFO
logging.level.com.flowable.local.work.model.FlowableModelTestUtils=INFO
# Disable the timeout process in the tests
flowable.external-system.wechat.timeout.process-definition-key=
# Path to test-auto-deploy-apps
flowable.app.resource-location=classpath*:/test-auto-deploy-apps/
# Email
flowable.mail.server.host=localhost
flowable.mail.server.port=3025
@@ -0,0 +1,5 @@
{
"root": {
"testText": "my test text"
}
}
@@ -0,0 +1,5 @@
{
"__IN": {
"initiator": "admin"
}
}
@@ -0,0 +1,9 @@
{
"param": true,
"__IN": {
"param": false
},
"__OUT": {
"result": "out"
}
}
@@ -0,0 +1,9 @@
{
"param": false,
"__IN": {
"param": true
},
"__OUT": {
"result": "out"
}
}
@@ -0,0 +1,9 @@
{
"param": "2025-11-12",
"__IN": {
"param": "2025-11-11"
},
"__OUT": {
"result": "out"
}
}
@@ -0,0 +1,9 @@
{
"param": 123.456,
"__IN": {
"param": 456.789
},
"__OUT": {
"result": "out"
}
}
@@ -0,0 +1,9 @@
{
"param": 123,
"__IN": {
"param": 456
},
"__OUT": {
"result": "out"
}
}
@@ -0,0 +1,9 @@
{
"param": "hello root",
"__IN": {
"param": "hello"
},
"__OUT": {
"result": "out"
}
}
@@ -0,0 +1,9 @@
{
"param": "123",
"__IN": {
"param": "456"
},
"__OUT": {
"result": "out"
}
}
@@ -0,0 +1,9 @@
{
"param": "123.456,",
"__IN": {
"param": "456.789"
},
"__OUT": {
"result": "out"
}
}
@@ -0,0 +1,5 @@
{
"root": {
"dataEntry": "my root text"
}
}