Skip to content

Commit

Permalink
refactor: fixes and improves maintenance
Browse files Browse the repository at this point in the history
When we register a domain, we need to specify the org_id for the generated
identity; the org_id we use here must match the org_id used when generating the
token or the operation will fail with sign mismatching; now a ORG_ID environment
variable is used, that by default will be 12345 for better experience, but its
value can be override from the CLI.

This change additionally remove duplicated code and keep the scripts cleaner.
Bear in mind that 'curl.sh' wrapper prepare the request depending on the
environment variables if moving additional variables to the common scripts.

- Allows to customize ORG_ID variable; it could be helpful when checking data
  isolation.
- Allows to customize X_RH_IDENTITY and X_RH_FAKE_IDENTITY; it could be helpful
  when checking identity enforcement.

Signed-off-by: Alejandro Visiedo <[email protected]>
  • Loading branch information
avisiedo committed Sep 21, 2023
1 parent c27685e commit 40b0479
Show file tree
Hide file tree
Showing 22 changed files with 80 additions and 167 deletions.
17 changes: 17 additions & 0 deletions test/scripts/common.inc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash
#
# Include file with common parts shared for local and ephemeral
#

function error {
local err=$?
printf "ERROR: %s\n" "$*" >&2
exit $err
}

ORG_ID="${ORG_ID:-12345}"

IDENTITY_USER="$( ./tools/bin/xrhidgen -org-id "${ORG_ID}" user -is-active=true -is-org-admin=true -user-id test -username test | base64 -w0 )"
[ "${IDENTITY_USER}" != "" ] || error "IDENTITY_USER got empty: check that you made 'make install-tools'"
IDENTITY_SYSTEM="$( ./tools/bin/xrhidgen -org-id "${ORG_ID}" system -cn "6f324116-b3d2-11ed-8a37-482ae3863d30" -cert-type system | base64 -w0 )"
[ "${IDENTITY_SYSTEM}" != "" ] || error "IDENTITY_SYSTEM got empty: check that you made 'make install-tools'"
16 changes: 2 additions & 14 deletions test/scripts/ephe-domains-delete.sh
Original file line number Diff line number Diff line change
@@ -1,24 +1,12 @@
#!/bin/bash

function error {
local err=$?
printf "%s\n" "$1" >&2
exit $err
}

# make ephemeral-db-cli <<< "select domain_uuid from domains order by id desc limit 1;\\q"
source "./test/scripts/ephe.inc.sh"

UUID="$1"
[ "${UUID}" != "" ] || error "UUID is empty"

export NAMESPACE="$(oc project -q)"
CREDS="$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultUsername}' | base64 -d )"
CREDS="${CREDS}:$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultPassword}' | base64 -d )"
export CREDS

unset X_RH_IDENTITY
export X_RH_FAKE_IDENTITY="$( ./tools/bin/xrhidgen -org-id 12345 system -cn "6f324116-b3d2-11ed-8a37-482ae3863d30" -cert-type system | base64 -w0 )"
export X_RH_FAKE_IDENTITY="${X_RH_FAKE_IDENTITY:-${IDENTITY_USER}}"
export X_RH_IDM_REGISTRATION_TOKEN="${TOKEN}"
export X_RH_IDM_VERSION="$( base64 -w0 <<< '{"ipa-hcc": "0.7", "ipa": "4.10.0-8.el9_1"}' )"
BASE_URL="https://$( oc get routes -l app=idmsvc-backend -o jsonpath='{.items[0].spec.host}' )/api/idmsvc/v1"
./scripts/curl.sh -i -X DELETE "${BASE_URL}/domains/${UUID}"
9 changes: 2 additions & 7 deletions test/scripts/ephe-domains-list.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
#!/bin/bash

export NAMESPACE="$(oc project -q)"
CREDS="$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultUsername}' | base64 -d )"
CREDS="${CREDS}:$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultPassword}' | base64 -d )"
export CREDS
source "./test/scripts/ephe.inc.sh"

