From 933a59bf3b78a61d684085cdde5f9496ec41f08e Mon Sep 17 00:00:00 2001 From: Michael Li Date: Tue, 24 Mar 2026 00:10:31 -0400 Subject: [PATCH] test(bats): Fix flaky connect helper methods --- .github/workflows/test-cli-ui_oss.yml | 1 + internal/tests/cli/boundary/_connect.bash | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-cli-ui_oss.yml b/.github/workflows/test-cli-ui_oss.yml index 4dbdc9c981..26911eda38 100644 --- a/.github/workflows/test-cli-ui_oss.yml +++ b/.github/workflows/test-cli-ui_oss.yml @@ -98,6 +98,7 @@ jobs: echo "vault version:" vault version - name: Run cli bats tests + timeout-minutes: 30 run: | export VAULT_ADDR=http://127.0.0.1:8200 export VAULT_TOKEN=boundarytok diff --git a/internal/tests/cli/boundary/_connect.bash b/internal/tests/cli/boundary/_connect.bash index da0ce2a1b9..cf4d6df3c7 100644 --- a/internal/tests/cli/boundary/_connect.bash +++ b/internal/tests/cli/boundary/_connect.bash @@ -4,18 +4,18 @@ function connect_nc() { local id=$1 # Note: When this command returns, the session immediately goes into a "canceling" state - echo "foo" | boundary connect -exec nc -target-id $id -- {{boundary.ip}} {{boundary.port}} + boundary connect -exec nc -target-id $id -- -w 5 -v {{boundary.ip}} {{boundary.port}} < /dev/null } function connect_alias() { local alias=$1 # Note: When this command returns, the session immediately goes into a "canceling" state - echo "foo" | boundary connect $alias -exec nc -- {{boundary.ip}} {{boundary.port}} + boundary connect $alias -exec nc -- -w 5 -v {{boundary.ip}} {{boundary.port}} < /dev/null } function connect_alias_with_host_id() { local alias=$1 local hostid=$2 # Note: When this command returns, the session immediately goes into a "canceling" state - echo "foo" | boundary connect $alias -host-id $hostid -exec nc -- {{boundary.ip}} {{boundary.port}} + boundary connect $alias -host-id $hostid -exec nc -- -w 5 -v {{boundary.ip}} {{boundary.port}} < /dev/null }