| |
| |
| |
| |
|
|
| Import-Module HelpersCommon |
|
|
| $script:cmdletsToSkip = @( |
| "Get-PSHostProcessInfo", |
| "Out-Default", |
| "Register-ArgumentCompleter", |
| "New-PSRoleCapabilityFile", |
| "Get-PSSessionCapability", |
| "Disable-PSRemoting", |
| "Enable-PSRemoting", |
| "Get-ExperimentalFeature", |
| "Enable-ExperimentalFeature", |
| "Disable-ExperimentalFeature", |
| "Get-PSSubsystem", |
| "Switch-Process" |
| ) |
|
|
| function UpdateHelpFromLocalContentPath { |
| param ([string]$ModuleName, [string] $Scope = 'CurrentUser') |
|
|
| $helpContentPath = Join-Path $PSScriptRoot "assets" |
| $helpFiles = @(Get-ChildItem "$helpContentPath\*" -ErrorAction SilentlyContinue) |
|
|
| if ($helpFiles.Count -eq 0) { |
| throw "Unable to find help content at '$helpContentPath'" |
| } |
|
|
| |
| Update-Help -Module $ModuleName -SourcePath $helpContentPath -UICulture 'en-US' -Force -ErrorAction Stop -Scope $Scope |
| } |
|
|
| function GetCurrentUserHelpRoot { |
| if ([System.Management.Automation.Platform]::IsWindows) { |
| $userHelpRoot = Join-Path $HOME "Documents/PowerShell/Help/" |
| } else { |
| $userModulesRoot = [System.Management.Automation.Platform]::SelectProductNameForDirectory([System.Management.Automation.Platform+XDG_Type]::USER_MODULES) |
| $userHelpRoot = Join-Path $userModulesRoot -ChildPath ".." -AdditionalChildPath "Help" |
| } |
|
|
| return $userHelpRoot |
| } |
|
|
| Describe 'Validate HelpInfo type' -Tags @('CI') { |
|
|
| It 'Category should be a string' { |
| $help = Get-Help * |
| $category = $help | ForEach-Object { $_.Category.GetType().FullName } | Select-Object -Unique |
| $category.Count | Should -Be 1 -Because 'All help categories should be strings, >1 indicates a type mismatch' |
| $category | Should -BeExactly 'System.String' |
| } |
| } |
|
|
| Describe "Validate that <pshome>/<culture>/default.help.txt is present" -Tags @('CI') { |
|
|
| It "Get-Help returns information about the help system" { |
|
|
| $help = Get-Help |
| $help.Name | Should -Be "default" |
| $help.Category | Should -Be "HelpFile" |
| $help.Synopsis | Should -Match "SHORT DESCRIPTION" |
| } |
| } |
|
|
| Describe "Validate that the Help function can Run in strict mode" -Tags @('CI') { |
|
|
| It "Help doesn't fail when strict mode is on" { |
| if (Test-IsWindowsArm64) { |
| Set-ItResult -Pending -Because "IOException: The handle is invalid." |
| } |
|
|
|
|
| $help = & { |
| |
| Set-StrictMode -Version 3.0 |
| help |
| } |
| |
| $help | Should -Not -BeNullOrEmpty |
| } |
| } |
|
|
| Describe "Validate that get-help works for CurrentUserScope" -Tags @('CI') { |
| BeforeAll { |
| $SavedProgressPreference = $ProgressPreference |
| $ProgressPreference = "SilentlyContinue" |
| $moduleName = "Microsoft.PowerShell.Core" |
| } |
| AfterAll { |
| $ProgressPreference = $SavedProgressPreference |
| } |
|
|
| Context "for module : $moduleName" { |
|
|
| BeforeAll { |
| UpdateHelpFromLocalContentPath $moduleName -Scope 'CurrentUser' |
| $cmdlets = Get-Command -Module $moduleName |
| } |
|
|
| $testCases = @() |
|
|
| |
| $cmdlets | Where-Object { $script:cmdletsToSkip -notcontains $_ } | Select-Object -First 3 | ForEach-Object { $testCases += @{ cmdletName = $_.Name }} |
|
|
| It "Validate -Description and -Examples sections in help content. Run 'Get-help -name <cmdletName>" -TestCases $testCases { |
| param($cmdletName) |
| $help = Get-Help -Name $cmdletName |
| $help.Description | Out-String | Should -Match $cmdletName |
| $help.Examples | Out-String | Should -Match $cmdletName |
| } |
|
|
| It "Validate 'Aliases' is present in help content formatting" { |
| |
| |
| |
| |
| $output = Get-Help Import-Module -Parameter NoClobber | Out-String |
| $output | Should -Match "Accept pipeline input\?.*\n\s+Aliases\s+NoOverwrite.*\n\s+Accept wildcard characters\?.*" |
| } |
| } |
| } |
|
|
| Describe "Testing Get-Help Progress" -Tags @('Feature') { |
| It "Last ProgressRecord should be Completed" { |
| try { |
| $j = Start-Job { Get-Help ([guid]::NewGuid().ToString("N")) } |
| $j | Wait-Job |
| $j.ChildJobs[0].Progress[-1].RecordType | Should -Be ([System.Management.Automation.ProgressRecordType]::Completed) |
| } |
| finally { |
| $j | Remove-Job |
| } |
| } |
| } |
|
|
| Describe "Validate that get-help works for AllUsers Scope" -Tags @('Feature', 'RequireAdminOnWindows', 'RequireSudoOnUnix') { |
| BeforeAll { |
| $SavedProgressPreference = $ProgressPreference |
| $ProgressPreference = "SilentlyContinue" |
| $moduleName = "Microsoft.PowerShell.Core" |
| } |
| AfterAll { |
| $ProgressPreference = $SavedProgressPreference |
| } |
|
|
| Context "for module : $moduleName" { |
|
|
| BeforeAll { |
| if (Test-CanWriteToPsHome) { |
| UpdateHelpFromLocalContentPath $moduleName -Scope 'AllUsers' |
| } |
| $cmdlets = Get-Command -Module $moduleName |
| } |
|
|
| $testCases = @() |
| $cmdlets | Where-Object { $cmdletsToSkip -notcontains $_ } | ForEach-Object { $testCases += @{ cmdletName = $_.Name }} |
|
|
| It "Validate -Description and -Examples sections in help content. Run 'Get-help -name <cmdletName>" -TestCases $testCases -Skip:(!(Test-CanWriteToPsHome)) { |
| param($cmdletName) |
| $help = Get-Help -Name $cmdletName |
| $help.Description | Out-String | Should -Match $cmdletName |
| $help.Examples | Out-String | Should -Match $cmdletName |
| } |
| } |
| } |
|
|
| Describe "Validate that get-help works for provider specific help" -Tags @('CI') { |
| BeforeAll { |
| $namespaces = @{ |
| command = 'http://schemas.microsoft.com/maml/dev/command/2004/10' |
| dev = 'http://schemas.microsoft.com/maml/dev/2004/10' |
| maml = 'http://schemas.microsoft.com/maml/2004/10' |
| msh = 'http://msh' |
| } |
|
|
| $helpFileRoot = Join-Path (GetCurrentUserHelpRoot) ([Globalization.CultureInfo]::CurrentUICulture) |
|
|
| |
| |
| $testCases = @( |
| @{ |
| helpFile = "$helpFileRoot\System.Management.Automation.dll-help.xml" |
| path = "$userHelpRoot" |
| helpContext = "[@id='FileSystem' or @ID='FileSystem']" |
| verb = 'Add' |
| noun = 'Content' |
| } |
| ) |
|
|
| if ($IsWindows) { |
| $testCases += @( |
| @{ |
| helpFile = "$helpFileRoot\Microsoft.WSMan.Management.dll-help.xml" |
| path = 'WSMan:\localhost\ClientCertificate' |
| helpContext = "[@id='ClientCertificate' or @ID='ClientCertificate']" |
| cmdlet = 'New-Item' |
| } |
| , |
| @{ |
| helpFile = "$helpFileRoot\Microsoft.PowerShell.Security.dll-help.xml" |
| path = 'Cert:\' |
| helpContext = $null |
| verb = 'New' |
| noun = 'Item' |
| } |
| ) |
|
|
| UpdateHelpFromLocalContentPath -ModuleName 'Microsoft.WSMan.Management' -Scope 'CurrentUser' |
| UpdateHelpFromLocalContentPath -ModuleName 'Microsoft.PowerShell.Security' -Scope 'CurrentUser' |
| } |
|
|
| UpdateHelpFromLocalContentPath -ModuleName 'Microsoft.PowerShell.Core' -Scope 'CurrentUser' |
| } |
|
|
| |
| It "Shows contextual help when Get-Help is invoked for provider-specific path (Get-Help -Name <verb>-<noun> -Path <path>)" -TestCases $testCases -Pending { |
|
|
| param( |
| $helpFile, |
| $path, |
| $verb, |
| $noun |
| ) |
|
|
| |
| $path | Should -Exist |
|
|
| $xpath = "/msh:helpItems/msh:providerHelp/msh:CmdletHelpPaths/msh:CmdletHelpPath$helpContext/command:command/command:details[command:verb='$verb' and command:noun='$noun']" |
| $helpXmlNode = Select-Xml -Path $helpFile -XPath $xpath -Namespace $namespaces | Select-Object -ExpandProperty Node |
|
|
| |
| $expected = Get-Help -Name "$verb-$noun" -Path $path | Select-Object -ExpandProperty Synopsis |
|
|
| |
| |
| $helpXmlNode.description.para -clike "$expected*" | Should -BeTrue |
| } |
| } |
|
|
| Describe "Validate about_help.txt under culture specific folder works" -Tags @('CI', 'RequireAdminOnWindows', 'RequireSudoOnUnix') { |
| BeforeAll { |
| $modulePath = "$PSHOME\Modules\Test" |
| if (Test-CanWriteToPsHome) { |
| $null = New-Item -Path $modulePath\en-US -ItemType Directory -Force |
| New-ModuleManifest -Path $modulePath\test.psd1 -RootModule test.psm1 |
| Set-Content -Path $modulePath\test.psm1 -Value "function foo{}" |
| Set-Content -Path $modulePath\en-US\about_testhelp.help.txt -Value "Hello" -NoNewline |
| } |
|
|
| $aboutHelpPath = Join-Path (GetCurrentUserHelpRoot) (Get-Culture).Name |
|
|
| |
| if (-not (Test-Path (Join-Path $aboutHelpPath "about_Variables.help.txt"))) { |
| UpdateHelpFromLocalContentPath -ModuleName 'Microsoft.PowerShell.Core' -Scope 'CurrentUser' |
| } |
| } |
|
|
| AfterAll { |
| if (Test-CanWriteToPsHome) { |
| Remove-Item $modulePath -Recurse -Force |
| } |
| |
| Get-ChildItem -Path $aboutHelpPath -Include @('about_*.txt', "*help.xml") -Recurse | Remove-Item -Force -ErrorAction SilentlyContinue |
| } |
|
|
| It "Get-Help should return help text and not multiple HelpInfo objects when help is under `$PSHOME path" -Skip:(!(Test-CanWriteToPsHome)) { |
|
|
| $help = Get-Help about_testhelp |
| $help.count | Should -Be 1 |
| $help | Should -BeExactly "Hello" |
| } |
|
|
| It "Get-Help for about_Variable should return only one help object" { |
| $help = Get-Help about_Variables |
| $help.count | Should -Be 1 |
| } |
| } |
|
|
| Describe "About help files can be found in AllUsers scope" -Tags @('Feature', 'RequireAdminOnWindows', 'RequireSudoOnUnix') { |
| BeforeAll { |
| $aboutHelpPath = Join-Path $PSHOME (Get-Culture).Name |
|
|
| |
|
|
| $userHelpRoot = GetCurrentUserHelpRoot |
|
|
| if (Test-Path $userHelpRoot) { |
| Remove-Item $userHelpRoot -Force -Recurse -ErrorAction Stop |
| } |
|
|
| if (Test-CanWriteToPsHome) { |
| UpdateHelpFromLocalContentPath -ModuleName 'Microsoft.PowerShell.Core' -Scope 'AllUsers' |
| } |
| } |
|
|
| It "Get-Help for about_Variable should return only one help object" -Skip:(!(Test-CanWriteToPsHome)) { |
| $help = Get-Help about_Variables |
| $help.count | Should -Be 1 |
| } |
| } |
|
|
| Describe "Get-Help should find help info within help files" -Tags @('CI') { |
| It "Get-Help should find help files under pshome" { |
| $helpFile = "about_testCase.help.txt" |
| $helpFolderPath = Join-Path (GetCurrentUserHelpRoot) (Get-Culture).Name |
| $helpFilePath = Join-Path $helpFolderPath $helpFile |
|
|
| if (!(Test-Path $helpFolderPath)) { |
| $null = New-Item -ItemType Directory -Path $helpFolderPath -ErrorAction SilentlyContinue |
| } |
|
|
| try { |
| $null = New-Item -ItemType File -Path $helpFilePath -Value "about_test" -ErrorAction SilentlyContinue |
| $helpContent = Get-Help about_testCase |
| $helpContent | Should -Match "about_test" |
| } finally { |
| Remove-Item $helpFilePath -Force -ErrorAction SilentlyContinue |
| } |
| } |
| } |
|
|
| Describe "Get-Help should find pattern help files" -Tags "CI" { |
|
|
| BeforeAll { |
| $helpFile1 = "about_testCase1.help.txt" |
| $helpFile2 = "about_testCase.2.help.txt" |
| $helpFolderPath = Join-Path (GetCurrentUserHelpRoot) (Get-Culture).Name |
| $helpFilePath1 = Join-Path $helpFolderPath $helpFile1 |
| $helpFilePath2 = Join-Path $helpFolderPath $helpFile2 |
| $null = New-Item -ItemType Directory -Path $helpFolderPath -ErrorAction SilentlyContinue -Force |
| |
| $null = New-Item -ItemType File -Path $helpFilePath1 -Value "about_test1" -ErrorAction SilentlyContinue |
| $null = New-Item -ItemType File -Path $helpFilePath2 -Value "about_test2" -ErrorAction SilentlyContinue |
| } |
|
|
| |
| AfterAll { |
| Remove-Item $helpFilePath1 -Force -ErrorAction SilentlyContinue |
| Remove-Item $helpFilePath2 -Force -ErrorAction SilentlyContinue |
| } |
|
|
| BeforeEach { |
| $currentPSModulePath = $env:PSModulePath |
| } |
|
|
| AfterEach { |
| $env:PSModulePath = $currentPSModulePath |
| } |
|
|
| $testcases = @( |
| @{command = {Get-Help about_testCas?1}; testname = "test ? pattern"; result = "about_test1"} |
| @{command = {Get-Help about_testCase.?}; testname = "test ? pattern with dot"; result = "about_test2"} |
| @{command = {(Get-Help about_testCase*).Count}; testname = "test * pattern"; result = "2"} |
| @{command = {Get-Help about_testCas?.2*}; testname = "test ?, * pattern with dot"; result = "about_test2"} |
| ) |
|
|
| It "Get-Help should find pattern help files - <testname>" -TestCases $testcases { |
| param ( |
| $command, |
| $result |
| ) |
| $command.Invoke() | Should -Be $result |
| } |
|
|
| It "Get-Help should fail expectedly searching for class help with hidden members" { |
| $testModule = @' |
| class foo |
| { |
| hidden static $monthNames = @('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun','Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec') |
| } |
| '@ |
| $modulesFolder = Join-Path $TestDrive "Modules" |
| $modulePath = Join-Path $modulesFolder "TestModule" |
| New-Item -ItemType Directory -Path $modulePath -Force > $null |
| Set-Content -Path (Join-Path $modulePath "TestModule.psm1") -Value $testModule |
| $env:PSModulePath += [System.IO.Path]::PathSeparator + $modulesFolder |
|
|
| { Get-Help -Category Class -Name foo -ErrorAction Stop } | Should -Throw -ErrorId "HelpNotFound,Microsoft.PowerShell.Commands.GetHelpCommand" |
| } |
| } |
| |
| Describe "Get-Help should find pattern alias" -Tags "CI" { |
| BeforeAll { |
| Set-Alias -Name testAlias1 -Value Where-Object |
| } |
|
|
| AfterAll { |
| Remove-Item alias:\testAlias1 -ErrorAction SilentlyContinue |
| } |
|
|
| It "Get-Help should find alias as command" { |
| (Get-Help where).Name | Should -BeExactly "Where-Object" |
| } |
|
|
| It "Get-Help should find alias with ? pattern" { |
| $help = Get-Help wher? |
| $help.Category | Should -BeExactly "Alias" |
| $help.Synopsis | Should -BeExactly "Where-Object" |
| } |
|
|
| It "Get-Help should find alias with * pattern" { |
| $help = Get-Help testAlias1* |
| $help.Category | Should -BeExactly "Alias" |
| $help.Synopsis | Should -BeExactly "Where-Object" |
| } |
|
|
| It "Help alias should be same as Get-Help alias" { |
| $help1 = Get-Help testAlias* |
| $help2 = help testAlias* |
| Compare-Object $help1 $help2 | Should -BeNullOrEmpty |
| } |
| } |
|
|
| Describe "help function uses full view by default" -Tags "CI" { |
| It "help should return full view without -Full switch" { |
| if (Test-IsWindowsArm64) { |
| Set-ItResult -Pending -Because "IOException: The handle is invalid." |
| } |
|
|
| $gpsHelp = (help Microsoft.PowerShell.Management\Get-Process) |
| $gpsHelp | Where-Object {$_ -cmatch '^PARAMETERS'} | Should -Not -BeNullOrEmpty |
| } |
|
|
| It "help should return full view even with -Full switch" { |
| if (Test-IsWindowsArm64) { |
| Set-ItResult -Pending -Because "IOException: The handle is invalid." |
| } |
|
|
| $gpsHelp = (help Microsoft.PowerShell.Management\Get-Process -Full) |
| $gpsHelp | Where-Object {$_ -cmatch '^PARAMETERS'} | Should -Not -BeNullOrEmpty |
| } |
|
|
| It "help should not append -Full when not using AllUsersView parameter set" { |
| if (Test-IsWindowsArm64) { |
| Set-ItResult -Pending -Because "IOException: The handle is invalid." |
| } |
|
|
| $gpsHelp = (help Microsoft.PowerShell.Management\Get-Process -Parameter Name) |
| $gpsHelp | Where-Object {$_ -cmatch '^PARAMETERS'} | Should -BeNullOrEmpty |
| } |
| } |
|
|
| Describe 'help can be found for CurrentUser Scope' -Tags 'CI' { |
| BeforeAll { |
| $userHelpRoot = GetCurrentUserHelpRoot |
|
|
| |
| Remove-Item $userHelpRoot -Force -ErrorAction SilentlyContinue -Recurse |
| UpdateHelpFromLocalContentPath -ModuleName 'Microsoft.PowerShell.Core' -Scope 'CurrentUser' |
| UpdateHelpFromLocalContentPath -ModuleName 'Microsoft.PowerShell.Management' -Scope 'CurrentUser' |
| UpdateHelpFromLocalContentPath -ModuleName 'Microsoft.PowerShell.Archive' -Scope 'CurrentUser' -Force |
| UpdateHelpFromLocalContentPath -ModuleName 'PackageManagement' -Scope CurrentUser -Force |
|
|
| |
| $currentCulture = (Get-Culture).Name |
|
|
| $managementHelpFilePath = Join-Path $PSHOME -ChildPath $currentCulture -AdditionalChildPath 'Microsoft.PowerShell.Commands.Management.dll-Help.xml' |
| if (Test-Path $managementHelpFilePath) { |
| Remove-Item $managementHelpFilePath -Force -ErrorAction SilentlyContinue |
| } |
|
|
| $coreHelpFilePath = Join-Path $PSHOME -ChildPath $currentCulture -AdditionalChildPath 'System.Management.Automation.dll-Help.xml' |
| if (Test-Path $coreHelpFilePath) { |
| Remove-Item $coreHelpFilePath -Force -ErrorAction SilentlyContinue |
| } |
|
|
| $archiveHelpFilePath = Join-Path (Get-Module Microsoft.PowerShell.Archive -ListAvailable).ModuleBase -ChildPath $currentCulture -AdditionalChildPath 'Microsoft.PowerShell.Archive-help.xml' |
| if (Test-Path $archiveHelpFilePath) { |
| Remove-Item $archiveHelpFilePath -Force -ErrorAction SilentlyContinue |
| } |
|
|
| $TestCases = @( |
| @{TestName = 'module under $PSHOME'; CmdletName = 'Add-Content'} |
| @{TestName = 'module is a PSSnapin'; CmdletName = 'Get-Command' } |
| @{TestName = 'module is under $PSHOME\Modules'; CmdletName = 'Compress-Archive' } |
| @{TestName = 'module has a version folder'; CmdletName = 'Find-Package' } |
| ) |
| } |
|
|
| It 'help in user scope be found for <TestName>' -TestCases $TestCases { |
| param($CmdletName) |
|
|
| $helpObj = Get-Help -Name $CmdletName -Full |
| $helpObj.description | Out-String | Should -Match $CmdletName |
| } |
| } |
|
|
| Describe 'help can be found for AllUsers Scope' -Tags @('Feature', 'RequireAdminOnWindows', 'RequireSudoOnUnix') { |
| BeforeAll { |
| $userHelpRoot = GetCurrentUserHelpRoot |
|
|
| |
| Remove-Item $userHelpRoot -Force -ErrorAction SilentlyContinue -Recurse |
|
|
| |
| $currentCulture = (Get-Culture).Name |
|
|
| if (Test-CanWriteToPsHome) { |
| $managementHelpFilePath = Join-Path $PSHOME -ChildPath $currentCulture -AdditionalChildPath 'Microsoft.PowerShell.Commands.Management.dll-Help.xml' |
| if (Test-Path $managementHelpFilePath) { |
| Remove-Item $managementHelpFilePath -Force -ErrorAction SilentlyContinue |
| } |
|
|
| $coreHelpFilePath = Join-Path $PSHOME -ChildPath $currentCulture -AdditionalChildPath 'System.Management.Automation.dll-Help.xml' |
| if (Test-Path $coreHelpFilePath) { |
| Remove-Item $coreHelpFilePath -Force -ErrorAction SilentlyContinue |
| } |
|
|
| $archiveHelpFilePath = Join-Path (Get-Module Microsoft.PowerShell.Archive -ListAvailable).ModuleBase -ChildPath $currentCulture -AdditionalChildPath 'Microsoft.PowerShell.Archive-help.xml' |
| if (Test-Path $archiveHelpFilePath) { |
| Remove-Item $archiveHelpFilePath -Force -ErrorAction SilentlyContinue |
| } |
|
|
| UpdateHelpFromLocalContentPath -ModuleName 'Microsoft.PowerShell.Core' -Scope 'AllUsers' |
| UpdateHelpFromLocalContentPath -ModuleName 'Microsoft.PowerShell.Management' -Scope 'AllUsers' |
| UpdateHelpFromLocalContentPath -ModuleName 'Microsoft.PowerShell.Archive' -Scope 'AllUsers' -Force |
| UpdateHelpFromLocalContentPath -ModuleName 'PackageManagement' -Scope 'AllUsers' -Force |
| } |
|
|
| $TestCases = @( |
| @{TestName = 'module under $PSHOME'; CmdletName = 'Add-Content'} |
| @{TestName = 'module is a PSSnapin'; CmdletName = 'Get-Command' } |
| @{TestName = 'module is under $PSHOME\Modules'; CmdletName = 'Compress-Archive' } |
| @{TestName = 'module has a version folder'; CmdletName = 'Find-Package' } |
| ) |
| } |
|
|
| It 'help in user scope be found for <TestName>' -TestCases $TestCases -Skip:(!(Test-CanWriteToPsHome)) { |
| param($CmdletName) |
|
|
| $helpObj = Get-Help -Name $CmdletName -Full |
| $helpObj.description | Out-String | Should -Match $CmdletName |
| } |
| } |
|
|
| Describe "Get-Help should accept arrays as the -Parameter parameter value" -Tags @('CI') { |
|
|
| BeforeAll { |
| $userHelpRoot = GetCurrentUserHelpRoot |
|
|
| |
| Remove-Item $userHelpRoot -Force -ErrorAction SilentlyContinue -Recurse |
| UpdateHelpFromLocalContentPath -ModuleName 'Microsoft.PowerShell.Core' -Scope 'CurrentUser' |
|
|
| |
| $currentCulture = (Get-Culture).Name |
| $coreHelpFilePath = Join-Path $PSHOME -ChildPath $currentCulture -AdditionalChildPath 'System.Management.Automation.dll-Help.xml' |
| if (Test-Path $coreHelpFilePath) { |
| Remove-Item $coreHelpFilePath -Force -ErrorAction SilentlyContinue |
| } |
| } |
|
|
| It "Should return help objects for two parameters" { |
| $help = Get-Help -Name Get-Command -Parameter Verb, Noun |
| $help | Should -HaveCount 2 |
| $help[0].Name | Should -BeExactly 'Verb' |
| $help[1].Name | Should -BeExactly 'Noun' |
| } |
| } |
|
|
| Describe "Get-Help for function parameter should be consistent" -Tags 'CI' { |
| BeforeAll { |
| $test1 = @' |
| function test1 { |
| param ( |
| $First |
| ) |
| } |
| '@ |
| $test2 = @' |
| function test2 { |
| param ( |
| $First, |
| $Second |
| ) |
| } |
| '@ |
| $test1Path = Join-Path $TestDrive "test1.ps1" |
| Set-Content -Path $test1Path -Value $test1 |
|
|
| $test2Path = Join-Path $TestDrive "test2.ps1" |
| Set-Content -Path $test2Path -Value $test2 |
|
|
| Import-Module $test1Path |
| Import-Module $test2Path |
| } |
|
|
| AfterAll { |
| Remove-Module -Name "test1" |
| Remove-Module -Name "test2" |
| } |
|
|
| It "Get-Help for function parameter should be consistent" { |
| $test1HelpPSType = (Get-Help test1 -Parameter First).PSTypeNames |
| $test2HelpPSType = (Get-Help test2 -Parameter First).PSTypeNames |
| $test1HelpPSType | Should -BeExactly $test2HelpPSType |
| } |
| } |
|
|
| Describe "Help failure cases" -Tags Feature { |
| It "An error is returned for a topic that doesn't exist: <command>" -TestCases @( |
| @{ command = "help" }, |
| @{ command = "get-help" } |
| ) { |
| param($command) |
|
|
| |
| $helpTopic = [guid]::NewGuid().ToString("N") |
| { & $command $helpTopic -ErrorAction Stop } | Should -Throw -ErrorId "HelpNotFound,Microsoft.PowerShell.Commands.GetHelpCommand" -Because "A help topic was unexpectantly found for $helpTopic" |
| } |
| } |
|
|
| Describe 'help renders when using a PAGER with a space in the path' -Tags 'CI' { |
| BeforeAll { |
| $fakePager = @' |
| param( |
| [Parameter] |
| $customCommandArgs, |
| |
| [Parameter(ValueFromPipelineByPropertyName)] |
| $Name |
| ) |
| |
| $b = [System.Text.Encoding]::UTF8.GetBytes($Name) |
| return [System.Convert]::ToBase64String($b) |
| '@ |
| $fakePagerFolder = Join-Path $TestDrive "path with space" |
| $fakePagerPath = Join-Path $fakePagerFolder "fakepager.ps1" |
| New-Item -ItemType File -Path $fakePagerPath -Force > $null |
| Set-Content -Path $fakePagerPath -Value $fakePager |
|
|
| $SavedEnvPager = $env:PAGER |
| $env:PAGER = $fakePagerPath |
| } |
| AfterAll { |
| $env:PAGER = $SavedEnvPager |
| } |
|
|
| It 'help renders when using a PAGER with a space in the path' { |
| help Get-Command | Should -Be "R2V0LUNvbW1hbmQ=" |
| } |
| } |
|
|
| Describe 'Update-Help allows partial culture matches' -Tags 'CI' { |
| BeforeAll { |
| function Test-UpdateHelpAux($UICulture, $Pass) |
| { |
| |
| $CultureArg = $UICulture ? @{ UICulture = $UICulture } : @{} |
| $Args = @{ |
| Module = 'Microsoft.PowerShell.Core' |
| SourcePath = Join-Path $PSScriptRoot 'assets' |
| Force = $true |
| ErrorAction = $Pass ? 'Stop' : 'SilentlyContinue' |
| ErrorVariable = 'ErrorVariable' |
| } |
|
|
| Update-Help @Args @CultureArg |
|
|
| if (-not $Pass) { |
| $ErrorVariable | Should -Match 'Failed to update Help for the module.*' |
| } |
| } |
| } |
|
|
| AfterEach { |
| [System.Management.Automation.Internal.InternalTestHooks]::SetTestHook('CurrentUICulture', $null) |
| } |
|
|
| It 'Checks culture match against en-US: <UICulture>' -TestCases @( |
| @{ UICulture = 'en-US' } |
| @{ UICulture = 'en' } |
| @{ UICulture = 'en-GB'; Pass = $false } |
| @{ UICulture = 'de-DE'; Pass = $false } |
| ) { |
| param($UICulture, $Pass = $true) |
|
|
| Test-UpdateHelpAux $UICulture $Pass |
| } |
|
|
| |
| It 'Checks system culture match against en-US: <UICulture>' -TestCases @( |
| @{ UICulture = 'en-US' } |
| @{ UICulture = 'en' } |
| @{ UICulture = 'en-GB' } |
| @{ UICulture = 'de-DE'; Pass = $false } |
| ) { |
| param($UICulture, $Pass = $true) |
|
|
| [System.Management.Automation.Internal.InternalTestHooks]::SetTestHook('CurrentUICulture', [System.Globalization.CultureInfo]::new($UICulture)) |
| Test-UpdateHelpAux $null $Pass |
| } |
| } |
|
|
| Describe 'InputTypes accurately describe pipelinable input' { |
| BeforeAll { |
| function invoke-inputtypetest { |
| [CmdletBinding()] |
| param ( |
| [Parameter(Position=0,Mandatory=$true,ValueFromPipeline=$true)][string]$a, |
| [Parameter(Position=1,ValueFromRemainingArguments=$true)][object[]]$c) |
| Process { "$a $c" } |
| } |
| } |
|
|
| It 'Should have only 1 input type' { |
| $inputTypes = (Get-Help -full invoke-inputtypetest).inputtypes.inputtype.type.name.trim().split("`n") |
| $inputTypes.Count | Should -Be 1 |
| $inputTypes | Should -Be "System.String" |
| } |
| } |
|
|