Pester 5 Prep
This commit is contained in:
@@ -52,11 +52,11 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
it "one item test" {
|
it "one item test" {
|
||||||
Get-ZertoApiFilter -filtertable $oneItemTest | should be "?OneItem=Test"
|
Get-ZertoApiFilter -filtertable $oneItemTest | should -Be "?OneItem=Test"
|
||||||
}
|
}
|
||||||
|
|
||||||
it "should ignore CommonParameters" {
|
it "should ignore CommonParameters" {
|
||||||
Get-ZertoApiFilter -filtertable $commonParamTest | should be "?OneItem=Test"
|
Get-ZertoApiFilter -filtertable $commonParamTest | should -Be "?OneItem=Test"
|
||||||
}
|
}
|
||||||
|
|
||||||
it "should process a filter table with more than one item" {
|
it "should process a filter table with more than one item" {
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -53,11 +53,11 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
It "targetPort Parameter should have a Min value of 1024" {
|
It "targetPort Parameter should have a Min value of 1024" {
|
||||||
(Get-Command $global:function).Parameters['targetPort'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 1024
|
(Get-Command $global:function).Parameters['targetPort'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 1024
|
||||||
}
|
}
|
||||||
|
|
||||||
It "targetPort Parameter should have a Max value of 65535" {
|
It "targetPort Parameter should have a Max value of 65535" {
|
||||||
(Get-Command $global:function).Parameters['targetPort'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 65535
|
(Get-Command $global:function).Parameters['targetPort'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 65535
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Supports 'SupportsShouldProcess'" {
|
It "Supports 'SupportsShouldProcess'" {
|
||||||
|
|||||||
@@ -13,8 +13,6 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Context "$($global:function)::Function Unit Tests" {
|
Context "$($global:function)::Function Unit Tests" {
|
||||||
|
|
||||||
InModuleScope -ModuleName ZertoApiWrapper {
|
InModuleScope -ModuleName ZertoApiWrapper {
|
||||||
@@ -68,7 +66,6 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
|
|
||||||
Assert-MockCalled -ModuleName ZertoApiWrapper -CommandName Invoke-ZARestRequest -Exactly 1
|
Assert-MockCalled -ModuleName ZertoApiWrapper -CommandName Invoke-ZARestRequest -Exactly 1
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Remove-Variable -Name function -Scope Global
|
Remove-Variable -Name function -Scope Global
|
||||||
|
|||||||
@@ -105,11 +105,11 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
$headers = Connect-ZertoServer -zertoServer $Server -credential $credential -returnHeaders
|
$headers = Connect-ZertoServer -zertoServer $Server -credential $credential -returnHeaders
|
||||||
It "returns a Hashtable with 2 keys" {
|
It "returns a Hashtable with 2 keys" {
|
||||||
$headers | Should -BeOfType Hashtable
|
$headers | Should -BeOfType Hashtable
|
||||||
$headers.keys.count | Should be 2
|
$headers.keys.count | Should -Be 2
|
||||||
}
|
}
|
||||||
|
|
||||||
It "return value has a key called 'x-zerto-session'" {
|
It "return value has a key called 'x-zerto-session'" {
|
||||||
$headers.ContainsKey('x-zerto-session') | Should be $true
|
$headers.ContainsKey('x-zerto-session') | Should -Be $true
|
||||||
}
|
}
|
||||||
|
|
||||||
It "return key 'x-zerto-session' value should be a string" {
|
It "return key 'x-zerto-session' value should be a string" {
|
||||||
@@ -118,11 +118,11 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
It "return value has a key called 'accept'" {
|
It "return value has a key called 'accept'" {
|
||||||
$headers.ContainsKey('accept') | Should be $true
|
$headers.ContainsKey('accept') | Should -Be $true
|
||||||
}
|
}
|
||||||
|
|
||||||
It "return key 'accept' value should be 'application/json'" {
|
It "return key 'accept' value should be 'application/json'" {
|
||||||
$headers['accept'] | Should be 'application/json'
|
$headers['accept'] | Should -Be 'application/json'
|
||||||
}
|
}
|
||||||
|
|
||||||
It "should not require a port to be specified" {
|
It "should not require a port to be specified" {
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
|
|
||||||
it "$global:function should have exactly 14 parameters defined" {
|
It "$global:function should have exactly 14 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 14
|
(Get-Command $global:function).Parameters.Count | Should -Be 14
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -35,17 +35,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "LimitTo Parameter should have a Min value of 1" {
|
It "LimitTo Parameter should have a Min value of 1" {
|
||||||
(Get-Command $global:function).Parameters['limitTo'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 1
|
(Get-Command $global:function).Parameters['limitTo'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 1
|
||||||
}
|
}
|
||||||
|
|
||||||
It "LimitTo Parameter should have a Max value of 1000000" {
|
It "LimitTo Parameter should have a Max value of 1000000" {
|
||||||
(Get-Command $global:function).Parameters['limitTo'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 1000000
|
(Get-Command $global:function).Parameters['limitTo'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 1000000
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 14 parameters defined" {
|
It "$global:function should have exactly 14 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 14
|
(Get-Command $global:function).Parameters.Count | Should -Be 14
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -29,7 +29,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
|
|
||||||
it "$global:function should have exactly 16 parameters defined" {
|
It "$global:function should have exactly 16 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 16
|
(Get-Command $global:function).Parameters.Count | Should -Be 16
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -42,21 +42,21 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "LimitTo Parameter should have a Min value of 1" {
|
It "LimitTo Parameter should have a Min value of 1" {
|
||||||
(Get-Command $global:function).Parameters['limitTo'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 1
|
(Get-Command $global:function).Parameters['limitTo'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 1
|
||||||
}
|
}
|
||||||
|
|
||||||
It "LimitTo Parameter should have a Max value of 1000000" {
|
It "LimitTo Parameter should have a Max value of 1000000" {
|
||||||
(Get-Command $global:function).Parameters['limitTo'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 1000000
|
(Get-Command $global:function).Parameters['limitTo'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 1000000
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Category parameter should only have 2 options" {
|
It "Category parameter should only have 2 options" {
|
||||||
(Get-Command $global:function).Parameters['category'].Attributes.Where{ $_ -is [ValidateSet] }.ValidValues.Count | Should Be 2
|
(Get-Command $global:function).Parameters['category'].Attributes.Where{ $_ -is [ValidateSet] }.ValidValues.Count | Should -Be 2
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Category parameter should take 'events'" {
|
It "Category parameter should take 'events'" {
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
|
|
||||||
it "$global:function should have exactly 15 parameters defined" {
|
It "$global:function should have exactly 15 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 15
|
(Get-Command $global:function).Parameters.Count | Should -Be 15
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -36,17 +36,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 60" {
|
It "Interval Parameter should have a Min value of 60" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 60
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 60
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 2678400" {
|
It "Interval Parameter should have a Max value of 2678400" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 2678400
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 2678400
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 15 parameters defined" {
|
It "$global:function should have exactly 15 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 15
|
(Get-Command $global:function).Parameters.Count | Should -Be 15
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -35,17 +35,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 60" {
|
It "Interval Parameter should have a Min value of 60" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 60
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 60
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 2678400" {
|
It "Interval Parameter should have a Max value of 2678400" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 2678400
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 2678400
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 14 parameters defined" {
|
It "$global:function should have exactly 14 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 14
|
(Get-Command $global:function).Parameters.Count | Should -Be 14
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -29,7 +29,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 14 parameters defined" {
|
It "$global:function should have exactly 14 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 14
|
(Get-Command $global:function).Parameters.Count | Should -Be 14
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -29,7 +29,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 15 parameters defined" {
|
It "$global:function should have exactly 15 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 15
|
(Get-Command $global:function).Parameters.Count | Should -Be 15
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -35,17 +35,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 60" {
|
It "Interval Parameter should have a Min value of 60" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 60
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 60
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 2678400" {
|
It "Interval Parameter should have a Max value of 2678400" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 2678400
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 2678400
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 15 parameters defined" {
|
It "$global:function should have exactly 15 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 15
|
(Get-Command $global:function).Parameters.Count | Should -Be 15
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -35,17 +35,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 60" {
|
It "Interval Parameter should have a Min value of 60" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 60
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 60
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 2678400" {
|
It "Interval Parameter should have a Max value of 2678400" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 2678400
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 2678400
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 15 parameters defined" {
|
It "$global:function should have exactly 15 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 15
|
(Get-Command $global:function).Parameters.Count | Should -Be 15
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -35,17 +35,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 60" {
|
It "Interval Parameter should have a Min value of 60" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 60
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 60
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 2678400" {
|
It "Interval Parameter should have a Max value of 2678400" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 2678400
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 2678400
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 15 parameters defined" {
|
It "$global:function should have exactly 15 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 15
|
(Get-Command $global:function).Parameters.Count | Should -Be 15
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -35,17 +35,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 60" {
|
It "Interval Parameter should have a Min value of 60" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 60
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 60
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 2678400" {
|
It "Interval Parameter should have a Max value of 2678400" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 2678400
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 2678400
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 15 parameters defined" {
|
It "$global:function should have exactly 15 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 15
|
(Get-Command $global:function).Parameters.Count | Should -Be 15
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -35,17 +35,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 60" {
|
It "Interval Parameter should have a Min value of 60" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 60
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 60
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 2678400" {
|
It "Interval Parameter should have a Max value of 2678400" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 2678400
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 2678400
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 14 parameters defined" {
|
It "$global:function should have exactly 14 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 14
|
(Get-Command $global:function).Parameters.Count | Should -Be 14
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -29,7 +29,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 14 parameters defined" {
|
It "$global:function should have exactly 14 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 14
|
(Get-Command $global:function).Parameters.Count | Should -Be 14
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -29,7 +29,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 14 parameters defined" {
|
It "$global:function should have exactly 14 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 14
|
(Get-Command $global:function).Parameters.Count | Should -Be 14
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -29,7 +29,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -37,17 +37,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 60" {
|
It "Interval Parameter should have a Min value of 60" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 60
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 60
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 2678400" {
|
It "Interval Parameter should have a Max value of 2678400" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 2678400
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 2678400
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -37,17 +37,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 60" {
|
It "Interval Parameter should have a Min value of 60" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 60
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 60
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 2678400" {
|
It "Interval Parameter should have a Max value of 2678400" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 2678400
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 2678400
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,17 +35,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 60" {
|
It "Interval Parameter should have a Min value of 60" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 60
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 60
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 2678400" {
|
It "Interval Parameter should have a Max value of 2678400" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 2678400
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 2678400
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -35,17 +35,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 60" {
|
It "Interval Parameter should have a Min value of 60" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 60
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 60
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 2678400" {
|
It "Interval Parameter should have a Max value of 2678400" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 2678400
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 2678400
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,17 +35,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 60" {
|
It "Interval Parameter should have a Min value of 60" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 60
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 60
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 2678400" {
|
It "Interval Parameter should have a Max value of 2678400" {
|
||||||
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 2678400
|
(Get-Command $global:function).Parameters['Interval'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 2678400
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
It "zOrgIdentifier has the NotNullOrEmpty Validator" {
|
It "zOrgIdentifier has the NotNullOrEmpty Validator" {
|
||||||
(Get-Command $global:function).Parameters['zOrgIdentifier'].Attributes.Where{ $_ -is [ValidateNotNullOrEmpty] }.Count | Should Be 1
|
(Get-Command $global:function).Parameters['zOrgIdentifier'].Attributes.Where{ $_ -is [ValidateNotNullOrEmpty] }.Count | Should -Be 1
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,17 +34,17 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Min value of 1" {
|
It "Interval Parameter should have a Min value of 1" {
|
||||||
(Get-Command $global:function).Parameters['limitTo'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should Be 1
|
(Get-Command $global:function).Parameters['limitTo'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 1
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Interval Parameter should have a Max value of 1000000" {
|
It "Interval Parameter should have a Max value of 1000000" {
|
||||||
(Get-Command $global:function).Parameters['limitTo'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should Be 1000000
|
(Get-Command $global:function).Parameters['limitTo'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 1000000
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
It "datastoreIdentifier parameter does not take null or empty values" {
|
It "datastoreIdentifier parameter does not take null or empty values" {
|
||||||
(Get-Command $global:function).Parameters['datastoreIdentifier'].Attributes.Where{ $_ -is [ValidateNotNullOrEmpty] }.count | Should Be 1
|
(Get-Command $global:function).Parameters['datastoreIdentifier'].Attributes.Where{ $_ -is [ValidateNotNullOrEmpty] }.count | Should -Be 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -53,13 +53,13 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
It "entityType parameter only accecpts 4 different values" {
|
It "entityType parameter only accecpts 4 different values" {
|
||||||
(Get-Command $global:function).Parameters['entityType'].Attributes.Where{ $_ -is [ValidateSet] }.ValidValues.Count | Should be 4
|
(Get-Command $global:function).Parameters['entityType'].Attributes.Where{ $_ -is [ValidateSet] }.ValidValues.Count | Should -Be 4
|
||||||
}
|
}
|
||||||
|
|
||||||
It "entityType parameter accecpts 'VPG' as a Value" {
|
It "entityType parameter accecpts 'VPG' as a Value" {
|
||||||
@@ -79,7 +79,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
It "category parameter only accecpts 3 different values" {
|
It "category parameter only accecpts 3 different values" {
|
||||||
(Get-Command $global:function).Parameters['category'].Attributes.Where{ $_ -is [ValidateSet] }.ValidValues.Count | Should be 3
|
(Get-Command $global:function).Parameters['category'].Attributes.Where{ $_ -is [ValidateSet] }.ValidValues.Count | Should -Be 3
|
||||||
}
|
}
|
||||||
|
|
||||||
It "category parameter accecpts 'All' as a Value" {
|
It "category parameter accecpts 'All' as a Value" {
|
||||||
@@ -95,7 +95,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
It "eventCategory parameter only accecpts 3 different values" {
|
It "eventCategory parameter only accecpts 3 different values" {
|
||||||
(Get-Command $global:function).Parameters['eventCategory'].Attributes.Where{ $_ -is [ValidateSet] }.ValidValues.Count | Should be 3
|
(Get-Command $global:function).Parameters['eventCategory'].Attributes.Where{ $_ -is [ValidateSet] }.ValidValues.Count | Should -Be 3
|
||||||
}
|
}
|
||||||
|
|
||||||
It "eventCategory parameter accecpts 'All' as a Value" {
|
It "eventCategory parameter accecpts 'All' as a Value" {
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | Should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
It "runs when called" {
|
It "runs when called" {
|
||||||
Invoke-ZARestRequest -uri "myuri" | Should Be "Ran Command"
|
Invoke-ZARestRequest -uri "myuri" | Should -Be "Ran Command"
|
||||||
}
|
}
|
||||||
|
|
||||||
It "throws when the last action was over 60 minutes ago" {
|
It "throws when the last action was over 60 minutes ago" {
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 20 parameters defined" {
|
It "$global:function should have exactly 20 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 20
|
(Get-Command $global:function).Parameters.Count | Should -Be 20
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -55,7 +55,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -82,11 +82,11 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
(Get-Command $global:function).Parameters['shutdownPolicy'].Attributes.Where{ $_ -is [ValidateSet] }.ValidValues | Should -Contain 2
|
(Get-Command $global:function).Parameters['shutdownPolicy'].Attributes.Where{ $_ -is [ValidateSet] }.ValidValues | Should -Contain 2
|
||||||
}
|
}
|
||||||
|
|
||||||
it "Time to wait before shutdown in sec should have a default value of 3600" {
|
It "Time to wait before shutdown in sec should have a default value of 3600" {
|
||||||
Get-Command $global:function | Should -HaveParameter timeToWaitBeforeShutdownInSec -DefaultValue 3600
|
Get-Command $global:function | Should -HaveParameter timeToWaitBeforeShutdownInSec -DefaultValue 3600
|
||||||
}
|
}
|
||||||
|
|
||||||
it "Time to wait before shutdown in sec should have a minimum value of 300 and max value of 86400" {
|
It "Time to wait before shutdown in sec should have a minimum value of 300 and max value of 86400" {
|
||||||
(Get-Command $global:function).Parameters['timeToWaitBeforeShutdownInSec'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 300
|
(Get-Command $global:function).Parameters['timeToWaitBeforeShutdownInSec'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 300
|
||||||
(Get-Command $global:function).Parameters['timeToWaitBeforeShutdownInSec'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 86400
|
(Get-Command $global:function).Parameters['timeToWaitBeforeShutdownInSec'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 86400
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
|
|
||||||
it "$global:function should have exactly 15 parameters defined" {
|
It "$global:function should have exactly 15 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 15
|
(Get-Command $global:function).Parameters.Count | Should -Be 15
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -41,7 +41,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ $global:function = ((Split-Path -leaf $MyInvocation.MyCommand.Path).Split('.'))[
|
|||||||
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
it "$global:function should have exactly 20 parameters defined" {
|
It "$global:function should have exactly 20 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 20
|
(Get-Command $global:function).Parameters.Count | Should -Be 20
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -55,7 +55,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -67,7 +67,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
(Get-Command $global:function).Parameters['commitPolicy'].Attributes.Where{ $_ -is [ValidateSet] }.ValidValues | Should -Contain 'None'
|
(Get-Command $global:function).Parameters['commitPolicy'].Attributes.Where{ $_ -is [ValidateSet] }.ValidValues | Should -Contain 'None'
|
||||||
}
|
}
|
||||||
|
|
||||||
it "Commit Policy Timeout should have a minimum value of 300 and max value of 86400" {
|
It "Commit Policy Timeout should have a minimum value of 300 and max value of 86400" {
|
||||||
(Get-Command $global:function).Parameters['commitPolicyTimeout'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 300
|
(Get-Command $global:function).Parameters['commitPolicyTimeout'].Attributes.Where{ $_ -is [ValidateRange] }.MinRange | Should -Be 300
|
||||||
(Get-Command $global:function).Parameters['commitPolicyTimeout'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 86400
|
(Get-Command $global:function).Parameters['commitPolicyTimeout'].Attributes.Where{ $_ -is [ValidateRange] }.MaxRange | Should -Be 86400
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
|
|
||||||
Context "$global:function::Parameter Unit Tests" {
|
Context "$global:function::Parameter Unit Tests" {
|
||||||
|
|
||||||
it "$global:function should have exactly 16 parameters defined" {
|
It "$global:function should have exactly 16 parameters defined" {
|
||||||
(get-command $global:function).Parameters.Count | Should -Be 16
|
(Get-Command $global:function).Parameters.Count | Should -Be 16
|
||||||
}
|
}
|
||||||
|
|
||||||
$ParameterTestCases = @(
|
$ParameterTestCases = @(
|
||||||
@@ -41,7 +41,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
$true | should be $false -Because "No Validation Selected. Review test cases"
|
$true | Should -Be $false -Because "No Validation Selected. Review test cases"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,12 +40,12 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' {
|
|||||||
It "<TestName> parameter cannot be null or empty" -TestCases $ParameterValidationTestCases {
|
It "<TestName> parameter cannot be null or empty" -TestCases $ParameterValidationTestCases {
|
||||||
param($ParameterName)
|
param($ParameterName)
|
||||||
$thisParameter = $thisCommand.Parameters[$ParameterName]
|
$thisParameter = $thisCommand.Parameters[$ParameterName]
|
||||||
$thisParameter.Attributes.Where{ $_ -is [ValidateNotNullOrEmpty] }.Count | Should Be 1
|
$thisParameter.Attributes.Where{ $_ -is [ValidateNotNullOrEmpty] }.Count | Should -Be 1
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Method parameter can only be 'GET', 'POST', 'PUT', 'DELETE'" {
|
It "Method parameter can only be 'GET', 'POST', 'PUT', 'DELETE'" {
|
||||||
$thisParameter = $thisCommand.Parameters['method']
|
$thisParameter = $thisCommand.Parameters['method']
|
||||||
$thisParameter.Attributes.Where{ $_ -is [ValidateSet] }.Count | Should Be 1
|
$thisParameter.Attributes.Where{ $_ -is [ValidateSet] }.Count | Should -Be 1
|
||||||
$thisParameter.Attributes.Where{ $_ -is [ValidateSet] }.validValues -contains 'GET' | Should -BeTrue
|
$thisParameter.Attributes.Where{ $_ -is [ValidateSet] }.validValues -contains 'GET' | Should -BeTrue
|
||||||
$thisParameter.Attributes.Where{ $_ -is [ValidateSet] }.validValues -contains 'PUT' | Should -BeTrue
|
$thisParameter.Attributes.Where{ $_ -is [ValidateSet] }.validValues -contains 'PUT' | Should -BeTrue
|
||||||
$thisParameter.Attributes.Where{ $_ -is [ValidateSet] }.validValues -contains 'POST' | Should -BeTrue
|
$thisParameter.Attributes.Where{ $_ -is [ValidateSet] }.validValues -contains 'POST' | Should -BeTrue
|
||||||
|
|||||||
Reference in New Issue
Block a user