diff --git a/eng/pipelines/templates/steps/template-test-run-job.yml b/eng/pipelines/templates/steps/template-test-run-job.yml index 62a368919c9..e942a345c1c 100644 --- a/eng/pipelines/templates/steps/template-test-run-job.yml +++ b/eng/pipelines/templates/steps/template-test-run-job.yml @@ -47,6 +47,10 @@ steps: Write-Host "SynchronousCleanup: $SynchronousCleanup" Write-Host "##vso[task.setvariable variable=SynchronousCleanup]$SynchronousCleanup" + $randomNum = Get-Random + $EnvName = "env-name-$randomNum" + Write-Host "##vso[task.setvariable variable=EnvName]$EnvName" + $CleanupImmediate = 'true' if ('$(CleanupHoursDelay)' -ne '0') { $CleanupImmediate = 'false' @@ -66,6 +70,88 @@ steps: TargetFolder: "$(Build.SourcesDirectory)/temp" displayName: Copy test-templates.sh + - task: Bash@3 + displayName: Azd Init + inputs: + targetType: filePath + filePath: templates/tests/azd-init.sh + arguments: > + -s '$(SubscriptionId)' + -t '$(TemplateName)' + -e '$(EnvName)' + workingDirectory: templates/tests + + - task: Bash@3 + displayName: Azd Pipeline Config Provider Github + inputs: + targetType: filePath + filePath: templates/tests/azd-pipeline-config-provider-github.sh + arguments: > + -e '$(EnvName)' + -t '$(TemplateName)' + -p '$(azuresdk-github-pat)' + workingDirectory: templates/tests + + - task: Bash@3 + displayName: Tracking Github Child Pipeline + inputs: + targetType: filePath + filePath: templates/tests/tracking-github-child-pipeline.sh + arguments: > + -e '$(EnvName)' + workingDirectory: templates/tests + + - task: Bash@3 + displayName: Azd Pipeline Config Provider Azdo + env: + AZURE_DEVOPS_EXT_PAT: $(AZURE_DEVOPS_EXT_PAT) + AZURE_DEVOPS_ORG_NAME: $(AZURE_DEVOPS_ORG_NAME) + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + GIT_TERMINAL_PROMPT: 1 + inputs: + targetType: filePath + filePath: templates/tests/azd-pipeline-config-provider-azdo.sh + arguments: > + -p '$(AZURE_DEVOPS_EXT_PAT)' + -o '$(AZURE_DEVOPS_ORG_NAME)' + -t '$(TemplateName)' + -e '$(EnvName)' + workingDirectory: templates/tests + + - task: Bash@3 + displayName: Tracking Azdo Child Pipeline + env: + AZURE_DEVOPS_EXT_PAT: $(AZURE_DEVOPS_EXT_PAT) + AZURE_DEVOPS_ORG_NAME: $(AZURE_DEVOPS_ORG_NAME) + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + GIT_TERMINAL_PROMPT: 1 + inputs: + targetType: filePath + filePath: templates/tests/tracking-azdo-child-pipeline.sh + arguments: > + -e '$(EnvName)' + -p '$(AZURE_DEVOPS_EXT_PAT)' + -o '$(AZURE_DEVOPS_ORG_NAME)' + workingDirectory: templates/tests + + - task: Bash@3 + displayName: Azd Provision + inputs: + targetType: filePath + filePath: templates/tests/azd-provision.sh + arguments: > + -e '$(EnvName)' + workingDirectory: templates/tests + + - task: Bash@3 + displayName: Cleanup Resource + inputs: + targetType: filePath + filePath: templates/tests/cleanupResource.sh + arguments: > + -e '$(EnvName)' + workingDirectory: templates/tests + - task: DevcontainersCI@0 inputs: env: | diff --git a/templates/tests/azd-init.sh b/templates/tests/azd-init.sh new file mode 100644 index 00000000000..ee75e4b2d61 --- /dev/null +++ b/templates/tests/azd-init.sh @@ -0,0 +1,53 @@ +#!/bin/bash + +# Default to user HOME directory if not specified +FOLDER_PATH=$HOME +SUBSCRIPTION="" +TEMPLATE_NAME="" +ENV_NAME="" + +function usage { + echo "Tests azd template init, provision & deploy" + echo "" + echo "Usage: test-templates -t