tree: faded2ae739572984ff2655369bb526a8b681dae [path history] [tgz]
  1. android/
  2. ios/
  3. lib/
  4. test_driver/
  5. pubspec.yaml
  6. README.md
dev/integration_tests/external_textures/README.md

external_textures

Tests external texture rendering between a native[^1] platform and Flutter.

Part of Flutter's API for plugins includes passing external textures, or textures created outside of Flutter, to Flutter, typically using the Texture widget. This is useful for plugins that render video, or for plugins that interact with the camera.

For example:

Because external textures are created outside of Flutter, there is often subtle translation that needs to happen between the native platform and Flutter, which is hard to observe. These integration tests are designed to help catch these subtle translation issues.

How it works

  • Each lib/*_main.dart file is a Flutter app instrumenting a test case.
  • There is a corresponding test_driver/*_test.dart that runs assertions.

To run the test cases locally, use flutter drive[^2]:

flutter drive lib/frame_rate_main.dart --driver test_driver/frame_rate_test.dart

[!TIP] On CI, the test cases are run within our device lab.

See devicelab/lib/tasks/integration_tests.dart and search for createExternalUiFrameRateIntegrationTest.

The actual tests are run by task runners:

[^1]: Only iOS and Android. [^2]: Unfortunately documentation is quite limited. See #142021.