2021-09-01 13:50:18 +00:00
package internal
2019-05-31 09:45:11 +00:00
import (
"errors"
"fmt"
"reflect"
2021-09-01 13:50:18 +00:00
"runtime"
2019-05-31 09:45:11 +00:00
"time"
"github.com/onsi/gomega/types"
)
type AsyncAssertionType uint
const (
AsyncAssertionTypeEventually AsyncAssertionType = iota
AsyncAssertionTypeConsistently
)
type AsyncAssertion struct {
2021-09-01 13:50:18 +00:00
asyncType AsyncAssertionType
actualIsFunc bool
actualValue interface { }
actualFunc func ( ) ( [ ] reflect . Value , error )
2019-05-31 09:45:11 +00:00
timeoutInterval time . Duration
pollingInterval time . Duration
offset int
2021-09-01 13:50:18 +00:00
g * Gomega
2019-05-31 09:45:11 +00:00
}
2021-09-01 13:50:18 +00:00
func NewAsyncAssertion ( asyncType AsyncAssertionType , actualInput interface { } , g * Gomega , timeoutInterval time . Duration , pollingInterval time . Duration , offset int ) * AsyncAssertion {
out := & AsyncAssertion {
2019-05-31 09:45:11 +00:00
asyncType : asyncType ,
timeoutInterval : timeoutInterval ,
pollingInterval : pollingInterval ,
offset : offset ,
2021-09-01 13:50:18 +00:00
g : g ,
}
switch actualType := reflect . TypeOf ( actualInput ) ; {
case actualType . Kind ( ) != reflect . Func :
out . actualValue = actualInput
case actualType . NumIn ( ) == 0 && actualType . NumOut ( ) > 0 :
out . actualIsFunc = true
out . actualFunc = func ( ) ( [ ] reflect . Value , error ) {
return reflect . ValueOf ( actualInput ) . Call ( [ ] reflect . Value { } ) , nil
}
case actualType . NumIn ( ) == 1 && actualType . In ( 0 ) . Implements ( reflect . TypeOf ( ( * types . Gomega ) ( nil ) ) . Elem ( ) ) :
out . actualIsFunc = true
out . actualFunc = func ( ) ( values [ ] reflect . Value , err error ) {
var assertionFailure error
assertionCapturingGomega := NewGomega ( g . DurationBundle ) . ConfigureWithFailHandler ( func ( message string , callerSkip ... int ) {
skip := 0
if len ( callerSkip ) > 0 {
skip = callerSkip [ 0 ]
}
_ , file , line , _ := runtime . Caller ( skip + 1 )
assertionFailure = fmt . Errorf ( "Assertion in callback at %s:%d failed:\n%s" , file , line , message )
panic ( "stop execution" )
} )
defer func ( ) {
if actualType . NumOut ( ) == 0 {
if assertionFailure == nil {
values = [ ] reflect . Value { reflect . Zero ( reflect . TypeOf ( ( * error ) ( nil ) ) . Elem ( ) ) }
} else {
values = [ ] reflect . Value { reflect . ValueOf ( assertionFailure ) }
}
} else {
err = assertionFailure
}
if e := recover ( ) ; e != nil && assertionFailure == nil {
panic ( e )
}
} ( )
values = reflect . ValueOf ( actualInput ) . Call ( [ ] reflect . Value { reflect . ValueOf ( assertionCapturingGomega ) } )
return
}
default :
msg := fmt . Sprintf ( "The function passed to Gomega's async assertions should either take no arguments and return values, or take a single Gomega interface that it can use to make assertions within the body of the function. When taking a Gomega interface the function can optionally return values or return nothing. The function you passed takes %d arguments and returns %d values." , actualType . NumIn ( ) , actualType . NumOut ( ) )
g . Fail ( msg , offset + 4 )
2019-05-31 09:45:11 +00:00
}
2021-09-01 13:50:18 +00:00
return out
2019-05-31 09:45:11 +00:00
}
func ( assertion * AsyncAssertion ) Should ( matcher types . GomegaMatcher , optionalDescription ... interface { } ) bool {
2021-09-01 13:50:18 +00:00
assertion . g . THelper ( )
2019-05-31 09:45:11 +00:00
return assertion . match ( matcher , true , optionalDescription ... )
}
func ( assertion * AsyncAssertion ) ShouldNot ( matcher types . GomegaMatcher , optionalDescription ... interface { } ) bool {
2021-09-01 13:50:18 +00:00
assertion . g . THelper ( )
2019-05-31 09:45:11 +00:00
return assertion . match ( matcher , false , optionalDescription ... )
}
func ( assertion * AsyncAssertion ) buildDescription ( optionalDescription ... interface { } ) string {
switch len ( optionalDescription ) {
case 0 :
return ""
2020-01-14 10:38:55 +00:00
case 1 :
if describe , ok := optionalDescription [ 0 ] . ( func ( ) string ) ; ok {
return describe ( ) + "\n"
}
2019-05-31 09:45:11 +00:00
}
2020-01-14 10:38:55 +00:00
return fmt . Sprintf ( optionalDescription [ 0 ] . ( string ) , optionalDescription [ 1 : ] ... ) + "\n"
2019-05-31 09:45:11 +00:00
}
func ( assertion * AsyncAssertion ) pollActual ( ) ( interface { } , error ) {
2021-09-01 13:50:18 +00:00
if ! assertion . actualIsFunc {
return assertion . actualValue , nil
}
2019-05-31 09:45:11 +00:00
2021-09-01 13:50:18 +00:00
values , err := assertion . actualFunc ( )
if err != nil {
return nil , err
}
extras := [ ] interface { } { }
for _ , value := range values [ 1 : ] {
extras = append ( extras , value . Interface ( ) )
}
success , message := vetExtras ( extras )
if ! success {
return nil , errors . New ( message )
2019-05-31 09:45:11 +00:00
}
2021-09-01 13:50:18 +00:00
return values [ 0 ] . Interface ( ) , nil
2019-05-31 09:45:11 +00:00
}
func ( assertion * AsyncAssertion ) matcherMayChange ( matcher types . GomegaMatcher , value interface { } ) bool {
2021-09-01 13:50:18 +00:00
if assertion . actualIsFunc {
2019-05-31 09:45:11 +00:00
return true
}
2021-09-01 13:50:18 +00:00
return types . MatchMayChangeInTheFuture ( matcher , value )
2019-05-31 09:45:11 +00:00
}
func ( assertion * AsyncAssertion ) match ( matcher types . GomegaMatcher , desiredMatch bool , optionalDescription ... interface { } ) bool {
timer := time . Now ( )
timeout := time . After ( assertion . timeoutInterval )
var matches bool
var err error
mayChange := true
value , err := assertion . pollActual ( )
if err == nil {
mayChange = assertion . matcherMayChange ( matcher , value )
matches , err = matcher . Match ( value )
}
2021-09-01 13:50:18 +00:00
assertion . g . THelper ( )
2019-05-31 09:45:11 +00:00
fail := func ( preamble string ) {
errMsg := ""
message := ""
if err != nil {
errMsg = "Error: " + err . Error ( )
} else {
if desiredMatch {
message = matcher . FailureMessage ( value )
} else {
message = matcher . NegatedFailureMessage ( value )
}
}
2021-09-01 13:50:18 +00:00
assertion . g . THelper ( )
2020-01-14 10:38:55 +00:00
description := assertion . buildDescription ( optionalDescription ... )
2021-09-01 13:50:18 +00:00
assertion . g . Fail ( fmt . Sprintf ( "%s after %.3fs.\n%s%s%s" , preamble , time . Since ( timer ) . Seconds ( ) , description , message , errMsg ) , 3 + assertion . offset )
2019-05-31 09:45:11 +00:00
}
if assertion . asyncType == AsyncAssertionTypeEventually {
for {
if err == nil && matches == desiredMatch {
return true
}
if ! mayChange {
fail ( "No future change is possible. Bailing out early" )
return false
}
select {
case <- time . After ( assertion . pollingInterval ) :
value , err = assertion . pollActual ( )
if err == nil {
mayChange = assertion . matcherMayChange ( matcher , value )
matches , err = matcher . Match ( value )
}
case <- timeout :
fail ( "Timed out" )
return false
}
}
} else if assertion . asyncType == AsyncAssertionTypeConsistently {
for {
if ! ( err == nil && matches == desiredMatch ) {
fail ( "Failed" )
return false
}
if ! mayChange {
return true
}
select {
case <- time . After ( assertion . pollingInterval ) :
value , err = assertion . pollActual ( )
if err == nil {
mayChange = assertion . matcherMayChange ( matcher , value )
matches , err = matcher . Match ( value )
}
case <- timeout :
return true
}
}
}
return false
}