unset X_RH_IDENTITY
unset X_RH_FAKE_IDENTITY
BASE_URL="https://$( oc get routes -l app=idmsvc-backend -o jsonpath='{.items[0].spec.host}' )/api/idmsvc/v1"
export X_RH_FAKE_IDENTITY="${X_RH_FAKE_IDENTITY:-${IDENTITY_USER}}"
./scripts/curl.sh -i "${BASE_URL}/domains"

16 changes: 2 additions & 14 deletions test/scripts/ephe-domains-patch.sh
Original file line number Diff line number Diff line change
@@ -1,24 +1,12 @@
#!/bin/bash

function error {
local err=$?
printf "%s\n" "$1" >&2
exit $err
}

# make ephemeral-db-cli <<< "select domain_uuid from domains order by id desc limit 1;\\q"
source "./test/scripts/ephe.inc.sh"

UUID="$1"
[ "${UUID}" != "" ] || error "UUID is empty"

export NAMESPACE="$(oc project -q)"
CREDS="$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultUsername}' | base64 -d )"
CREDS="${CREDS}:$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultPassword}' | base64 -d )"
export CREDS

unset X_RH_IDENTITY
export X_RH_FAKE_IDENTITY="$( ./bin/xrhidgen -org-id 12345 system -cn "6f324116-b3d2-11ed-8a37-482ae3863d30" -cert-type system | base64 -w0 )"
export X_RH_FAKE_IDENTITY="${X_RH_FAKE_IDENTITY:-${IDENTITY_USER}}"
unset X_RH_IDM_REGISTRATION_TOKEN
export X_RH_IDM_VERSION='{"ipa-hcc": "0.9", "ipa": "4.10.0-8.el9_1", "os-release-id": "rhel", "os-release-version-id": "9.1"}'
BASE_URL="https://$( oc get routes -l app=idmsvc-backend -o jsonpath='{.items[0].spec.host}' )/api/idmsvc/v1"
./scripts/curl.sh -i -X PATCH -d @<( cat test/data/http/patch-rhel-idm-domain.json | sed -e "s/{{createDomain.response.body.domain_id}}/${UUID}/g" -e 's/{{subscription_manager_id}}/6f324116-b3d2-11ed-8a37-482ae3863d30/g' ) "${BASE_URL}/domains/${UUID}"
15 changes: 2 additions & 13 deletions test/scripts/ephe-domains-read.sh
Original file line number Diff line number Diff line change
@@ -1,21 +1,10 @@
#!/bin/bash

function error {
local err=$?
printf "%s\n" "$1" >&2
exit $err
}
source "./test/scripts/ephe.inc.sh"

UUID="$1"
[ "${UUID}" != "" ] || error "UUID is empty"

export NAMESPACE="$(oc project -q)"
CREDS="$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultUsername}' | base64 -d )"
CREDS="${CREDS}:$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultPassword}' | base64 -d )"
export CREDS

unset X_RH_IDENTITY
unset X_RH_FAKE_IDENTITY
BASE_URL="https://$( oc get routes -l app=idmsvc-backend -o jsonpath='{.items[0].spec.host}' )/api/idmsvc/v1"

export X_RH_FAKE_IDENTITY="${X_RH_FAKE_IDENTITY:-${IDENTITY_USER}}"
./scripts/curl.sh -i "${BASE_URL}/domains/${UUID}"
16 changes: 2 additions & 14 deletions test/scripts/ephe-domains-register.sh
Original file line number Diff line number Diff line change
@@ -1,24 +1,12 @@
#!/bin/bash

function error {
local err=$?
printf "%s\n" "$1" >&2
exit $err
}

# ephe-domains-token.sh
source "./test/scripts/ephe.inc.sh"

TOKEN="$1"
[ "${TOKEN}" != "" ] || error "TOKEN is empty"

export NAMESPACE="$(oc project -q)"
CREDS="$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultUsername}' | base64 -d )"
CREDS="${CREDS}:$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultPassword}' | base64 -d )"
export CREDS

