mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
* [macOS] Refactor Common.Helpers * Update readme file * Remove unnecessary double quotes --------- Co-authored-by: Alexey Ayupov <“alexey.ayupov@akvelon.com”>
24 lines
823 B
PowerShell
24 lines
823 B
PowerShell
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
|
|
|
|
$os = Get-OSVersion
|
|
|
|
Describe "MongoDB" -Skip:($os.IsVentura -or $os.IsSonoma) {
|
|
It "<ToolName>" -TestCases @(
|
|
@{ ToolName = "mongo" }
|
|
@{ ToolName = "mongod" }
|
|
) {
|
|
$toolsetVersion = (Get-ToolsetContent).mongodb.version
|
|
(&$ToolName --version)[2].Split('"')[-2] | Should -BeLike "$toolsetVersion*"
|
|
}
|
|
}
|
|
|
|
Describe "PostgreSQL" -Skip:($os.IsVentura -or $os.IsSonoma) {
|
|
It "PostgreSQL version should correspond to the version in the toolset" {
|
|
$toolsetVersion = (Get-ToolsetContent).postgresql.version
|
|
# Client version
|
|
(psql --version).split()[-2] | Should -BeLike "$toolsetVersion*"
|
|
# Server version
|
|
(pg_config --version).split()[-2] | Should -BeLike "$toolsetVersion*"
|
|
}
|
|
}
|