-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathexample_test.go
154 lines (132 loc) · 4.03 KB
/
example_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package gherkin_test
import (
"fmt"
"github.com/muhqu/go-gherkin"
)
func ExampleParseGherkinFeature() {
feature, _ := gherkin.ParseGherkinFeature(`
@wip
Feature: Hello World
The world is a beautiful place
So let people be nice to each other
@nice @people
Scenario: Nice people
Given a nice person called "Bob"
And a nice person called "Lisa"
When "Bob" says to "Lisa": "Hello!"
Then "Lisa" should reply to "Bob": "Hello!"
`)
fmt.Printf("feature: %#v %#v\n", feature.Title(), feature.Tags())
fmt.Printf("no. scenarios: %#v\n", len(feature.Scenarios()))
for i, scenario := range feature.Scenarios() {
fmt.Printf("scenario %d: %#v %#v\n", i+1, scenario.Title(), scenario.Tags())
for i, step := range scenario.Steps() {
fmt.Printf(" step %d: %#v %#v\n", i+1, step.StepType(), step.Text())
}
}
// Output:
// feature: "Hello World" []string{"wip"}
// no. scenarios: 1
// scenario 1: "Nice people" []string{"nice", "people"}
// step 1: "Given" "a nice person called \"Bob\""
// step 2: "And" "a nice person called \"Lisa\""
// step 3: "When" "\"Bob\" says to \"Lisa\": \"Hello!\""
// step 4: "Then" "\"Lisa\" should reply to \"Bob\": \"Hello!\""
}
func ExampleNewGherkinParser() {
gp := gherkin.NewGherkinParser(`
@wip
Feature: Hello World
The world is a beautiful place
So let people be nice to each other
@nice @people
Scenario: Nice people
Given a nice person called "Bob"
And a nice person called "Lisa"
When "Bob" says to "Lisa": "Hello!"
Then "Lisa" should reply to "Bob": "Hello!"
`)
gp.WithEventProcessor(gherkin.EventProcessorFn(func(e gherkin.GherkinEvent) {
fmt.Println(e)
}))
gp.Init()
err := gp.Parse()
if err != nil {
panic(err)
}
gp.Execute()
// Output:
//
// FeatureEvent("Hello World","The world is a beautiful place\nSo let people be nice to each other",["wip"])
// ScenarioEvent("Nice people","",["nice" "people"])
// StepEvent("Given","a nice person called \"Bob\"")
// StepEndEvent()
// StepEvent("And","a nice person called \"Lisa\"")
// StepEndEvent()
// StepEvent("When","\"Bob\" says to \"Lisa\": \"Hello!\"")
// StepEndEvent()
// StepEvent("Then","\"Lisa\" should reply to \"Bob\": \"Hello!\"")
// StepEndEvent()
// ScenarioEndEvent()
// FeatureEndEvent()
//
}
func ExampleNewGherkinDOMParser() {
gp := gherkin.NewGherkinDOMParser(`
@wip
Feature: Hello World
The world is a beautiful place
So let people be nice to each other
@nice @people
Scenario: Nice people
Given a nice person called "Bob"
And a nice person called "Lisa"
When "Bob" says to "Lisa": "Hello!"
Then "Lisa" should reply to "Bob": "Hello!"
`)
feature := gp.Feature()
fmt.Printf("feature: %#v %#v\n", feature.Title(), feature.Tags())
fmt.Printf("no. scenarios: %#v\n", len(feature.Scenarios()))
scenario1 := feature.Scenarios()[0]
fmt.Printf("scenario 1: %#v %#v\n", scenario1.Title(), scenario1.Tags())
// Output:
// feature: "Hello World" []string{"wip"}
// no. scenarios: 1
// scenario 1: "Nice people" []string{"nice", "people"}
}
func ExampleLogFn() {
gp := gherkin.NewGherkinParser(`
@wip
Feature: Hello World
The world is a beautiful place
So let people be nice to each other
@nice @people
Scenario: Nice people
Given a nice person called "Bob"
And a nice person called "Lisa"
When "Bob" says to "Lisa": "Hello!"
Then "Lisa" should reply to "Bob": "Hello!"
`)
gp.WithLogFn(func(msg string, args ...interface{}) {
fmt.Printf(msg+"\n", args...)
})
gp.Init()
err := gp.Parse()
if err != nil {
panic(err)
}
gp.Execute()
// Output:
// BeginFeature: "Hello World": "The world is a beautiful place\nSo let people be nice to each other" tags:[wip]
// BeginScenario: "Nice people": "" tags:[nice people]
// BeginStep: "Given": "a nice person called \"Bob\""
// EndStep
// BeginStep: "And": "a nice person called \"Lisa\""
// EndStep
// BeginStep: "When": "\"Bob\" says to \"Lisa\": \"Hello!\""
// EndStep
// BeginStep: "Then": "\"Lisa\" should reply to \"Bob\": \"Hello!\""
// EndStep
// EndScenario
// EndFeature
}