PowerShell/test/powershell/Modules/Microsoft.PowerShell.Utility/Group-Object.Tests.ps1

101 lines
3.2 KiB
PowerShell
Raw Normal View History

Describe "Group-Object DRT Unit Tests" -Tags "CI" {
2016-05-07 11:24:08 +02:00
It "Test for CaseSensitive switch" {
$testObject = 'aA', 'aA', 'AA', 'AA'
$results = $testObject | Group-Object -CaseSensitive
$results.Count | Should Be 2
$results.Name.Count | Should Be 2
$results.Group.Count | Should Be 4
$results.Name | Should Be aA,AA
$results.Group | Should Be aA,aA,AA,AA
$results.Group.GetType().BaseType | Should Be Array
}
}
Describe "Group-Object" -Tags "CI" {
2015-10-06 22:37:45 +02:00
$testObject = Get-ChildItem
It "Should be called using an object as piped without error with no switches" {
{$testObject | Group-Object } | Should Not Throw
2015-10-06 22:37:45 +02:00
}
It "Should be called using the InputObject without error with no other switches" {
{ Group-Object -InputObject $testObject } | Should Not Throw
2015-10-06 22:37:45 +02:00
}
It "Should return three columns- count, name, and group" {
$actual = Group-Object -InputObject $testObject
2015-10-06 22:37:45 +02:00
$actual.Count | Should BeGreaterThan 0
$actual.Name.Count | Should BeGreaterThan 0
$actual.Group.Count | Should BeGreaterThan 0
2015-10-06 22:37:45 +02:00
}
It "Should use the group alias" {
{ group -InputObject $testObject } | Should Not Throw
2015-10-06 22:37:45 +02:00
}
It "Should create a collection when the inputObject parameter is used" {
$actualParam = Group-Object -InputObject $testObject
2015-10-06 22:37:45 +02:00
$actualParam.Group.GetType().Name | Should Be "Collection``1"
2015-10-06 22:37:45 +02:00
}
It "Should output an array when piped input is used" {
$actual = $testObject | Group-Object
2015-10-06 22:37:45 +02:00
$actual.Group.GetType().BaseType | Should Be Array
2015-10-06 22:37:45 +02:00
}
It "Should have the same output between the group alias and the group-object cmdlet" {
$actualAlias = group -InputObject $testObject
$actualCmdlet = Group-Object -InputObject $testObject
2015-10-06 22:37:45 +02:00
$actualAlias.Name[0] | Should Be $actualCmdlet.Name[0]
$actualAlias.Group[0] | Should Be $actualCmdlet.Group[0]
2015-10-06 22:37:45 +02:00
}
It "Should be able to use the property switch without error" {
{ $testObject | Group-Object -Property Attributes } | Should Not Throw
2015-10-06 22:37:45 +02:00
$actual = $testObject | Group-Object -Property Attributes
2015-10-06 22:37:45 +02:00
$actual.Group.Count | Should BeGreaterThan 0
2015-10-06 22:37:45 +02:00
}
It "Should be able to use the property switch on multiple properties without error" {
{ $testObject | Group-Object -Property Attributes, Length }
2015-10-06 22:37:45 +02:00
$actual = $testObject | Group-Object -Property Attributes, Length
2015-10-06 22:37:45 +02:00
$actual.Group.Count | Should BeGreaterThan 0
2015-10-06 22:37:45 +02:00
}
It "Should be able to omit members of a group using the NoElement switch without error" {
{ $testObject | Group-Object -NoElement } | Should Not Throw
2015-10-06 22:37:45 +02:00
($testObject | Group-Object -NoElement).Group | Should BeNullOrEmpty
2015-10-06 22:37:45 +02:00
}
It "Should be able to output a hashtable datatype" {
$actual = $testObject | Group-Object -AsHashTable
2015-10-06 22:37:45 +02:00
$actual.GetType().Name | Should be "Hashtable"
2015-10-06 22:37:45 +02:00
}
It "Should be able to access when output as hash table" {
$actual = $testObject | Group-Object -AsHashTable
2015-10-06 22:37:45 +02:00
$actual.Keys | Should Not BeNullOrEmpty
2015-10-06 22:37:45 +02:00
}
It "Should throw when attempting to use AsString without AsHashTable" {
{ $testObject | Group-Object -AsString } | Should Throw
2015-10-06 22:37:45 +02:00
}
It "Should not throw error when using AsString when the AsHashTable was added" {
{ $testObject | Group-Object -AsHashTable -AsString } | Should Not Throw
2015-10-06 22:37:45 +02:00
}
}