Albertus Angga Raharja b31ca1aaca
Add more structure to errors (continuation of #34684) (#42640)
* Add structured errors in Animations, TabView, ChangeNotifier

* Add structured error on MaterialPageRoute, BoxBorder, DecorationImagePainter, TextSpan

* Add structured errors in Debug

* Fix test errors

* Add structured errors in Scaffold and Stepper

* Add structured errors in part of Rendering Layer

* Fix failing test due to FloatingPoint precision

* Fix failing tests due to precision error and not using final

* Fix failing test due to floating precision error with RegEx instead

* Add structured error in CustomLayout and increase test coverage

* Add structured error & its test in ListBody

* Add structured error in ProxyBox and increase test coverage

* Add structured error message in Viewport

* Fix styles and add more assertions on ErrorHint and DiagnosticProperty

* Add structured error in scheduler/binding and scheduler/ticker

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>

* Add structured error in AssetBundle and TextInput

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>

* Add structured errors in several widgets #1

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>

* Remove unused import

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>

* Add assertions on hint messages

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>

* Fix catch spacing

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>

* Add structured error in several widgets part 2 and increase code coverage

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>

* Add structured error in flutter_test/widget_tester

* Fix floating precision accuracy by using RegExp

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>

* Remove todo to add tests in Scaffold showBottomSheet

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>

* Fix reviews by indenting lines and fixing the assertion orders

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>

* Fix failing tests due to renaming class

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>

* Try skipping the NetworkBundleTest

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>

* Remove leading space in material/debug error hint

Signed-off-by: Albertus Angga Raharja <albertusangga@google.com>
2019-10-28 11:00:49 -07:00

194 lines
6.5 KiB
Dart

// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/foundation.dart';
import 'package:flutter/rendering.dart';
import 'package:vector_math/vector_math_64.dart';
import '../flutter_test_alternative.dart';
import 'mock_canvas.dart';
import 'rendering_tester.dart';
void main() {
test('Describe transform control test', () {
final Matrix4 identity = Matrix4.identity();
final List<String> description = debugDescribeTransform(identity);
expect(description, <String>[
'[0] 1.0,0.0,0.0,0.0',
'[1] 0.0,1.0,0.0,0.0',
'[2] 0.0,0.0,1.0,0.0',
'[3] 0.0,0.0,0.0,1.0',
]);
});
test('transform property test', () {
final Matrix4 transform = Matrix4.diagonal3(Vector3.all(2.0));
final TransformProperty simple = TransformProperty(
'transform',
transform,
);
expect(simple.name, equals('transform'));
expect(simple.value, same(transform));
expect(
simple.toString(parentConfiguration: sparseTextConfiguration),
equals(
'transform:\n'
' [0] 2.0,0.0,0.0,0.0\n'
' [1] 0.0,2.0,0.0,0.0\n'
' [2] 0.0,0.0,2.0,0.0\n'
' [3] 0.0,0.0,0.0,1.0',
),
);
expect(
simple.toString(parentConfiguration: singleLineTextConfiguration),
equals('transform: [2.0,0.0,0.0,0.0; 0.0,2.0,0.0,0.0; 0.0,0.0,2.0,0.0; 0.0,0.0,0.0,1.0]'),
);
final TransformProperty nullProperty = TransformProperty(
'transform',
null,
);
expect(nullProperty.name, equals('transform'));
expect(nullProperty.value, isNull);
expect(nullProperty.toString(), equals('transform: null'));
final TransformProperty hideNull = TransformProperty(
'transform',
null,
defaultValue: null,
);
expect(hideNull.value, isNull);
expect(hideNull.toString(), equals('transform: null'));
});
test('debugPaintPadding', () {
expect((Canvas canvas) {
debugPaintPadding(canvas, const Rect.fromLTRB(10.0, 10.0, 20.0, 20.0), null);
}, paints..rect(color: const Color(0x90909090)));
expect((Canvas canvas) {
debugPaintPadding(canvas, const Rect.fromLTRB(10.0, 10.0, 20.0, 20.0), const Rect.fromLTRB(11.0, 11.0, 19.0, 19.0));
}, paints..path(color: const Color(0x900090FF))..path(color: const Color(0xFF0090FF)));
expect((Canvas canvas) {
debugPaintPadding(canvas, const Rect.fromLTRB(10.0, 10.0, 20.0, 20.0), const Rect.fromLTRB(15.0, 15.0, 15.0, 15.0));
}, paints..rect(rect: const Rect.fromLTRB(10.0, 10.0, 20.0, 20.0), color: const Color(0x90909090)));
});
test('debugPaintPadding from render objects', () {
debugPaintSizeEnabled = true;
RenderSliver s;
RenderBox b;
final RenderViewport root = RenderViewport(
crossAxisDirection: AxisDirection.right,
offset: ViewportOffset.zero(),
children: <RenderSliver>[
s = RenderSliverPadding(
padding: const EdgeInsets.all(10.0),
child: RenderSliverToBoxAdapter(
child: b = RenderPadding(
padding: const EdgeInsets.all(10.0),
),
),
),
],
);
layout(root);
expect(b.debugPaint, paints..rect(color: const Color(0xFF00FFFF))..rect(color: const Color(0x90909090)));
expect(b.debugPaint, isNot(paints..path()));
expect(s.debugPaint, paints..circle(hasMaskFilter: true)..line(hasMaskFilter: true)..path(hasMaskFilter: true)..path(hasMaskFilter: true)
..path(color: const Color(0x900090FF))..path(color: const Color(0xFF0090FF)));
expect(s.debugPaint, isNot(paints..rect()));
debugPaintSizeEnabled = false;
});
test('debugPaintPadding from render objects', () {
debugPaintSizeEnabled = true;
RenderSliver s;
final RenderBox b = RenderPadding(
padding: const EdgeInsets.all(10.0),
child: RenderViewport(
crossAxisDirection: AxisDirection.right,
offset: ViewportOffset.zero(),
children: <RenderSliver>[
s = RenderSliverPadding(
padding: const EdgeInsets.all(10.0),
),
],
),
);
layout(b);
expect(s.debugPaint, paints..rect(color: const Color(0x90909090)));
expect(s.debugPaint, isNot(paints..circle(hasMaskFilter: true)..line(hasMaskFilter: true)..path(hasMaskFilter: true)..path(hasMaskFilter: true)
..path(color: const Color(0x900090FF))..path(color: const Color(0xFF0090FF))));
expect(b.debugPaint, paints..rect(color: const Color(0xFF00FFFF))..path(color: const Color(0x900090FF))..path(color: const Color(0xFF0090FF)));
expect(b.debugPaint, isNot(paints..rect(color: const Color(0x90909090))));
debugPaintSizeEnabled = false;
});
test('debugPaintPadding from render objects with inverted direction vertical', () {
debugPaintSizeEnabled = true;
RenderSliver s;
final RenderViewport root = RenderViewport(
axisDirection: AxisDirection.up,
crossAxisDirection: AxisDirection.right,
offset: ViewportOffset.zero(),
children: <RenderSliver>[
s = RenderSliverPadding(
padding: const EdgeInsets.all(10.0),
child: RenderSliverToBoxAdapter(
child: RenderPadding(
padding: const EdgeInsets.all(10.0),
),
),
),
],
);
layout(root);
dynamic error;
try {
s.debugPaint(
PaintingContext(
ContainerLayer(), const Rect.fromLTRB(0.0, 0.0, 800.0, 600.0)),
const Offset(0.0, 500),
);
} catch (e) {
error = e;
}
expect(error, isNull);
debugPaintSizeEnabled = false;
});
test('debugPaintPadding from render objects with inverted direction horizontal', () {
debugPaintSizeEnabled = true;
RenderSliver s;
final RenderViewport root = RenderViewport(
axisDirection: AxisDirection.left,
crossAxisDirection: AxisDirection.down,
offset: ViewportOffset.zero(),
children: <RenderSliver>[
s = RenderSliverPadding(
padding: const EdgeInsets.all(10.0),
child: RenderSliverToBoxAdapter(
child: RenderPadding(
padding: const EdgeInsets.all(10.0),
),
),
),
],
);
layout(root);
dynamic error;
try {
s.debugPaint(
PaintingContext(
ContainerLayer(), const Rect.fromLTRB(0.0, 0.0, 800.0, 600.0)),
const Offset(0.0, 500),
);
} catch (e) {
error = e;
}
expect(error, isNull);
debugPaintSizeEnabled = false;
});
}