Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Uses reusable platform starter #396

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,10 @@ jobs:
with:
name: opentdf-ctl
path: cli/
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
- name: Start up the platform with deps and containers
uses: opentdf/platform/test/start-up-with-containers@main
with:
go-version: '1.22'
- name: Git clone backend
run: |
git clone --depth 1 https://github.com/opentdf/platform.git
go work init
for x in platform/{protocol/go,lib/{fixtures,ocrypto},sdk,service}; do go work use "$x"; done
- run: docker compose up -d --wait --wait-timeout 240
platform-ref: 'main'
- env:
PLAYWRIGHT_TESTS_TO_RUN: roundtrip
run: |-
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/roundtrip/config-demo-idp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
set -x

: "${KC_VERSION:=24.0.3}"
: "${DEMO_KC_SERVER:=http://localhost:65432/auth}"
: "${DEMO_WEB_APP_URI:=http://localhost:65432/}"

if ! which kcadm.sh; then
KCADM_URL=https://github.com/keycloak/keycloak/releases/download/${KC_VERSION}/keycloak-${KC_VERSION}.zip
Expand All @@ -26,13 +28,13 @@ if ! which kcadm.sh; then
fi
fi

kcadm.sh config credentials --server http://localhost:65432/auth \
kcadm.sh config credentials --server "${DEMO_KC_SERVER}" \
--realm master --user admin --password changeme

kcadm.sh create clients -r opentdf \
-s clientId=browsertest \
-s enabled=true \
-s 'redirectUris=["http://localhost:65432/"]' \
-s 'redirectUris=["'"${DEMO_WEB_APP_URI}"'"]' \
-s consentRequired=false \
-s standardFlowEnabled=true \
-s directAccessGrantsEnabled=true \
Expand Down
65 changes: 0 additions & 65 deletions .github/workflows/roundtrip/docker-compose.yaml

This file was deleted.

23 changes: 14 additions & 9 deletions .github/workflows/roundtrip/encrypt-decrypt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ set -exuo pipefail

APP_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"

: "${DEMO_KAS_ALLOWLIST:=http://localhost:65432}"
: "${DEMO_OIDC_ENDPOINT:=http://localhost:65432/auth/realms/tdf}"
: "${DEMO_KAS_URI:=http://localhost:65432/api/kas}"
: "${DEMO_WEB_APP_URI:=http://localhost:65432/}"

cd "$APP_DIR"

counter=0
Expand All @@ -12,9 +17,9 @@ _nano_test() {
plain="./sample-${counter}.txt"
echo "Hello World ${counter}" >"./${plain}"
npx "$1" --log-level DEBUG \
--kasEndpoint http://localhost:65432/api/kas \
--allowList http://localhost:65432 \
--oidcEndpoint http://localhost:65432/auth/realms/tdf \
--kasEndpoint "${DEMO_KAS_URI}" \
--allowList "${DEMO_KAS_ALLOWLIST}" \
--oidcEndpoint "${DEMO_OIDC_ENDPOINT}" \
--auth tdf-client:123-456 \
--output sample.txt.ntdf \
encrypt "${plain}" \
Expand All @@ -23,8 +28,8 @@ _nano_test() {
[ -f sample.txt.ntdf ]

npx "$2" --log-level DEBUG \
--kasEndpoint http://localhost:65432/api/kas \
--oidcEndpoint http://localhost:65432/auth/realms/tdf \
--kasEndpoint "${DEMO_KAS_URI}" \
--oidcEndpoint "${DEMO_OIDC_ENDPOINT}" \
--auth tdf-client:123-456 \
--output sample_out.txt \
decrypt sample.txt.ntdf
Expand All @@ -42,8 +47,8 @@ _tdf3_test() {
plain="./sample-${counter}.txt"
echo "Hello World ${counter}" >"${plain}"
npx "$1" --log-level DEBUG \
--kasEndpoint http://localhost:65432/api/kas \
--oidcEndpoint http://localhost:65432/auth/realms/tdf \
--kasEndpoint "${DEMO_KAS_URI}" \
--oidcEndpoint "${DEMO_OIDC_ENDPOINT}" \
--auth tdf-client:123-456 \
--output sample.txt.tdf \
encrypt "${plain}" \
Expand All @@ -53,8 +58,8 @@ _tdf3_test() {
[ -f sample.txt.tdf ]

npx "$2" --log-level DEBUG \
--kasEndpoint http://localhost:65432/api/kas \
--oidcEndpoint http://localhost:65432/auth/realms/tdf \
--kasEndpoint "${DEMO_KAS_URI}" \
--oidcEndpoint "${DEMO_OIDC_ENDPOINT}" \
--auth tdf-client:123-456 \
--output sample_out.txt \
--containerType tdf3 \
Expand Down
95 changes: 0 additions & 95 deletions .github/workflows/roundtrip/init-temp-keys.sh

This file was deleted.

113 changes: 0 additions & 113 deletions .github/workflows/roundtrip/keycloak_data.yaml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/workflows/roundtrip/mocks/frontend-ingress-values.yaml

This file was deleted.

Loading
Loading