-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
156 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,153 +1,153 @@ | ||
package formatters | ||
|
||
import ( | ||
"errors" | ||
"testing" | ||
|
||
"github.com/cucumber/godog/formatters" | ||
messages "github.com/cucumber/messages/go/v21" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
var ( | ||
mock = DummyFormatter{} | ||
|
||
document = &messages.GherkinDocument{} | ||
str = "theString" | ||
byt = []byte("bytes") | ||
pickle = &messages.Pickle{} | ||
step = &messages.PickleStep{} | ||
definition = &formatters.StepDefinition{} | ||
err = errors.New("expected") | ||
) | ||
|
||
// TestRepeater tests the delegation of the repeater functions. | ||
func TestRepeater(t *testing.T) { | ||
|
||
mock.tt = t | ||
f := make(repeater, 0) | ||
f = append(f, &mock) | ||
|
||
f.Feature(document, str, byt) | ||
f.TestRunStarted() | ||
f.Pickle(pickle) | ||
f.Defined(pickle, step, definition) | ||
f.Passed(pickle, step, definition) | ||
f.Skipped(pickle, step, definition) | ||
f.Undefined(pickle, step, definition) | ||
f.Failed(pickle, step, definition, err) | ||
f.Pending(pickle, step, definition) | ||
f.Ambiguous(pickle, step, definition, err) | ||
|
||
assert.Equal(t, 1, mock.CountFeature) | ||
assert.Equal(t, 1, mock.CountTestRunStarted, 1) | ||
assert.Equal(t, 1, mock.CountPickle, 1) | ||
assert.Equal(t, 1, mock.CountDefined, 1) | ||
assert.Equal(t, 1, mock.CountPassed, 1) | ||
assert.Equal(t, 1, mock.CountSkipped, 1) | ||
assert.Equal(t, 1, mock.CountUndefined, 1) | ||
assert.Equal(t, 1, mock.CountFailed, 1) | ||
assert.Equal(t, 1, mock.CountPending, 1) | ||
assert.Equal(t, 1, mock.CountAmbiguous, 1) | ||
|
||
} | ||
|
||
type DummyFormatter struct { | ||
*Base | ||
|
||
tt *testing.T | ||
CountFeature int | ||
CountTestRunStarted int | ||
CountPickle int | ||
CountDefined int | ||
CountPassed int | ||
CountSkipped int | ||
CountUndefined int | ||
CountFailed int | ||
CountPending int | ||
CountAmbiguous int | ||
} | ||
|
||
// SetStorage assigns gherkin data storage. | ||
// func (f *DummyFormatter) SetStorage(st *storage.Storage) { | ||
// } | ||
|
||
// TestRunStarted is triggered on test start. | ||
func (f *DummyFormatter) TestRunStarted() { | ||
f.CountTestRunStarted++ | ||
} | ||
|
||
// Feature receives gherkin document. | ||
func (f *DummyFormatter) Feature(d *messages.GherkinDocument, s string, b []byte) { | ||
assert.Equal(f.tt, document, d) | ||
assert.Equal(f.tt, str, s) | ||
assert.Equal(f.tt, byt, b) | ||
f.CountFeature++ | ||
} | ||
|
||
// Pickle receives scenario. | ||
func (f *DummyFormatter) Pickle(p *messages.Pickle) { | ||
assert.Equal(f.tt, pickle, p) | ||
f.CountPickle++ | ||
} | ||
|
||
// Defined receives step definition. | ||
func (f *DummyFormatter) Defined(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
f.CountDefined++ | ||
} | ||
|
||
// Passed captures passed step. | ||
func (f *DummyFormatter) Passed(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
f.CountPassed++ | ||
} | ||
|
||
// Skipped captures skipped step. | ||
func (f *DummyFormatter) Skipped(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
|
||
f.CountSkipped++ | ||
} | ||
|
||
// Undefined captures undefined step. | ||
func (f *DummyFormatter) Undefined(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
|
||
f.CountUndefined++ | ||
} | ||
|
||
// Failed captures failed step. | ||
func (f *DummyFormatter) Failed(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition, e error) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
assert.Equal(f.tt, err, e) | ||
|
||
f.CountFailed++ | ||
} | ||
|
||
// Pending captures pending step. | ||
func (f *DummyFormatter) Pending(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
|
||
f.CountPending++ | ||
} | ||
|
||
// Ambiguous captures ambiguous step. | ||
func (f *DummyFormatter) Ambiguous(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition, e error) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
f.CountAmbiguous++ | ||
} | ||
package formatters | ||
|
||
import ( | ||
"errors" | ||
"testing" | ||
|
||
"github.com/cucumber/godog/formatters" | ||
messages "github.com/cucumber/messages/go/v21" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
var ( | ||
mock = DummyFormatter{} | ||
|
||
document = &messages.GherkinDocument{} | ||
str = "theString" | ||
byt = []byte("bytes") | ||
pickle = &messages.Pickle{} | ||
step = &messages.PickleStep{} | ||
definition = &formatters.StepDefinition{} | ||
err = errors.New("expected") | ||
) | ||
|
||
// TestRepeater tests the delegation of the repeater functions. | ||
func TestRepeater(t *testing.T) { | ||
|
||
mock.tt = t | ||
f := make(repeater, 0) | ||
f = append(f, &mock) | ||
|
||
f.Feature(document, str, byt) | ||
f.TestRunStarted() | ||
f.Pickle(pickle) | ||
f.Defined(pickle, step, definition) | ||
f.Passed(pickle, step, definition) | ||
f.Skipped(pickle, step, definition) | ||
f.Undefined(pickle, step, definition) | ||
f.Failed(pickle, step, definition, err) | ||
f.Pending(pickle, step, definition) | ||
f.Ambiguous(pickle, step, definition, err) | ||
|
||
assert.Equal(t, 1, mock.CountFeature) | ||
assert.Equal(t, 1, mock.CountTestRunStarted, 1) | ||
assert.Equal(t, 1, mock.CountPickle, 1) | ||
assert.Equal(t, 1, mock.CountDefined, 1) | ||
assert.Equal(t, 1, mock.CountPassed, 1) | ||
assert.Equal(t, 1, mock.CountSkipped, 1) | ||
assert.Equal(t, 1, mock.CountUndefined, 1) | ||
assert.Equal(t, 1, mock.CountFailed, 1) | ||
assert.Equal(t, 1, mock.CountPending, 1) | ||
assert.Equal(t, 1, mock.CountAmbiguous, 1) | ||
|
||
} | ||
|
||
type DummyFormatter struct { | ||
*Base | ||
|
||
tt *testing.T | ||
CountFeature int | ||
CountTestRunStarted int | ||
CountPickle int | ||
CountDefined int | ||
CountPassed int | ||
CountSkipped int | ||
CountUndefined int | ||
CountFailed int | ||
CountPending int | ||
CountAmbiguous int | ||
} | ||
|
||
// SetStorage assigns gherkin data storage. | ||
// func (f *DummyFormatter) SetStorage(st *storage.Storage) { | ||
// } | ||
|
||
// TestRunStarted is triggered on test start. | ||
func (f *DummyFormatter) TestRunStarted() { | ||
f.CountTestRunStarted++ | ||
} | ||
|
||
// Feature receives gherkin document. | ||
func (f *DummyFormatter) Feature(d *messages.GherkinDocument, s string, b []byte) { | ||
assert.Equal(f.tt, document, d) | ||
assert.Equal(f.tt, str, s) | ||
assert.Equal(f.tt, byt, b) | ||
f.CountFeature++ | ||
} | ||
|
||
// Pickle receives scenario. | ||
func (f *DummyFormatter) Pickle(p *messages.Pickle) { | ||
assert.Equal(f.tt, pickle, p) | ||
f.CountPickle++ | ||
} | ||
|
||
// Defined receives step definition. | ||
func (f *DummyFormatter) Defined(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
f.CountDefined++ | ||
} | ||
|
||
// Passed captures passed step. | ||
func (f *DummyFormatter) Passed(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
f.CountPassed++ | ||
} | ||
|
||
// Skipped captures skipped step. | ||
func (f *DummyFormatter) Skipped(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
|
||
f.CountSkipped++ | ||
} | ||
|
||
// Undefined captures undefined step. | ||
func (f *DummyFormatter) Undefined(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
|
||
f.CountUndefined++ | ||
} | ||
|
||
// Failed captures failed step. | ||
func (f *DummyFormatter) Failed(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition, e error) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
assert.Equal(f.tt, err, e) | ||
|
||
f.CountFailed++ | ||
} | ||
|
||
// Pending captures pending step. | ||
func (f *DummyFormatter) Pending(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
|
||
f.CountPending++ | ||
} | ||
|
||
// Ambiguous captures ambiguous step. | ||
func (f *DummyFormatter) Ambiguous(p *messages.Pickle, s *messages.PickleStep, d *formatters.StepDefinition, e error) { | ||
assert.Equal(f.tt, pickle, p) | ||
assert.Equal(f.tt, s, step) | ||
assert.Equal(f.tt, d, definition) | ||
f.CountAmbiguous++ | ||
} |