test(destination): enable multi-tenant BDD scenarios#160
Merged
Conversation
…ant for PROVIDER_FIRST
cassiofariasmachado
approved these changes
Jun 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Implements and fixes multi-tenant integration test scenarios for the Destination, Fragment, and Certificate modules, completing the acceptance criteria of the business need.
What changed:
CLOUD_SDK_CFG_DESTINATION_DEFAULT_TENANT_SUBDOMAINvia the newGiven I use the configured subscriber tenantstep. Scenarios are automatically skipped when the variable is not set.@given("I use the configured subscriber tenant")step: readsCLOUD_SDK_CFG_DESTINATION_DEFAULT_TENANT_SUBDOMAINfrom the environment, following theCLOUD_SDK_CFG_<MODULE>_DEFAULT_*naming convention used across all modules.PROVIDER_FIRSTlist scenarios were missing the subscriber tenant step, causingDestinationOperationErrorat runtime.docs/INTEGRATION_TESTS.mdsections and.env_integration_tests.exampleentries; addedCLOUD_SDK_CFG_DESTINATION_DEFAULT_TENANT_SUBDOMAINdocumentation under the Destination section.Related Issue
Closes #
Type of Change
How to Test
.env_integration_tests.exampleto.env_integration_testsand fill in the destination service credentials.CLOUD_SDK_CFG_DESTINATION_DEFAULT_TENANT_SUBDOMAINto a subscriber tenant subdomain that has access to the destination service instance.CLOUD_SDK_CFG_DESTINATION_DEFAULT_TENANT_SUBDOMAIN, those scenarios are skipped and all provider-only scenarios should pass.Checklist
Additional Notes
CLOUD_SDK_CFG_DESTINATION_DEFAULT_TENANT_SUBDOMAINfollows the same naming convention as other modules (e.g.CLOUD_SDK_CFG_AGW_DEFAULT_TENANT_SUBDOMAIN). Scenarios requiring it are automatically skipped when absent, so the test suite remains fully runnable in provider-only environments.