unset X_RH_IDENTITY
export X_RH_FAKE_IDENTITY="$( ./tools/bin/xrhidgen -org-id 12345 system -cn "6f324116-b3d2-11ed-8a37-482ae3863d30" -cert-type system | base64 -w0 )"
export X_RH_FAKE_IDENTITY="${X_RH_FAKE_IDENTITY:-${IDENTITY_SYSTEM}}"
export X_RH_IDM_REGISTRATION_TOKEN="${TOKEN}"
export X_RH_IDM_VERSION='{"ipa-hcc": "0.9", "ipa": "4.10.0-8.el9_1", "os-release-id": "rhel", "os-release-version-id": "9.1"}'
BASE_URL="https://$( oc get routes -l app=idmsvc-backend -o jsonpath='{.items[0].spec.host}' )/api/idmsvc/v1"
./scripts/curl.sh -i -X POST -d @<( cat "test/data/http/register-rhel-idm-domain.json" | sed -e 's/{{subscription_manager_id}}/6f324116-b3d2-11ed-8a37-482ae3863d30/g' ) "${BASE_URL}/domains"
8 changes: 2 additions & 6 deletions test/scripts/ephe-domains-token.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
#!/bin/bash

export NAMESPACE="$(oc project -q)"
CREDS="$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultUsername}' | base64 -d )"
CREDS="${CREDS}:$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultPassword}' | base64 -d )"
export CREDS
source "./test/scripts/ephe.inc.sh"

unset X_RH_IDENTITY
export X_RH_FAKE_IDENTITY="$( ./tools/bin/xrhidgen -org-id 12345 user -is-active=true -is-org-admin=true -user-id test -username test | base64 -w0 )"
BASE_URL="https://$( oc get routes -l app=idmsvc-backend -o jsonpath='{.items[0].spec.host}' )/api/idmsvc/v1"
export X_RH_FAKE_IDENTITY="${X_RH_FAKE_IDENTITY:-${IDENTITY_USER}}"
./scripts/curl.sh -i -X POST -d '{"domain_type": "rhel-idm"}' "${BASE_URL}/domains/token"
16 changes: 2 additions & 14 deletions test/scripts/ephe-domains-update.sh
Original file line number Diff line number Diff line change
@@ -1,24 +1,12 @@
#!/bin/bash

function error {
local err=$?
printf "%s\n" "$1" >&2
exit $err
}

# make ephemeral-db-cli <<< "select domain_uuid from domains order by id desc limit 1;\\q"
source "./test/scripts/ephe.inc.sh"

UUID="$1"
[ "${UUID}" != "" ] || error "UUID is empty"

export NAMESPACE="$(oc project -q)"
CREDS="$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultUsername}' | base64 -d )"
CREDS="${CREDS}:$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultPassword}' | base64 -d )"
export CREDS

unset X_RH_IDENTITY
export X_RH_FAKE_IDENTITY="$( ./tools/bin/xrhidgen -org-id 12345 system -cn "6f324116-b3d2-11ed-8a37-482ae3863d30" -cert-type system | base64 -w0 )"
export X_RH_FAKE_IDENTITY="${X_RH_FAKE_IDENTITY:-${IDENTITY_SYSTEM}}"
unset X_RH_IDM_REGISTRATION_TOKEN
export X_RH_IDM_VERSION='{"ipa-hcc": "0.9", "ipa": "4.10.0-8.el9_1", "os-release-id": "rhel", "os-release-version-id": "9.1"}'
BASE_URL="https://$( oc get routes -l app=idmsvc-backend -o jsonpath='{.items[0].spec.host}' )/api/idmsvc/v1"
./scripts/curl.sh -i -X PUT -d @<( cat test/data/http/update-rhel-idm-domain.json | sed -e "s/{{createDomain.response.body.domain_id}}/${UUID}/g" -e 's/{{subscription_manager_id}}/6f324116-b3d2-11ed-8a37-482ae3863d30/g' ) "${BASE_URL}/domains/${UUID}"
16 changes: 3 additions & 13 deletions test/scripts/ephe-hostconf.sh
Original file line number Diff line number Diff line change
@@ -1,23 +1,13 @@
#!/bin/bash

