Tests/Get-DatabricksGroupMembers.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
    }
}
$GroupName = "testgroup"

Describe "Get-DatabricksGroupMembers" {
    BeforeAll {
        Add-DatabricksGroup  -GroupName $GroupName 
    }

    It "Simple fetch" {
        $members = Get-DatabricksGroupMembers -GroupName $GroupName 
    }
}