Luis (LT) Carbonell 4036485739
(enos) Add KMIP Enos Test Suite (#31378)
* (enos) Add KMIP Enos Test Suite

* skip KMIP for CE runs

* reads...

* cleanup variables

* fix
2025-07-29 14:13:28 -04:00

39 lines
1.2 KiB
Bash

#!/usr/bin/env bash
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
set -e
fail() {
echo "$1" 1>&2
exit 1
}
[[ -z "${REQPATH}" ]] && fail "REQPATH env variable has not been set"
[[ -z "${VAULT_ADDR}" ]] && fail "VAULT_ADDR env variable has not been set"
[[ -z "${VAULT_INSTALL_DIR}" ]] && fail "VAULT_INSTALL_DIR env variable has not been set"
[[ -z "${VAULT_TOKEN}" ]] && fail "VAULT_TOKEN env variable has not been set"
# PAYLOAD is optional - if not set or empty, use -f flag instead
binpath=${VAULT_INSTALL_DIR}/vault
test -x "${binpath}" || fail "unable to locate vault binary at ${binpath}"
export VAULT_FORMAT=json
# Check if PAYLOAD is empty or unset
if [[ -z "${PAYLOAD}" ]]; then
# Use -f flag for empty payload (force write without data)
if output=$("${binpath}" write -f "${REQPATH}" 2>&1); then
printf "%s\n" "${output}"
else
fail "failed to write with empty payload: path=${REQPATH} out=${output}"
fi
else
# Use original logic with payload data
if output=$("${binpath}" write "${REQPATH}" - <<< "${PAYLOAD}" 2>&1); then
printf "%s\n" "${output}"
else
fail "failed to write payload: path=${REQPATH} payload=${PAYLOAD} out=${output}"
fi
fi