function error {
local err=$?
printf "%s\n" "$*" >&2
exit $err
}
source "./test/scripts/ephe.inc.sh"

INVENTORY_ID=$"$1"
FQDN="$2"
[ "${INVENTORY_ID}" != "" ] || error "INVENTORY_ID is empty"
FQDN="$2"
[ "${FQDN}" != "" ] || error "FQDN is empty"

export NAMESPACE="$(oc project -q)"
CREDS="$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultUsername}' | base64 -d )"
CREDS="${CREDS}:$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultPassword}' | base64 -d )"
export CREDS

unset X_RH_IDENTITY
export X_RH_FAKE_IDENTITY="$( ./tools/bin/xrhidgen -org-id 12345 system -cn "3f35fc7f-079c-4940-92ed-9fdc8694a0f3" -cert-type system | base64 -w0 )"
export X_RH_FAKE_IDENTITY="${X_RH_FAKE_IDENTITY:-${IDENTITY_SYSTEM}}"
export X_RH_IDM_VERSION='{"ipa-hcc": "0.9", "ipa": "4.10.0-8.el9_1", "os-release-id": "rhel", "os-release-version-id": "9.1"}'
BASE_URL="https://$( oc get routes -l app=idmsvc-backend -o jsonpath='{.items[0].spec.host}' )/api/idmsvc/v1"
./scripts/curl.sh -i -X POST -d '{}' "${BASE_URL}/host-conf/${INVENTORY_ID}/${FQDN}"
6 changes: 1 addition & 5 deletions test/scripts/ephe-openapi.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
#!/bin/bash

export NAMESPACE="$(oc project -q)"
CREDS="$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultUsername}' | base64 -d )"
CREDS="${CREDS}:$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultPassword}' | base64 -d )"
export CREDS
source "./test/scripts/ephe.inc.sh"

unset X_RH_IDENTITY
unset X_RH_FAKE_IDENTITY
BASE_URL="https://$( oc get routes -l app=idmsvc-backend -o jsonpath='{.items[0].spec.host}' )/api/idmsvc/v1"
./scripts/curl.sh -i "${BASE_URL}/openapi.json"
18 changes: 18 additions & 0 deletions test/scripts/ephe.inc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash
#
# Include for common parts for ephemeral environment shared between all the scripts
#
# NOTE: Be aware that curl.sh wrapper set options based in the environment
# variables that has value when it is invoked, and set an environment
# variable could change the behave on how the request is formed.
#
# See: ./scripts/curl.sh
#
source "./test/scripts/common.inc.sh"

export NAMESPACE="$(oc project -q)"
CREDS="$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultUsername}' | base64 -d )"
CREDS="${CREDS}:$( oc get secrets/env-${NAMESPACE}-keycloak -o jsonpath='{.data.defaultPassword}' | base64 -d )"
export CREDS

BASE_URL="https://$( oc get routes -l app=idmsvc-backend -o jsonpath='{.items[0].spec.host}' )/api/idmsvc/v1"
12 changes: 2 additions & 10 deletions test/scripts/local-domains-delete.sh
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
#!/bin/bash

function error {
local err=$?
printf "%s\n" "$1" >&2
exit $err
}

# make db-cli <<< "select domain_uuid from domains order by id desc limit 1;\\q"
source "./test/scripts/local.inc.sh"

UUID="$1"
[ "${UUID}" != "" ] || error "UUID is empty"

