gherkin_integration_test 0.0.4+4 copy "gherkin_integration_test: ^0.0.4+4" to clipboard
gherkin_integration_test: ^0.0.4+4 copied to clipboard

A gherkin integration test framework based on flutter's official integration_test package.

🦾 Gherkin Integration Test #


This package is based on the Behaviour Driven Development (BDD) language called Gherkin. This language enables us as developers to design and execute tests in an intuitive and readable way. For people who have a little less experience with development, these tests are also easy to understand because the syntax is very similar to English.

DALL·E 2022-09-27 21.08.11 - a gherkin monster super hero with wings and a computer flying through space, fantasy style.png

Most tests look something like this:

Feature: This feature shows an example

    Scenario: It shows a good example
      Given we start without an example
      When an example gets created
      Then the example should explode

In this same way we have built our framework, we have the following classes at our disposal:

  • IntegrationTest
  • IntegrationFeature
  • IntegrationScenario
  • IntegrationExample
  • IntegrationStep (abstract)
    • Given
    • When
    • Then
    • And
    • But

From top to bottom, each class may contain a number of the class below it (one to many). A IntegrationTest may contain multiple IntegrationFeature which in turn may contain multiple IntegrationScenario which in turn may contain multiple IntegrationExample and IntegrationStep.

🛠 Implementation #


Start by creating a test class that inherits the IntegrationTest class. Then create a constructor that takes no arguments but does call the superclass with a description and (for now) an empty list of features.

class DummyIntegrationTest extends IntegrationTest {
  DummyIntegrationTest()
      : super(
          description: 'All integration tests regarding dummies',
          features: [],
        );
}

📲 Features #


In the features list we can now define our first IntegrationFeature. We give it a name and (for now) an empty list of scenarios.

class DummyIntegrationTest extends IntegrationTest {
  DummyIntegrationTest()
      : super(
          description: 'All integration tests regarding dummies',
          features: [
            IntegrationFeature(
              description: 'Saving of dummies',
              scenarios: [],
            ),
          ],
        );
}

🤝 Scenarios #


Now it's time to think about what kind of scenarios might occur in your test. For this example we will use ’a successful save’ and ‘an unsuccessful save’ as possible scenarios.

We use the IntegrationScenario class to create both scenarios and place them in the empty list. We also pass in a description and this time an empty list of steps.

class DummyIntegrationTest extends IntegrationTest {
  DummyIntegrationTest()
      : super(
          description: 'All integration tests regarding dummies',
          features: [
            IntegrationFeature(
              description: 'Saving of dummies',
              scenarios: [
                IntegrationScenario(
                  description: 'Saving a good dummy should succeed',
                  steps: [],
                ),
                IntegrationScenario(
                  description: 'Saving a bad dummy should fail',
                  steps: [],
                ),
              ],
            ),
          ],
        );
}

🐾 Steps #


Now comes the good part. For each scenario, we may define steps. We have access to GivenWhenThenAnd and But. All of these steps do basically the same thing in the background, but by using them correctly, you learn to plan, work out and execute your tests in an intuitive and proper BDD way.

Each step requires a description and a callback. The callback for the IntegrationTests looks as follows and grants access to the following parameters:

/// Callback used to provide the necessary tools to execute an [IntegrationStep].
typedef IntegrationStepCallback<Example extends IntegrationExample?> = FutureOr<void> Function(
  WidgetTester tester,
  IntegrationLog log,
  IntegrationBox box,
  IntegrationMocks mocks, [
  Example? example,
  IntegrationTestWidgetsFlutterBinding? binding,
]);
  • WidgetTester tester

    • Class that programmatically interacts with widgets and the test environment (directly from Flutter’s integration_test **package).
  • Log log

    • Class that allows for subtle logging of steps information in your tests.
  • IntegrationBox box

    • This box is basically a map that may be used to write and read values that need to persist throughout a series of steps inside a IntegrationScenario. Any value that you box.write(key, value) will be retrievable in all IntegrationStep's after that or until removed or until all steps have been executed. Reading a value with box.read(key) will automatically cast it to the Type that you specify. So reading an int like this → final int value = box.read(myIntValue) would automatically cast it to an int (🆒).

      Using the box may look like this:

      [
        Given(
          'This is an example for the IntegrationBox',
          (tester, log, box, mocks, [example, binding]) {
            box.write('isExample', true);
          },
        ),
        When(
          'we write some values',
          (tester, log, box, mocks, [example, binding]) {
            box.write('exampleValue', 1);
            box.write('mood', 'happy');
          },
        ),
        Then(
          'all the values should be accessible up until the last step.',
          (tester, log, box, mocks, [example, binding]) {
            final bool isExample = box.read('isExample');
            final int exampleValue = box.read('exampleValue');
            final bool mood = box.read('mood');
            expect(isExample, true);
            expect(exampleValue, 1);
            expect(mood, 'happy');
          },
        ),
      ]
      
  • IntegrationMocks mocks

    • A box that exists and persists throughout your entire IntegrationTestIntegrationFeature and/or IntegrationScenario. You may have optionally use this box to store mocks that you need so you may later retrieve them to stub methods to your liking.
  • IntegrationExample? example

    • Optional ‘Scenario Outline’ examples that may have been specified inside a IntegrationScenario like this:

      IntegrationScenario(
        description: 'Saving a good dummy should succeed',
        examples: [
          const IntegrationExample(values: [1]),
          const IntegrationExample(values: [5]),
          const IntegrationExample(values: [10]),
        ],
      )
      

      This IntegrationScenario will now run 3 times, once for each IntegrationExample. You may access the example in the following way:

      Given(
          'I access the example value',
          (tester, log, box, mocks, [example, binding]) {
            final int exampleValue = example!.firstValue();
          },
        )
      

