mirror of
https://github.com/azure/login.git
synced 2026-03-15 09:20:56 -04:00
* Update Action to use Node.js v20 Node.js 16 actions are deprecated. Updating action to use Node.js 20. Link: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ * Updating all Github workflows to use Node 20.x Updating all Github workflows used in CI checks to use Node 20.x --------- Co-authored-by: Justin Chao <justin.chao@optum.com> Co-authored-by: Shiying Chen <shiyingchen@microsoft.com>
363 lines
10 KiB
YAML
363 lines
10 KiB
YAML
name: Azure Login Action Positive Test
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
|
|
jobs:
|
|
|
|
BasicTest:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest, self_linux, self_windows]
|
|
runs-on: ${{ matrix.os }}
|
|
environment: Automation test
|
|
|
|
steps:
|
|
- name: 'Checking out repo code'
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set Node.js 20.x for GitHub Action
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20.x
|
|
|
|
- name: 'Validate build'
|
|
run: |
|
|
npm install
|
|
npm run build
|
|
|
|
- name: 'Run L0 tests'
|
|
run: |
|
|
npm run test
|
|
|
|
- name: Login with creds
|
|
uses: ./
|
|
with:
|
|
creds: ${{secrets.SP1}}
|
|
enable-AzPSSession: true
|
|
|
|
- name: Run Azure Cli
|
|
run: |
|
|
az account show --output none
|
|
az group show --name GitHubAction_CI_RG --output none
|
|
az vm list --output none
|
|
|
|
- name: Run Azure PowerShell
|
|
uses: azure/powershell@v1
|
|
with:
|
|
azPSVersion: "latest"
|
|
inlineScript: |
|
|
$checkResult = (Get-AzContext).Environment.Name -eq 'AzureCloud'
|
|
$checkResult = $checkResult -and ((Get-AzResourceGroup -Name GitHubAction_CI_RG).ResourceGroupName -eq 'GitHubAction_CI_RG')
|
|
$checkResult = $checkResult -and ((Get-AzVM).Count -gt 0)
|
|
if(-not $checkResult){
|
|
throw "Not all checks passed!"
|
|
}
|
|
|
|
- name: Login with individual parameters
|
|
uses: ./
|
|
with:
|
|
client-id: ${{ secrets.SP1_CLIENT_ID }}
|
|
tenant-id: ${{ secrets.SP1_TENANT_ID }}
|
|
subscription-id: ${{ secrets.SP1_SUBSCRIPTION_ID }}
|
|
enable-AzPSSession: true
|
|
|
|
- name: Run Azure Cli again
|
|
run: |
|
|
az account show --output none
|
|
|
|
- name: Run Azure PowerShell again
|
|
uses: azure/powershell@v1
|
|
with:
|
|
azPSVersion: "latest"
|
|
inlineScript: |
|
|
$checkResult = (Get-AzContext).Environment.Name -eq 'AzureCloud'
|
|
if(-not $checkResult){
|
|
throw "Not all checks passed!"
|
|
}
|
|
|
|
- name: Login with explicit auth-type
|
|
uses: ./
|
|
with:
|
|
creds: ${{secrets.SP1}}
|
|
auth-type: SERVICE_PRINCIPAL
|
|
enable-AzPSSession: true
|
|
|
|
- name: Run Azure Cli
|
|
run: |
|
|
az account show --output none
|
|
az group show --name GitHubAction_CI_RG --output none
|
|
az vm list --output none
|
|
|
|
- name: Run Azure PowerShell
|
|
uses: azure/powershell@v1
|
|
with:
|
|
azPSVersion: "latest"
|
|
inlineScript: |
|
|
$checkResult = (Get-AzContext).Environment.Name -eq 'AzureCloud'
|
|
$checkResult = $checkResult -and ((Get-AzResourceGroup -Name GitHubAction_CI_RG).ResourceGroupName -eq 'GitHubAction_CI_RG')
|
|
$checkResult = $checkResult -and ((Get-AzVM).Count -gt 0)
|
|
if(-not $checkResult){
|
|
throw "Not all checks passed!"
|
|
}
|
|
|
|
ParameterTest:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
environment: Automation test
|
|
|
|
steps:
|
|
- name: 'Checking out repo code'
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set Node.js 20.x for GitHub Action
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20.x
|
|
|
|
- name: 'Validate build'
|
|
run: |
|
|
npm install
|
|
npm run build
|
|
|
|
- name: Login with creds, disable ps session
|
|
uses: ./
|
|
with:
|
|
creds: ${{secrets.SP1}}
|
|
enable-AzPSSession: false
|
|
|
|
- name: Run Azure Cli
|
|
run: |
|
|
az account show --output none
|
|
az group show --name GitHubAction_CI_RG --output none
|
|
az vm list --output none
|
|
|
|
- name: Login with creds, wrong boolean value
|
|
uses: ./
|
|
with:
|
|
creds: ${{secrets.SP1}}
|
|
enable-AzPSSession: notboolean
|
|
|
|
- name: Run Azure Cli
|
|
run: |
|
|
az account show --output none
|
|
az group show --name GitHubAction_CI_RG --output none
|
|
az vm list --output none
|
|
|
|
- name: Login with creds, allow no subscription
|
|
uses: ./
|
|
with:
|
|
creds: ${{secrets.SP1}}
|
|
allow-no-subscriptions: true
|
|
enable-AzPSSession: true
|
|
|
|
- name: Run Azure Cli
|
|
run: |
|
|
az account show --output none
|
|
az group show --name GitHubAction_CI_RG --output none
|
|
az vm list --output none
|
|
|
|
- name: Run Azure PowerShell
|
|
uses: azure/powershell@v1
|
|
with:
|
|
azPSVersion: "latest"
|
|
inlineScript: |
|
|
$checkResult = (Get-AzContext).Environment.Name -eq 'AzureCloud'
|
|
$checkResult = $checkResult -and ((Get-AzResourceGroup -Name GitHubAction_CI_RG).ResourceGroupName -eq 'GitHubAction_CI_RG')
|
|
$checkResult = $checkResult -and ((Get-AzVM).Count -gt 0)
|
|
if(-not $checkResult){
|
|
throw "Not all checks passed!"
|
|
}
|
|
|
|
- name: Login with individual parameters, allow no subscription
|
|
uses: ./
|
|
with:
|
|
client-id: ${{ secrets.SP1_CLIENT_ID }}
|
|
tenant-id: ${{ secrets.SP1_TENANT_ID}}
|
|
subscription-id: ${{ secrets.SP1_SUBSCRIPTION_ID }}
|
|
allow-no-subscriptions: true
|
|
enable-AzPSSession: true
|
|
|
|
- name: Run Azure Cli again
|
|
run: |
|
|
az account show --output none
|
|
|
|
- name: Run Azure PowerShell again
|
|
uses: azure/powershell@v1
|
|
with:
|
|
azPSVersion: "latest"
|
|
inlineScript: |
|
|
$checkResult = (Get-AzContext).Environment.Name -eq 'AzureCloud'
|
|
if(-not $checkResult){
|
|
throw "Not all checks passed!"
|
|
}
|
|
|
|
- name: Login with individual parameters, no subscription, allow no subscription
|
|
uses: ./
|
|
with:
|
|
client-id: ${{ secrets.OIDC_SP2_CLIENT_ID }}
|
|
tenant-id: ${{ secrets.OIDC_SP2_TENANT_ID }}
|
|
allow-no-subscriptions: true
|
|
enable-AzPSSession: true
|
|
|
|
- name: Run Azure Cli
|
|
shell: pwsh
|
|
run: |
|
|
$checkResult = (az account list --output json | ConvertFrom-Json).Count -eq 2
|
|
if(-not $checkResult){
|
|
throw "Not all checks passed!"
|
|
}
|
|
|
|
- name: Run Azure PowerShell
|
|
uses: azure/powershell@v1
|
|
with:
|
|
azPSVersion: "latest"
|
|
inlineScript: |
|
|
$checkResult = (Get-AzContext).Environment.Name -eq 'AzureCloud'
|
|
if(-not $checkResult){
|
|
throw "Not all checks passed!"
|
|
}
|
|
|
|
- name: Login with creds, no subscription, allow no subscription
|
|
uses: ./
|
|
with:
|
|
creds: '{"clientId":"${{ secrets.OIDC_SP2_CLIENT_ID }}","clientSecret":"${{ secrets.SP2_CLIENT_SECRET }}","tenantId":"${{ secrets.OIDC_SP2_TENANT_ID }}"}'
|
|
allow-no-subscriptions: true
|
|
enable-AzPSSession: true
|
|
|
|
- name: Run Azure Cli
|
|
run: |
|
|
az account show --output none
|
|
|
|
- name: Run Azure PowerShell
|
|
uses: azure/powershell@v1
|
|
with:
|
|
azPSVersion: "latest"
|
|
inlineScript: |
|
|
$checkResult = (Get-AzContext).Environment.Name -eq 'AzureCloud'
|
|
if(-not $checkResult){
|
|
throw "Not all checks passed!"
|
|
}
|
|
|
|
VMTest:
|
|
strategy:
|
|
matrix:
|
|
os: [self_linux, self_windows]
|
|
runs-on: ${{ matrix.os }}
|
|
environment: Automation test
|
|
|
|
steps:
|
|
- name: 'Checking out repo code'
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set Node.js 20.x for GitHub Action
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20.x
|
|
|
|
- name: 'Validate build'
|
|
run: |
|
|
npm install
|
|
npm run build
|
|
|
|
- name: Login with system-assigned managed identity, no subscription-id
|
|
uses: ./
|
|
with:
|
|
auth-type: IDENTITY
|
|
allow-no-subscriptions: true
|
|
enable-AzPSSession: true
|
|
|
|
- name: Run Azure Cli
|
|
run: |
|
|
az account show --output none
|
|
|
|
- name: Run Azure PowerShell
|
|
uses: azure/powershell@v1
|
|
with:
|
|
azPSVersion: "latest"
|
|
inlineScript: |
|
|
$checkResult = (Get-AzContext).Environment.Name -eq 'AzureCloud'
|
|
if(-not $checkResult){
|
|
throw "Not all checks passed!"
|
|
}
|
|
|
|
- name: Login with system-assigned managed identity, with subscription id
|
|
uses: ./
|
|
with:
|
|
auth-type: IDENTITY
|
|
subscription-id: ${{ secrets.AZURE_SUBSCRIPTIONID }}
|
|
enable-AzPSSession: true
|
|
|
|
- name: Run Azure Cli
|
|
run: |
|
|
az account show --output none
|
|
az group show --name GitHubAction_CI_RG --output none
|
|
az vm list --output none
|
|
|
|
- name: Run Azure PowerShell
|
|
uses: azure/powershell@v1
|
|
with:
|
|
azPSVersion: "latest"
|
|
inlineScript: |
|
|
$checkResult = (Get-AzContext).Environment.Name -eq 'AzureCloud'
|
|
$checkResult = $checkResult -and ((Get-AzResourceGroup -Name GitHubAction_CI_RG).ResourceGroupName -eq 'GitHubAction_CI_RG')
|
|
$checkResult = $checkResult -and ((Get-AzVM).Count -gt 0)
|
|
if(-not $checkResult){
|
|
throw "Not all checks passed!"
|
|
}
|
|
|
|
- name: Login with tenant-level user-assigned managed identity with allow-no-subscriptions
|
|
uses: ./
|
|
with:
|
|
client-id: ${{ secrets.UMI2_CLIENT_ID }}
|
|
allow-no-subscriptions: true
|
|
auth-type: IDENTITY
|
|
enable-AzPSSession: true
|
|
|
|
- name: Run Azure Cli
|
|
run: |
|
|
az account show --output none
|
|
|
|
- name: Run Azure PowerShell
|
|
uses: azure/powershell@v1
|
|
with:
|
|
azPSVersion: "latest"
|
|
inlineScript: |
|
|
$checkResult = (Get-AzContext).Environment.Name -eq 'AzureCloud'
|
|
if(-not $checkResult){
|
|
throw "Not all checks passed!"
|
|
}
|
|
|
|
- name: Login with user-assigned managed identity, subscription-id
|
|
uses: ./
|
|
with:
|
|
client-id: ${{ secrets.UMI1_CLIENT_ID }}
|
|
subscription-id: ${{ secrets.UMI1_SUBSCRIPTION_ID }}
|
|
auth-type: IDENTITY
|
|
enable-AzPSSession: true
|
|
|
|
- name: Run Azure Cli
|
|
run: |
|
|
az account show --output none
|
|
az group show --name GitHubAction_CI_RG --output none
|
|
az vm list --output none
|
|
|
|
- name: Run Azure PowerShell
|
|
uses: azure/powershell@v1
|
|
with:
|
|
azPSVersion: "latest"
|
|
inlineScript: |
|
|
$checkResult = (Get-AzContext).Environment.Name -eq 'AzureCloud'
|
|
$checkResult = $checkResult -and ((Get-AzResourceGroup -Name GitHubAction_CI_RG).ResourceGroupName -eq 'GitHubAction_CI_RG')
|
|
$checkResult = $checkResult -and ((Get-AzVM).Count -gt 0)
|
|
if(-not $checkResult){
|
|
throw "Not all checks passed!"
|
|
}
|
|
|