export X_RH_IDENTITY="$( ./tools/bin/xrhidgen -org-id 12345 user -is-active=true -is-org-admin=true -user-id test -username test | base64 -w0 )"
export X_RH_IDENTITY="${X_RH_IDENTITY:-${IDENTITY_USER}}"
unset CREDS
export X_RH_IDM_REGISTRATION_TOKEN="$TOKEN"
export X_RH_IDM_VERSION="$( base64 -w0 <<< '{"ipa-hcc": "0.7", "ipa": "4.10.0-8.el9_1"}' )"
BASE_URL="http://localhost:8000/api/idmsvc/v1"
./scripts/curl.sh -i -X DELETE "${BASE_URL}/domains/${UUID}"
5 changes: 2 additions & 3 deletions test/scripts/local-domains-list.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#!/bin/bash
source "./test/scripts/local.inc.sh"

export X_RH_IDENTITY="$( ./tools/bin/xrhidgen -org-id 12345 user -is-active=true -is-org-admin=true -user-id test -username test | base64 -w0 )"
export X_RH_IDENTITY="${X_RH_IDENTITY:-${IDENTITY_USER}}"
unset X_RH_FAKE_IDENTITY
unset CREDS
unset X_RH_IDM_VERSION
BASE_URL="http://localhost:8000/api/idmsvc/v1"
./scripts/curl.sh -i "${BASE_URL}/domains"

13 changes: 2 additions & 11 deletions test/scripts/local-domains-patch.sh
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
#!/bin/bash

function error {
local err=$?
printf "%s\n" "$1" >&2
exit $err
}

# make db-cli <<< "select domain_uuid from domains order by id desc limit 1;\\q"
# make db-cli <<< "select token from ipas order by id desc limit 1;\\q"
source "./test/scripts/local.inc.sh"

UUID="$1"
[ "${UUID}" != "" ] || error "UUID is empty"

export X_RH_IDENTITY="$( ./bin/xrhidgen -org-id 12345 user -is-active=true -is-org-admin=true -user-id test -username test | base64 -w0 )"
export X_RH_IDENTITY="${X_RH_IDENTITY:-${IDENTITY_USER}}"
unset CREDS
unset X_RH_IDM_REGISTRATION_TOKEN
BASE_URL="http://localhost:8000/api/idmsvc/v1"
./scripts/curl.sh -i -X PATCH -d @<( cat "test/data/http/patch-rhel-idm-domain.json" | sed -e "s/{{createDomain.response.body.domain_id}}/${UUID}/g" ) "${BASE_URL}/domains/${UUID}"
4 changes: 2 additions & 2 deletions test/scripts/local-domains-populate.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import uuid
import requests
import json
import os


CONTENT_TYPE = "application/json"
Expand All @@ -18,7 +19,7 @@
HEADER_X_RH_IDM_VERSION = "X-Rh-Idm-Version"
HEADER_X_RH_IDM_REGISTRATION_TOKEN = "X-Rh-Idm-Registration-Token"

DEFAULT_ORG_ID = "12345"
DEFAULT_ORG_ID = os.environ.get("ORG_ID", "12345")

class xrhidgen:
"""Wrapper to call ./tools/bin/xrhidgen binary and get a x-rh-identity header"""
Expand Down Expand Up @@ -51,7 +52,6 @@ def __call__(self, *args):
if self.xrhidgen_type is None or self.xrhidgen_type == '':
sys.exit("'xrhidgen_type' is None")
options.append(self.xrhidgen_type)
# ./tools/bin/xrhidgen -org-id 12345 system -cn "6f324116-b3d2-11ed-8a37-482ae3863d30" -cert-type system
options.extend(self.extra_args)
options.extend(args)
output = subprocess.check_output(options)
Expand Down
10 changes: 2 additions & 8 deletions test/scripts/local-domains-read.sh
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
#!/bin/bash

function error {
local err=$?
printf "%s\n" "$*" >&2
exit $err
}
source "./test/scripts/local.inc.sh"

UUID="$1"
[ "${UUID}" != "" ] || error "UUID is empty"

