Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Remove unnecessary null checks in flutter_test (#118865)
Browse files Browse the repository at this point in the history
  • Loading branch information
goderbauer committed Jan 20, 2023
1 parent c0ad6ad commit 8372001
Show file tree
Hide file tree
Showing 14 changed files with 10 additions and 44 deletions.
2 changes: 1 addition & 1 deletion packages/flutter_test/lib/src/accessibility.dart
Expand Up @@ -229,7 +229,7 @@ class LabeledTapTargetGuideline extends AccessibilityGuideline {
!data.hasAction(ui.SemanticsAction.tap)) {
return result;
}
if ((data.label == null || data.label.isEmpty) && (data.tooltip == null || data.tooltip.isEmpty)) {
if ((data.label.isEmpty) && (data.tooltip.isEmpty)) {
result += Evaluation.fail(
'$node: expected tappable node to have semantic label, '
'but none was found.\n',
Expand Down
1 change: 0 additions & 1 deletion packages/flutter_test/lib/src/all_elements.dart
Expand Up @@ -73,7 +73,6 @@ class _DepthFirstChildIterator implements Iterator<Element> {
}

void _fillChildren(Element element) {
assert(element != null);
// If we did not have to follow LTR order and could instead use RTL,
// we could avoid reversing this and the operation would be measurably
// faster. Unfortunately, a lot of tests depend on LTR order.
Expand Down
7 changes: 2 additions & 5 deletions packages/flutter_test/lib/src/animation_sheet.dart
Expand Up @@ -89,8 +89,7 @@ class AnimationSheetBuilder {
AnimationSheetBuilder({
required this.frameSize,
this.allLayers = false,
}) : assert(!kIsWeb), // Does not support Web. See [AnimationSheetBuilder].
assert(frameSize != null);
}) : assert(!kIsWeb);

/// The size of the child to be recorded.
///
Expand Down Expand Up @@ -150,7 +149,6 @@ class AnimationSheetBuilder {
Key? key,
bool recording = true,
}) {
assert(child != null);
return _AnimationSheetRecorder(
key: key,
size: frameSize,
Expand Down Expand Up @@ -454,8 +452,7 @@ class _CellSheet extends StatelessWidget {
super.key,
required this.cellSize,
required this.children,
}) : assert(cellSize != null),
assert(children != null && children.isNotEmpty);
}) : assert(children.isNotEmpty);

final Size cellSize;
final List<Widget> children;
Expand Down
8 changes: 1 addition & 7 deletions packages/flutter_test/lib/src/binding.dart
Expand Up @@ -772,7 +772,6 @@ abstract class TestWidgetsFlutterBinding extends BindingBase
VoidCallback invariantTester,
String description,
) {
assert(description != null);
assert(inTest);

// Set the handler only if there is currently none.
Expand Down Expand Up @@ -1194,7 +1193,6 @@ class AutomatedTestWidgetsFlutterBinding extends TestWidgetsFlutterBinding {
Future<T> Function() callback, {
Duration additionalTime = const Duration(milliseconds: 1000),
}) {
assert(additionalTime != null);
assert(() {
if (_pendingAsyncTasks == null) {
return true;
Expand Down Expand Up @@ -1335,7 +1333,6 @@ class AutomatedTestWidgetsFlutterBinding extends TestWidgetsFlutterBinding {
debugBuildingDirtyElements = true;
buildOwner!.buildScope(renderViewElement!);
if (_phase != EnginePhase.build) {
assert(renderView != null);
pipelineOwner.flushLayout();
if (_phase != EnginePhase.layout) {
pipelineOwner.flushCompositingBits();
Expand Down Expand Up @@ -1383,7 +1380,6 @@ class AutomatedTestWidgetsFlutterBinding extends TestWidgetsFlutterBinding {
)
Duration? timeout,
}) {
assert(description != null);
assert(!inTest);
assert(_currentFakeAsync == null);
assert(_clock == null);
Expand Down Expand Up @@ -1885,7 +1881,6 @@ class LiveTestWidgetsFlutterBinding extends TestWidgetsFlutterBinding {
)
Duration? timeout,
}) {
assert(description != null);
assert(!inTest);
_inTest = true;
_liveTestRenderView._setDescription(description);
Expand Down Expand Up @@ -2038,7 +2033,6 @@ class _LiveTestRenderView extends RenderView {
fontSize: 10.0,
);
void _setDescription(String value) {
assert(value != null);
if (value.isEmpty) {
_label = null;
return;
Expand Down Expand Up @@ -2081,7 +2075,7 @@ class _LiveTestRenderView extends RenderView {
.where((int pointer) => _pointers[pointer]!.decay == 0)
.toList()
.forEach(_pointers.remove);
if (dirty && onNeedPaint != null) {
if (dirty) {
scheduleMicrotask(onNeedPaint);
}
}
Expand Down
12 changes: 1 addition & 11 deletions packages/flutter_test/lib/src/controller.dart
Expand Up @@ -890,7 +890,6 @@ abstract class WidgetController {
assert(kDragSlopDefault > kTouchSlop);
return TestAsyncUtils.guard<void>(() async {
final TestGesture gesture = await startGesture(startLocation, pointer: pointer, buttons: buttons, kind: kind);
assert(gesture != null);

final double xSign = offset.dx.sign;
final double ySign = offset.dy.sign;
Expand Down Expand Up @@ -1120,7 +1119,6 @@ abstract class WidgetController {
PointerDeviceKind kind = PointerDeviceKind.touch,
int buttons = kPrimaryButton,
}) async {
assert(downLocation != null);
final TestGesture result = await createGesture(
pointer: pointer,
kind: kind,
Expand Down Expand Up @@ -1268,9 +1266,7 @@ abstract class WidgetController {
}
if (!found) {
bool outOfBounds = false;
if (binding.renderView != null && binding.renderView.size != null) {
outOfBounds = !(Offset.zero & binding.renderView.size).contains(location);
}
outOfBounds = !(Offset.zero & binding.renderView.size).contains(location);
if (hitTestWarningShouldBeFatal) {
throw FlutterError.fromParts(<DiagnosticsNode>[
ErrorSummary('Finder specifies a widget that would not receive pointer events.'),
Expand Down Expand Up @@ -1349,7 +1345,6 @@ abstract class WidgetController {
String? character,
PhysicalKeyboardKey? physicalKey
}) async {
assert(platform != null);
final bool handled = await simulateKeyDownEvent(key, platform: platform, character: character, physicalKey: physicalKey);
// Internally wrapped in async guard.
await simulateKeyUpEvent(key, platform: platform, physicalKey: physicalKey);
Expand Down Expand Up @@ -1393,7 +1388,6 @@ abstract class WidgetController {
String? character,
PhysicalKeyboardKey? physicalKey
}) async {
assert(platform != null);
// Internally wrapped in async guard.
return simulateKeyDownEvent(key, platform: platform, character: character, physicalKey: physicalKey);
}
Expand Down Expand Up @@ -1427,7 +1421,6 @@ abstract class WidgetController {
String platform = _defaultPlatform,
PhysicalKeyboardKey? physicalKey
}) async {
assert(platform != null);
// Internally wrapped in async guard.
return simulateKeyUpEvent(key, platform: platform, physicalKey: physicalKey);
}
Expand Down Expand Up @@ -1469,7 +1462,6 @@ abstract class WidgetController {
String? character,
PhysicalKeyboardKey? physicalKey
}) async {
assert(platform != null);
// Internally wrapped in async guard.
return simulateKeyRepeatEvent(key, platform: platform, character: character, physicalKey: physicalKey);
}
Expand Down Expand Up @@ -1627,7 +1619,6 @@ class LiveWidgetController extends WidgetController {
Future<int> pumpAndSettle([
Duration duration = const Duration(milliseconds: 100),
]) {
assert(duration != null);
assert(duration > Duration.zero);
return TestAsyncUtils.guard<int>(() async {
int count = 0;
Expand All @@ -1641,7 +1632,6 @@ class LiveWidgetController extends WidgetController {

@override
Future<List<Duration>> handlePointerEventRecord(List<PointerEventRecord> records) {
assert(records != null);
assert(records.isNotEmpty);
return TestAsyncUtils.guard<List<Duration>>(() async {
final List<Duration> handleTimeStampDiff = <Duration>[];
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_test/lib/src/finders.dart
Expand Up @@ -567,7 +567,7 @@ abstract class Finder {
/// Applies additional filtering against a [parent] [Finder].
abstract class ChainedFinder extends Finder {
/// Create a Finder chained against the candidates of another [Finder].
ChainedFinder(this.parent) : assert(parent != null);
ChainedFinder(this.parent);

/// Another [Finder] that will run first.
final Finder parent;
Expand Down
1 change: 0 additions & 1 deletion packages/flutter_test/lib/src/frame_timing_summarizer.dart
Expand Up @@ -22,7 +22,6 @@ class FrameTimingSummarizer {
int? newGenGCCount,
int? oldGenGCCount,
}) {
assert(data != null);
assert(data.isNotEmpty);
final List<Duration> frameBuildTime = List<Duration>.unmodifiable(
data.map<Duration>((FrameTiming datum) => datum.buildDuration),
Expand Down
5 changes: 2 additions & 3 deletions packages/flutter_test/lib/src/image.dart
Expand Up @@ -29,9 +29,8 @@ Future<ui.Image> createTestImage({
int height = 1,
bool cache = true,
}) => TestAsyncUtils.guard(() async {
assert(width != null && width > 0);
assert(height != null && height > 0);
assert(cache != null);
assert(width > 0);
assert(height > 0);

final int cacheKey = Object.hash(width, height);
if (cache && _cache.containsKey(cacheKey)) {
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_test/lib/src/matchers.dart
Expand Up @@ -1981,7 +1981,7 @@ class _CoversSameAreaAs extends Matcher {
class _ColorMatcher extends Matcher {
const _ColorMatcher({
required this.targetColor,
}) : assert(targetColor != null);
});

final Color targetColor;

Expand Down
1 change: 0 additions & 1 deletion packages/flutter_test/lib/src/stack_manipulation.dart
Expand Up @@ -26,7 +26,6 @@ int reportExpectCall(StackTrace stack, List<DiagnosticsNode> information) {
line2.firstMatch(stackLines[2]) != null &&
line3.firstMatch(stackLines[3]) != null) {
final Match expectMatch = line4.firstMatch(stackLines[4])!;
assert(expectMatch != null);
assert(expectMatch.groupCount == 2);
information.add(DiagnosticsStackTrace.singleFrame(
'This was caught by the test expectation on the following line',
Expand Down
3 changes: 0 additions & 3 deletions packages/flutter_test/lib/src/test_async_utils.dart
Expand Up @@ -187,10 +187,7 @@ class TestAsyncUtils {
return;
}
candidateScope = _scopeStack[_scopeStack.length - skipCount - 1];
assert(candidateScope != null);
assert(candidateScope.zone != null);
} while (candidateScope.zone != zone);
assert(scope != null);
final List<DiagnosticsNode> information = <DiagnosticsNode>[
ErrorSummary('Guarded function conflict.'),
ErrorHint('You must use "await" with all Future-returning test APIs.'),
Expand Down
Expand Up @@ -46,7 +46,7 @@ class TestDefaultBinaryMessenger extends BinaryMessenger {
/// Creates a [TestDefaultBinaryMessenger] instance.
///
/// The [delegate] instance must not be null.
TestDefaultBinaryMessenger(this.delegate): assert(delegate != null);
TestDefaultBinaryMessenger(this.delegate);

/// The delegate [BinaryMessenger].
final BinaryMessenger delegate;
Expand Down
1 change: 0 additions & 1 deletion packages/flutter_test/lib/src/test_exception_reporter.dart
Expand Up @@ -24,7 +24,6 @@ typedef TestExceptionReporter = void Function(FlutterErrorDetails details, Strin
TestExceptionReporter get reportTestException => _reportTestException;
TestExceptionReporter _reportTestException = _defaultTestExceptionReporter;
set reportTestException(TestExceptionReporter handler) {
assert(handler != null);
_reportTestException = handler;
}

Expand Down
7 changes: 0 additions & 7 deletions packages/flutter_test/lib/src/widget_tester.dart
Expand Up @@ -138,7 +138,6 @@ void testWidgets(
TestVariant<Object?> variant = const DefaultTestVariant(),
dynamic tags,
}) {
assert(variant != null);
assert(variant.values.isNotEmpty, 'There must be at least one value to test in the testing variant.');
final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized();
final WidgetTester tester = WidgetTester._(binding);
Expand Down Expand Up @@ -573,7 +572,6 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker

@override
Future<List<Duration>> handlePointerEventRecord(Iterable<PointerEventRecord> records) {
assert(records != null);
assert(records.isNotEmpty);
return TestAsyncUtils.guard<List<Duration>>(() async {
final List<Duration> handleTimeStampDiff = <Duration>[];
Expand Down Expand Up @@ -664,9 +662,7 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
EnginePhase phase = EnginePhase.sendSemanticsUpdate,
Duration timeout = const Duration(minutes: 10),
]) {
assert(duration != null);
assert(duration > Duration.zero);
assert(timeout != null);
assert(timeout > Duration.zero);
assert(() {
final WidgetsBinding binding = this.binding;
Expand Down Expand Up @@ -705,7 +701,6 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
Duration maxDuration, [
Duration interval = const Duration(milliseconds: 16, microseconds: 683),
]) {
assert(maxDuration != null);
// The interval following the last frame doesn't have to be within the fullDuration.
Duration elapsed = Duration.zero;
return TestAsyncUtils.guard<void>(() async {
Expand Down Expand Up @@ -822,7 +817,6 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker

@override
HitTestResult hitTestOnBinding(Offset location) {
assert(location != null);
location = binding.localToGlobal(location);
return super.hitTestOnBinding(location);
}
Expand Down Expand Up @@ -1003,7 +997,6 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
/// error message. It should be an adverbial phrase describing the current
/// situation, such as "at the end of the test".
void verifyTickersWereDisposed([ String when = 'when none should have been' ]) {
assert(when != null);
if (_tickers != null) {
for (final Ticker ticker in _tickers!) {
if (ticker.isActive) {
Expand Down

0 comments on commit 8372001

Please sign in to comment.