🐾 Steps Implementation #

Combining all that information will allow us to finalise and set up the success scenario like this:

class DummyIntegrationTest extends IntegrationTest {
  DummyIntegrationTest()
      : super(
          description: 'All integration tests regarding dummies',
          features: [
            IntegrationFeature(
              description: 'Saving of dummies',
              setUpOnce: (mocks) {
                final dummyMock = DummyMock();
                mocks.write(dummyMock);
              },
              scenarios: [
                IntegrationScenario(
                  description: 'Saving a good dummy should succeed',
                  steps: [
                    Given(
                      'The dummy service is initialised',
                      (tester, log, box, mocks, [example, binding]) {
                        mocks.read(DummyMock).stubWhatever();
                        // TODO(you): Initialise service
                      },
                    ),
                    When(
                      'We call the dummy service with dummy info',
                      (tester, log, box, mocks, [example, binding]) {
                        // TODO(you): Call dummy service with dummy info
                      },
                    ),
                    Then(
                      'It should succeed',
                      (tester, log, box, mocks, [example, binding]) {
                        // TODO(you): Verify success
                      },
                    ),
                  ],
                ),
                IntegrationScenario(
                  description: 'Saving a bad dummy should fail',
                  steps: [],
                ),
              ],
            ),
          ],
        );
}

🏆 Bonus IntegrationSteps #


Because not everybody wants to write tests the same way we also created these combined step classes to allow for creating the same kind of integration tests, but with less steps.

  • GivenWhenThen
    • For when you can’t be bothered to create and use the separate step functionality regarding the ‘Given’, ‘When’ and ‘Then’ steps. This allows you to write the entire test in one step.
  • WhenThen
    • For when you can’t be bothered to create and use the separate step functionality regarding the ‘When’ and ‘Then’ steps. This allows you to combine both steps into one.
  • Should
    • For when you feel like using steps is not your style. This step defines the entire test in one ‘Should’ sentence.

⚡️ Almost there! #

While this may perfectly fit our testing needs there are a couple functionalities at our disposal that give our tests extra power.

🏗 setUpOnce, setUpEach, tearDownOnce, tearDownEach #


Each class has access to these methods and will run them in sort of the same way:

  • setUpEach - will run at the START of EACH IntegrationScenario under the chosen class (may be specified in IntegrationTestIntegrationFeature or IntegrationScenario itself).
  • tearDownEach - will run at the END of EACH IntegrationScenario under the chosen class (may be specified in IntegrationTestIntegrationFeature or IntegrationScenario itself).
  • setUpOnce - will run ONCE at the START of chosen class (may be specified in IntegrationTestIntegrationFeature or IntegrationScenario itself).
  • tearDownOnce - will run ONCE at the END of chosen class (may be specified in IntegrationTestIntegrationFeature or IntegrationScenario itself).

Using the methods may look a bit like this:

class DummyIntegrationTest extends IntegrationTest {
  DummyIntegrationTest()
      : super(
          description: 'All integration tests regarding dummies',
          features: [
            IntegrationFeature(
              description: 'Saving of dummies',
              setUpOnce: (mocks) {
                final dummyMock = DummyMock();
                mocks.write(dummyMock);
              },
              setUpEach: (mocks) async {
                AppSetup.reset();
              },
              tearDownOnce: (mocks) async {
                // Do something
              },
              scenarios: [
                IntegrationScenario(
                  description: 'Saving a good dummy should succeed',
                  steps: [
                    Given(
                      'The dummy service is initialised',
                      (tester, log, box, mocks, [example, binding]) {
                        mocks.read(DummyMock).stubWhatever();
                        // TODO(you): Initialise service
                      },
                    ),
                    When(
                      'We call the dummy service with dummy info',
                      (tester, log, box, mocks, [example, binding]) {
                        // TODO(you): Call dummy service with dummy info
                      },
                    ),
                    Then(
                      'It should succeed',
                      (tester, log, box, mocks, [example, binding]) {
                        // TODO(you): Verify success
                      },
                    ),
                  ],
                ),
                IntegrationScenario(
                  description: 'Saving a bad dummy should fail',
                  steps: [],
                ),
              ],
            ),
          ],
        );
}

Now to run these tests all you have to do is add the DummyIntegrationTests to your main test function and hit run. In this example we would like to use the IntegrationTestWidgetsFlutterBinding in our tests so let’s add that to the constructor as well.

// Adding it to the constructor
DummyIntegrationTest({required IntegrationTestWidgetsFlutterBinding binding})
      : super(
          description: 'All tests regarding dummies',
          binding: binding,

void main() {
// Getting the binding by calling this function
  final binding = IntegrationTestWidgetsFlutterBinding.ensureInitialized()
      as IntegrationTestWidgetsFlutterBinding;
// Running the test
  DummyIntegrationTests(binding: binding).test();
}

3
likes
0
pub points
39%
popularity

Publisher

verified publishercodaveto.com

A gherkin integration test framework based on flutter's official integration_test package.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_test, integration_test

More

Packages that depend on gherkin_integration_test