export X_RH_IDENTITY="$( ./tools/bin/xrhidgen -org-id 12345 user -is-active=true -is-org-admin=true -user-id test -username test | base64 -w0 )"
export X_RH_IDENTITY="${X_RH_IDENTITY:-${IDENTITY_USER}}"
unset X_RH_FAKE_IDENTITY
unset CREDS
BASE_URL="http://localhost:8000/api/idmsvc/v1"
./scripts/curl.sh -i "${BASE_URL}/domains/${UUID}"
12 changes: 2 additions & 10 deletions test/scripts/local-domains-register.sh
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
#!/bin/bash

function error {
local err=$?
printf "%s\n" "$1" >&2
exit $err
}

# local-domains-token.sh
source "./test/scripts/local.inc.sh"

TOKEN="$1"
[ "${TOKEN}" != "" ] || error "TOKEN is empty"

export X_RH_IDENTITY="$( ./tools/bin/xrhidgen -org-id 12345 system -cn "6f324116-b3d2-11ed-8a37-482ae3863d30" -cert-type system | base64 -w0 )"
export X_RH_IDENTITY="${X_RH_IDENTITY:-${IDENTITY_SYSTEM}}"
unset CREDS
export X_RH_IDM_REGISTRATION_TOKEN="$TOKEN"
export X_RH_IDM_VERSION='{"ipa-hcc": "0.9", "ipa": "4.10.0-8.el9_1", "os-release-id": "rhel", "os-release-version-id": "9.1"}'
BASE_URL="http://localhost:8000/api/idmsvc/v1"
./scripts/curl.sh -i -X POST -d @<( cat "test/data/http/register-rhel-idm-domain.json" | sed -e 's/{{subscription_manager_id}}/6f324116-b3d2-11ed-8a37-482ae3863d30/g' ) "${BASE_URL}/domains"
4 changes: 2 additions & 2 deletions test/scripts/local-domains-token.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
source "./test/scripts/local.inc.sh"

export X_RH_IDENTITY="$( ./tools/bin/xrhidgen -org-id 12345 user -is-active=true -is-org-admin=true -user-id test -username test | base64 -w0 )"
export X_RH_IDENTITY="${X_RH_IDENTITY:-${IDENTITY_USER}}"
unset X_RH_FAKE_IDENTITY
unset CREDS
BASE_URL="http://localhost:8000/api/idmsvc/v1"
./scripts/curl.sh -i -X POST -d '{"domain_type": "rhel-idm"}' "${BASE_URL}/domains/token"
13 changes: 2 additions & 11 deletions test/scripts/local-domains-update.sh
Original file line number Diff line number Diff line change
@@ -1,20 +1,11 @@
#!/bin/bash

function error {
local err=$?
printf "%s\n" "$1" >&2
exit $err
}

# make db-cli <<< "select domain_uuid from domains order by id desc limit 1;\\q"
# make db-cli <<< "select token from ipas order by id desc limit 1;\\q"
source "./test/scripts/local.inc.sh"

UUID="$1"
[ "${UUID}" != "" ] || error "UUID is empty"

export X_RH_IDENTITY="$( ./tools/bin/xrhidgen -org-id 12345 system -cn "6f324116-b3d2-11ed-8a37-482ae3863d30" -cert-type system | base64 -w0 )"
export X_RH_IDENTITY="${X_RH_IDENTITY:-${IDENTITY_SYSTEM}}"
unset CREDS
unset X_RH_IDM_REGISTRATION_TOKEN
export X_RH_IDM_VERSION='{"ipa-hcc": "0.9", "ipa": "4.10.0-8.el9_1", "os-release-id": "rhel", "os-release-version-id": "9.1"}'
BASE_URL="http://localhost:8000/api/idmsvc/v1"
./scripts/curl.sh -i -X PUT -d @<( cat "test/data/http/update-rhel-idm-domain.json" | sed -e 's/{{subscription_manager_id}}/6f324116-b3d2-11ed-8a37-482ae3863d30/g' ) "${BASE_URL}/domains/${UUID}"
Loading

0 comments on commit 40b0479

Please sign in to comment.