Functions/Connect-MicrosoftTeamsAdminAccount.Tests.ps1

describe "BitTitan.Runbooks.MicrosoftTeams/Connect-MicrosoftTeamsAdminAccount" -Tag "module", "unit" {

    # Import the function to test
    . "$($PSScriptRoot)\Connect-MicrosoftTeamsAdminAccount.ps1"

    # Declare external functions and mocks
    function Connect-MicrosoftTeams {
        param ([PSCredential]$Credential)
    }

    context "when there are no issues" {
        # Declare mocks
        mock Connect-MicrosoftTeams {}

        it "connects to Microsoft Teams with the provided username and password" {
            # Call the function
            $output = Connect-MicrosoftTeamsAdminAccount -Username "username" -Password ("password" | ConvertTo-SecureString -AsPlainText -Force)

            # Verify the mocks
            Assert-MockCalled Connect-MicrosoftTeams -Times 1 -Exactly -ParameterFilter {
                $Credential.Username -eq "username" -and $Credential.GetNetworkCredential().Password -eq "password"
            } -Scope it

            # Verify the output
            $output | Should Be $true
        }

        it "connects to Microsoft Teams with the provided endpoint" {
            # Mock the endpoint
            $endpoint = @{
                Name = "Unit test mocked endpoint"
                Credential = [PSCredential]::new("username", ("password" | ConvertTo-SecureString -AsPlainText -Force))
            }

            # Call the function
            $output = Connect-MicrosoftTeamsAdminAccount -Endpoint $endpoint

            # Verify the mocks
            Assert-MockCalled Connect-MicrosoftTeams -Times 1 -Exactly -ParameterFilter {
                $Credential.Username -eq "username" -and $Credential.GetNetworkCredential().Password -eq "password"
            } -Scope it

            # Verify the output
            $output | Should Be $true
        }
    }

    context "when there is an exception while connecting to Microsoft Teams" {
        # Declare mocks
        mock Connect-MicrosoftTeams {
            throw "throws exception"
        }

        it "fails to connect to Microsoft Teams and outputs an error message" {
            # Call the function
            $output = Connect-MicrosoftTeamsAdminAccount -Username "username" -Password ("password" | ConvertTo-SecureString -AsPlainText -Force) `
                -ErrorAction SilentlyContinue -ErrorVariable errorVariable

            # Verify the mocks
            Assert-MockCalled Connect-MicrosoftTeams -Times 1 -Exactly -ParameterFilter {
                $Credential.Username -eq "username" -and $Credential.GetNetworkCredential().Password -eq "password"
            } -Scope it

            # Verify the output
            $errorVariable | Should Not BeNullOrEmpty
            $output | Should Be $false
        }
    }
}