PowerShell/test/powershell/Get-Event.Tests.ps1

34 lines
949 B
PowerShell
Raw Normal View History

2015-11-19 07:20:50 +01:00
Describe "Get-Event" {
BeforeEach {
( New-Event -SourceIdentifier PesterTestEvent -sender Windows.timer -messagedata "PesterTestMessage" )
}
2015-11-19 07:20:50 +01:00
AfterEach {
( Remove-Event -SourceIdentifier PesterTestEvent -ErrorAction SilentlyContinue )
2015-11-19 07:20:50 +01:00
}
2015-11-19 07:20:50 +01:00
Context "Check return type of Get-Event" {
It "Should return PSEventArgs as return type of Get-Event" {
{ ( Get-Event -SourceIdentifier PesterTestEvent ).GetType() | Should Be System.Management.Automation.PSEventArgs }
2015-11-19 07:20:50 +01:00
}
}
Context "Validate Get-Event can retrieve event" {
It "Should return at least 1 event" {
{ (Get-Event).Count | Should BeGreaterThan 0 }
}
2015-11-19 07:20:50 +01:00
It "Should return PesterTestMessage as the MessageData" {
{ (Get-Event -SourceIdentifier PesterTimer).MessageData | Should Be "PesterTestMessage" }
}
It "Should return Sender as Windows.timer" {
{ (Get-Event -SourceIdentifier PesterTimer).Sender | Should be Windows.timer }
2015-11-19 07:20:50 +01:00
}
2015-11-19 07:20:50 +01:00
}
}