Tests/functions/_document/Get-ElasticDocument.Tests.ps1
$Global:ElasticModule = 'PSElastic' $Global:ElasticFunction = ($MyInvocation.MyCommand.Name).Split('.')[0] $Global:ElasticModuleLocation = (Get-Item (Split-Path -parent $MyInvocation.MyCommand.Path)).parent.parent.parent.FullName $Global:ElasticMockDataLocation = "$ElasticModuleLocation\Tests\mock_data" Get-Module $ElasticModule | Remove-Module Import-Module "$ElasticModuleLocation\$ElasticModule.psd1" InModuleScope $ElasticModule { Describe "Get-ElasticDocument Unit Tests" -Tag 'Unit' { Context "$ElasticFunction return value validation" { # Prepare Mock Write-ElasticLog -Verifiable -MockWith {} -ParameterFilter {$message -eq $ElasticFunction} Mock Get-ElasticConnection -MockWith { $properties = [ordered]@{ BaseUrl = 'https://mockBaseUrl:9200' Header = @{'Authorization' = 'mockAuth'} } return New-Object psobject -Property $properties } $mockData = Import-CliXML -Path "$ElasticMockDataLocation\Get-ElasticDocument.Mock" Mock Invoke-ElasticRequest -Verifiable -MockWith { return $mockData } # Act $result = Get-ElasticDocument -Name 'mock' -Id 'mock_id' # Assert It "Verifiable mocks are called" { Assert-VerifiableMock } It "Returns a value" { $result | Should -not -BeNullOrEmpty } It "Returns the expected value" { $result._source.message | Should -Be 'mock message' } It "Returns the expected type" { $result -is [object] | Should -Be $true } It "Calls Get-ElasticConnection and is only invoked once" { Assert-MockCalled -CommandName Get-ElasticConnection -Times 1 -Exactly } } } } |