From 0290c9ac8ddd3438a4ef4248bbdea384212c29aa Mon Sep 17 00:00:00 2001 From: Ice3man Date: Fri, 24 Apr 2020 06:54:46 +0530 Subject: [PATCH] Update matchers.go --- pkg/matchers/matchers.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkg/matchers/matchers.go b/pkg/matchers/matchers.go index 3a72f66b..41970c0e 100644 --- a/pkg/matchers/matchers.go +++ b/pkg/matchers/matchers.go @@ -11,6 +11,8 @@ type Matcher struct { // matcherType is the internal type of the matcher matcherType MatcherType + // Name is matcher Name to be displayed in result output. + Name string `yaml:"name,omitempty"` // Status are the acceptable status codes for the response Status []int `yaml:"status,omitempty"` // Size is the acceptable size for the response @@ -19,12 +21,10 @@ type Matcher struct { Words []string `yaml:"words,omitempty"` // Regex are the regex pattern required to be present in the response Regex []string `yaml:"regex,omitempty"` + // regexCompiled is the compiled variant + regexCompiled []*regexp.Regexp // Binary are the binary characters required to be present in the response Binary []string `yaml:"binary,omitempty"` - // regexCompiled is the compiled variant - // Matcher Name to be displayed in result output. - Name string `yaml:"name,omitempty"` - regexCompiled []*regexp.Regexp // Condition is the optional condition between two matcher variables // @@ -50,7 +50,7 @@ const ( // RegexMatcher matches responses with regexes RegexMatcher // BinaryMatcher matches responses with words - BinaryMatcher MatcherType = iota + 2 + BinaryMatcher // StatusMatcher matches responses with status codes StatusMatcher // SizeMatcher matches responses with response size