Tests/Get-DatabricksSecretScopes.tests.ps1

param(
    [ValidateSet('Bearer','ServicePrincipal')][string]$Mode="ServicePrincipal"
)

Set-Location $PSScriptRoot
Import-Module "..\azure.databricks.cicd.tools.psd1" -Force
$Config = (Get-Content '.\config.json' | ConvertFrom-Json)

switch ($mode){
    ("Bearer"){
        Connect-Databricks -Region $Config.Region -BearerToken $Config.BearerToken
    }
    ("ServicePrincipal"){
        Connect-Databricks -Region $Config.Region -DatabricksOrgId $Config.DatabricksOrgId -ApplicationId $Config.ApplicationId -Secret $Config.Secret -TenantId $Config.TenantId
    }
}

Describe "Get-DatabricksSecretScopes"{
    
    It "Get all scopes"{
        $json = Get-DatabricksSecretScopes -BearerToken $BearerToken -Region $Region
    }

    It "Search for scope by name"{
        $json = Get-DatabricksSecretScopes -ScopeName "Test1"
    }

}