Documentation ¶
Index ¶
- func ConvertToStepText(fragments []*gauge_messages.Fragment) string
- func CreateStepFromStepRequest(stepReq *gauge_messages.ExecuteStepRequest) *gauge.Step
- func CreateStepValue(step *gauge.Step) gauge.StepValue
- func ExtractStepValueAndParams(stepText string, hasInlineTable bool) (*gauge.StepValue, error)
- func GetUnescapedString(string1 string) string
- func HandleParseResult(results ...*ParseResult) bool
- func ParseSpecs(args []string, conceptsDictionary *gauge.ConceptDictionary, ...) ([]*gauge.Specification, bool)
- func PopulateConceptDynamicParams(concept *gauge.Step, dataTableLookup *gauge.ArgLookup)
- func TableFrom(protoTable *gauge_messages.ProtoTable) *gauge.Table
- type ConceptParser
- type ParamResolver
- type ParseError
- type ParseResult
- func CreateConceptsDictionary() (*gauge.ConceptDictionary, *ParseResult)
- func CreateStepUsingLookup(stepToken *Token, lookup *gauge.ArgLookup, specFileName string) (*gauge.Step, *ParseResult)
- func ParseConcepts() (*gauge.ConceptDictionary, *ParseResult)
- func ParseSpecFiles(specFiles []string, conceptDictionary *gauge.ConceptDictionary, ...) ([]*gauge.Specification, []*ParseResult)
- type SpecParser
- func (parser *SpecParser) CreateSpecification(tokens []*Token, conceptDictionary *gauge.ConceptDictionary, specFile string) (*gauge.Specification, *ParseResult)
- func (parser *SpecParser) GenerateTokens(specText, fileName string) ([]*Token, []ParseError)
- func (parser *SpecParser) Parse(specText string, conceptDictionary *gauge.ConceptDictionary, specFile string) (*gauge.Specification, *ParseResult)
- type Token
- type Warning
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ConvertToStepText ¶
func ConvertToStepText(fragments []*gauge_messages.Fragment) string
func CreateStepFromStepRequest ¶
func CreateStepFromStepRequest(stepReq *gauge_messages.ExecuteStepRequest) *gauge.Step
func GetUnescapedString ¶
func HandleParseResult ¶
func HandleParseResult(results ...*ParseResult) bool
func ParseSpecs ¶ added in v0.6.2
func ParseSpecs(args []string, conceptsDictionary *gauge.ConceptDictionary, buildErrors *gauge.BuildErrors) ([]*gauge.Specification, bool)
func PopulateConceptDynamicParams ¶
Creating a copy of the lookup and populating table values
func TableFrom ¶
func TableFrom(protoTable *gauge_messages.ProtoTable) *gauge.Table
Types ¶
type ConceptParser ¶
type ConceptParser struct {
// contains filtered or unexported fields
}
func (*ConceptParser) Parse ¶
func (parser *ConceptParser) Parse(text, fileName string) ([]*gauge.Step, *ParseResult)
concept file can have multiple concept headings
func (*ConceptParser) ParseFile ¶ added in v0.1.8
func (parser *ConceptParser) ParseFile(file string) ([]*gauge.Step, *ParseResult)
type ParamResolver ¶
type ParamResolver struct { }
func (*ParamResolver) GetResolvedParams ¶
func (paramResolver *ParamResolver) GetResolvedParams(step *gauge.Step, parent *gauge.Step, dataTableLookup *gauge.ArgLookup) []*gauge_messages.Parameter
type ParseError ¶
func AddConcepts ¶
func AddConcepts(conceptFile string, conceptDictionary *gauge.ConceptDictionary) []ParseError
func (ParseError) Error ¶
func (se ParseError) Error() string
type ParseResult ¶
type ParseResult struct { ParseErrors []ParseError CriticalErrors []ParseError Warnings []*Warning Ok bool FileName string }
func CreateConceptsDictionary ¶
func CreateConceptsDictionary() (*gauge.ConceptDictionary, *ParseResult)
func CreateStepUsingLookup ¶ added in v0.3.2
func ParseConcepts ¶ added in v0.6.2
func ParseConcepts() (*gauge.ConceptDictionary, *ParseResult)
func ParseSpecFiles ¶
func ParseSpecFiles(specFiles []string, conceptDictionary *gauge.ConceptDictionary, buildErrors *gauge.BuildErrors) ([]*gauge.Specification, []*ParseResult)
TODO: Use single channel instead of one for spec and another for result, so that mapping is consistent
func (*ParseResult) Errors ¶ added in v0.5.0
func (result *ParseResult) Errors() []string
type SpecParser ¶
type SpecParser struct {
// contains filtered or unexported fields
}
func (*SpecParser) CreateSpecification ¶
func (parser *SpecParser) CreateSpecification(tokens []*Token, conceptDictionary *gauge.ConceptDictionary, specFile string) (*gauge.Specification, *ParseResult)
func (*SpecParser) GenerateTokens ¶
func (parser *SpecParser) GenerateTokens(specText, fileName string) ([]*Token, []ParseError)
func (*SpecParser) Parse ¶
func (parser *SpecParser) Parse(specText string, conceptDictionary *gauge.ConceptDictionary, specFile string) (*gauge.Specification, *ParseResult)
Click to show internal directories.
Click to hide internal directories.