test: stabilize scheduler-k3s cnb bats tests

Drop the assertion that the web deployment has no command since the python buildpack auto-emits a web Procfile entry, which correctly routes through launcher just like docker-local. Shorten the cron command fixture so the base36-encoded cron-id stays under the 63-byte kubernetes label limit, and relax the `dokku run` and `dokku cron:run` output assertions to `assert_output_contains` so they tolerate the leading blank line emitted on k3s.
This commit is contained in:
Jose Diaz-Gonzalez
2026-05-10 18:34:24 -04:00
parent 3a845f4d14
commit ff1296859b
3 changed files with 6 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
{
"cron": [
{
"command": "python3 task.py some cron task",
"command": "python3 task.py",
"schedule": "5 5 5 5 5"
}
],

View File

@@ -216,7 +216,7 @@ teardown() {
echo "output: $output"
echo "status: $status"
assert_success
assert_output "['task.py', 'some', 'cron', 'task']"
assert_output "['task.py']"
}
@test "(builder-pack) cron:run with Procfile reference" {

View File

@@ -60,12 +60,6 @@ teardown() {
echo "status: $status"
assert_success
assert_output "python3"
run /bin/bash -c "kubectl get deployment $TEST_APP-web -o=jsonpath='{.spec.template.spec.containers[0].command}'"
echo "output: $output"
echo "status: $status"
assert_success
assert_output ""
}
@test "(scheduler-k3s) cnb cronjob manifest sets command launcher" {
@@ -113,7 +107,7 @@ teardown() {
echo "output: $output"
echo "status: $status"
assert_success
assert_output "['task.py', 'some', 'cron', 'task']"
assert_output_contains "['task.py']"
}
@test "(scheduler-k3s) cnb dokku run uses launcher entrypoint" {
@@ -148,7 +142,7 @@ teardown() {
echo "output: $output"
echo "status: $status"
assert_success
assert_output "['task.py', 'test']"
assert_output_contains "['task.py', 'test']"
run /bin/bash -c "dokku --quiet run $TEST_APP env"
echo "output: $output"
@@ -189,7 +183,7 @@ teardown() {
echo "output: $output"
echo "status: $status"
assert_success
assert_output "['task.py', 'test']"
assert_output_contains "['task.py', 'test']"
cron_id="$(dokku cron:list $TEST_APP --format json | jq -r '.[0].id')"
run /bin/bash -c "echo $cron_id"
@@ -202,7 +196,7 @@ teardown() {
echo "output: $output"
echo "status: $status"
assert_success
assert_output "['task.py', 'test']"
assert_output_contains "['task.py', 'test']"
}
cron_run_wrapper() {