mirror of
https://github.com/httprunner/httprunner.git
synced 2026-09-06 16:07:45 +08:00
feat: assert with startswith and endswith for string
This commit is contained in:
@@ -1,6 +1,9 @@
|
|||||||
package builtin
|
package builtin
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -15,10 +18,36 @@ var Assertions = map[string]func(t assert.TestingT, expected interface{}, actual
|
|||||||
"contains": assert.Contains,
|
"contains": assert.Contains,
|
||||||
"regex_match": assert.Regexp,
|
"regex_match": assert.Regexp,
|
||||||
// custom assertions
|
// custom assertions
|
||||||
|
"startswith": StartsWith, // check if string starts with substring
|
||||||
|
"endswith": EndsWith, // check if string ends with substring
|
||||||
"length_equals": EqualLength,
|
"length_equals": EqualLength,
|
||||||
"length_equal": EqualLength, // alias for length_equals
|
"length_equal": EqualLength, // alias for length_equals
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func StartsWith(t assert.TestingT, expected, actual interface{}, msgAndArgs ...interface{}) bool {
|
||||||
|
if !assert.IsType(t, "string", actual, fmt.Sprintf("actual is %v", actual)) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
if !assert.IsType(t, "string", expected, fmt.Sprintf("expected is %v", expected)) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
actualString := actual.(string)
|
||||||
|
expectedString := expected.(string)
|
||||||
|
return assert.True(t, strings.HasPrefix(actualString, expectedString), msgAndArgs...)
|
||||||
|
}
|
||||||
|
|
||||||
|
func EndsWith(t assert.TestingT, expected, actual interface{}, msgAndArgs ...interface{}) bool {
|
||||||
|
if !assert.IsType(t, "string", actual, fmt.Sprintf("actual is %v", actual)) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
if !assert.IsType(t, "string", expected, fmt.Sprintf("expected is %v", expected)) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
actualString := actual.(string)
|
||||||
|
expectedString := expected.(string)
|
||||||
|
return assert.True(t, strings.HasSuffix(actualString, expectedString), msgAndArgs...)
|
||||||
|
}
|
||||||
|
|
||||||
func EqualLength(t assert.TestingT, expected, actual interface{}, msgAndArgs ...interface{}) bool {
|
func EqualLength(t assert.TestingT, expected, actual interface{}, msgAndArgs ...interface{}) bool {
|
||||||
return assert.Len(t, actual, expected.(int), msgAndArgs...)
|
return assert.Len(t, actual, expected.(int), msgAndArgs...)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,43 @@
|
|||||||
|
package builtin
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestStartsWith(t *testing.T) {
|
||||||
|
testData := []struct {
|
||||||
|
raw string
|
||||||
|
expected string
|
||||||
|
}{
|
||||||
|
{"", ""},
|
||||||
|
{"a", "a"},
|
||||||
|
{"abc", "a"},
|
||||||
|
{"abc", "ab"},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, data := range testData {
|
||||||
|
if !assert.True(t, StartsWith(t, data.expected, data.raw)) {
|
||||||
|
t.Fail()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestEndsWith(t *testing.T) {
|
||||||
|
testData := []struct {
|
||||||
|
raw string
|
||||||
|
expected string
|
||||||
|
}{
|
||||||
|
{"", ""},
|
||||||
|
{"a", "a"},
|
||||||
|
{"abc", "c"},
|
||||||
|
{"abc", "bc"},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, data := range testData {
|
||||||
|
if !assert.True(t, EndsWith(t, data.expected, data.raw)) {
|
||||||
|
t.Fail()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+22
@@ -32,6 +32,28 @@ func (s *stepRequestValidation) AssertEqual(jmesPath string, expected interface{
|
|||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *stepRequestValidation) AssertStartsWith(jmesPath string, expected interface{}, msg string) *stepRequestValidation {
|
||||||
|
validator := TValidator{
|
||||||
|
Check: jmesPath,
|
||||||
|
Assert: "startswith",
|
||||||
|
Expect: expected,
|
||||||
|
Message: msg,
|
||||||
|
}
|
||||||
|
s.step.Validators = append(s.step.Validators, validator)
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *stepRequestValidation) AssertEndsWith(jmesPath string, expected interface{}, msg string) *stepRequestValidation {
|
||||||
|
validator := TValidator{
|
||||||
|
Check: jmesPath,
|
||||||
|
Assert: "endswith",
|
||||||
|
Expect: expected,
|
||||||
|
Message: msg,
|
||||||
|
}
|
||||||
|
s.step.Validators = append(s.step.Validators, validator)
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
func (s *stepRequestValidation) AssertLengthEqual(jmesPath string, expected interface{}, msg string) *stepRequestValidation {
|
func (s *stepRequestValidation) AssertLengthEqual(jmesPath string, expected interface{}, msg string) *stepRequestValidation {
|
||||||
validator := TValidator{
|
validator := TValidator{
|
||||||
Check: jmesPath,
|
Check: jmesPath,
|
||||||
|
|||||||
Reference in New Issue
Block a user