Unverified Commit 641f4e24 authored by Sai Sandeep Mutyala's avatar Sai Sandeep Mutyala Committed by GitHub

Allow setting of TestWidgetsFlutterBinding.pointerEventSource (#107976)

parent c05d4799
...@@ -494,8 +494,7 @@ abstract class TestWidgetsFlutterBinding extends BindingBase ...@@ -494,8 +494,7 @@ abstract class TestWidgetsFlutterBinding extends BindingBase
/// ///
/// When [handlePointerEvent] is called directly, [pointerEventSource] /// When [handlePointerEvent] is called directly, [pointerEventSource]
/// is [TestBindingEventSource.device]. /// is [TestBindingEventSource.device].
TestBindingEventSource get pointerEventSource => _pointerEventSource; TestBindingEventSource pointerEventSource = TestBindingEventSource.device;
TestBindingEventSource _pointerEventSource = TestBindingEventSource.device;
/// Dispatch an event to the targets found by a hit test on its position, /// Dispatch an event to the targets found by a hit test on its position,
/// and remember its source as [pointerEventSource]. /// and remember its source as [pointerEventSource].
...@@ -530,12 +529,12 @@ abstract class TestWidgetsFlutterBinding extends BindingBase ...@@ -530,12 +529,12 @@ abstract class TestWidgetsFlutterBinding extends BindingBase
/// to the previous value. /// to the previous value.
@protected @protected
void withPointerEventSource(TestBindingEventSource source, VoidCallback task) { void withPointerEventSource(TestBindingEventSource source, VoidCallback task) {
final TestBindingEventSource previousSource = _pointerEventSource; final TestBindingEventSource previousSource = pointerEventSource;
_pointerEventSource = source; pointerEventSource = source;
try { try {
task(); task();
} finally { } finally {
_pointerEventSource = previousSource; pointerEventSource = previousSource;
} }
} }
......
...@@ -31,6 +31,11 @@ void main() { ...@@ -31,6 +31,11 @@ void main() {
binding.defaultTestTimeout = const test_package.Timeout(Duration(minutes: 5)); binding.defaultTestTimeout = const test_package.Timeout(Duration(minutes: 5));
expect(binding.defaultTestTimeout.duration, const Duration(minutes: 5)); expect(binding.defaultTestTimeout.duration, const Duration(minutes: 5));
}); });
test('allows setting pointerEventSource to TestBindingEventSource.test', () {
binding.pointerEventSource = TestBindingEventSource.test;
expect(binding.pointerEventSource, TestBindingEventSource.test);
});
}); });
// The next three tests must run in order -- first using `test`, then `testWidgets`, then `test` again. // The next three tests must run in order -- first using `test`, then `testWidgets`, then `test` again.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment