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.
lib/*_main.dart
file is a Flutter app instrumenting a test case.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 forcreateExternalUiFrameRateIntegrationTest
.The actual tests are run by task runners:
[^1]: Only iOS and Android. [^2]: Unfortunately documentation is quite limited. See #142021.