fix: no error is logged when the assertion fails

This commit is contained in:
徐聪
2022-01-18 21:33:41 +08:00
parent 908277efe6
commit 62f54162e4
2 changed files with 9 additions and 0 deletions

View File

@@ -66,6 +66,7 @@ func (s *requestStats) logTransaction(name string, success bool, responseTime in
s.transactionPassed++
} else {
s.transactionFailed++
s.get(name, "transaction").logError("")
}
s.get(name, "transaction").log(responseTime, contentLength)
}

View File

@@ -2,6 +2,8 @@ package hrp
import (
"encoding/json"
"fmt"
"github.com/pkg/errors"
"io/ioutil"
"net/http"
"strings"
@@ -131,6 +133,12 @@ func (v *responseObject) Validate(validators []Validator, variablesMapping map[s
Msgf("validate %s", checkItem)
if !result {
v.t.Fail()
return errors.New(fmt.Sprintf(
"do assertion failed, assertMethod: %v, expectValue: %v, checkValue: %v",
assertMethod,
expectValue,
checkValue,
))
}
}
return nil