layers_test.dart 21.1 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
import 'dart:ui';

7
import 'package:flutter/foundation.dart';
8 9 10 11 12 13 14 15
import 'package:flutter/rendering.dart';
import 'package:flutter_test/flutter_test.dart';

import 'rendering_tester.dart';

void main() {
  test('non-painted layers are detached', () {
    RenderObject boundary, inner;
16 17 18
    final RenderOpacity root = RenderOpacity(
      child: boundary = RenderRepaintBoundary(
        child: inner = RenderDecoratedBox(
19 20 21 22 23 24
          decoration: const BoxDecoration(),
        ),
      ),
    );
    layout(root, phase: EnginePhase.paint);
    expect(inner.isRepaintBoundary, isFalse);
25
    expect(inner.debugLayer, null);
26
    expect(boundary.isRepaintBoundary, isTrue);
27
    expect(boundary.debugLayer, isNotNull);
28
    expect(boundary.debugLayer!.attached, isTrue); // this time it painted...
29 30 31 32

    root.opacity = 0.0;
    pumpFrame(phase: EnginePhase.paint);
    expect(inner.isRepaintBoundary, isFalse);
33
    expect(inner.debugLayer, null);
34
    expect(boundary.isRepaintBoundary, isTrue);
35
    expect(boundary.debugLayer, isNotNull);
36
    expect(boundary.debugLayer!.attached, isFalse); // this time it did not.
37 38 39 40

    root.opacity = 0.5;
    pumpFrame(phase: EnginePhase.paint);
    expect(inner.isRepaintBoundary, isFalse);
41
    expect(inner.debugLayer, null);
42
    expect(boundary.isRepaintBoundary, isTrue);
43
    expect(boundary.debugLayer, isNotNull);
44
    expect(boundary.debugLayer!.attached, isTrue); // this time it did again!
45
  });
46

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
  test('updateSubtreeNeedsAddToScene propagates Layer.alwaysNeedsAddToScene up the tree', () {
    final ContainerLayer a = ContainerLayer();
    final ContainerLayer b = ContainerLayer();
    final ContainerLayer c = ContainerLayer();
    final _TestAlwaysNeedsAddToSceneLayer d = _TestAlwaysNeedsAddToSceneLayer();
    final ContainerLayer e = ContainerLayer();
    final ContainerLayer f = ContainerLayer();

    // Tree structure:
    //        a
    //       / \
    //      b   c
    //     / \
    // (x)d   e
    //   /
    //  f
    a.append(b);
    a.append(c);
    b.append(d);
    b.append(e);
    d.append(f);

    a.debugMarkClean();
    b.debugMarkClean();
    c.debugMarkClean();
    d.debugMarkClean();
    e.debugMarkClean();
    f.debugMarkClean();

    expect(a.debugSubtreeNeedsAddToScene, false);
    expect(b.debugSubtreeNeedsAddToScene, false);
    expect(c.debugSubtreeNeedsAddToScene, false);
    expect(d.debugSubtreeNeedsAddToScene, false);
    expect(e.debugSubtreeNeedsAddToScene, false);
    expect(f.debugSubtreeNeedsAddToScene, false);

    a.updateSubtreeNeedsAddToScene();

    expect(a.debugSubtreeNeedsAddToScene, true);
    expect(b.debugSubtreeNeedsAddToScene, true);
    expect(c.debugSubtreeNeedsAddToScene, false);
    expect(d.debugSubtreeNeedsAddToScene, true);
    expect(e.debugSubtreeNeedsAddToScene, false);
    expect(f.debugSubtreeNeedsAddToScene, false);
  });

  test('updateSubtreeNeedsAddToScene propagates Layer._needsAddToScene up the tree', () {
94 95 96 97 98 99 100
    final ContainerLayer a = ContainerLayer();
    final ContainerLayer b = ContainerLayer();
    final ContainerLayer c = ContainerLayer();
    final ContainerLayer d = ContainerLayer();
    final ContainerLayer e = ContainerLayer();
    final ContainerLayer f = ContainerLayer();
    final ContainerLayer g = ContainerLayer();
101
    final List<ContainerLayer> allLayers = <ContainerLayer>[a, b, c, d, e, f, g];
102 103 104 105 106 107

    // The tree is like the following where b and j are dirty:
    //        a____
    //       /     \
    //   (x)b___    c
    //     / \  \   |
108
    //    d   e  f  g(x)
109 110 111 112 113 114 115
    a.append(b);
    a.append(c);
    b.append(d);
    b.append(e);
    b.append(f);
    c.append(g);

116
    for (final ContainerLayer layer in allLayers) {
117 118 119
      expect(layer.debugSubtreeNeedsAddToScene, true);
    }

120
    for (final ContainerLayer layer in allLayers) {
121 122 123
      layer.debugMarkClean();
    }

124
    for (final ContainerLayer layer in allLayers) {
125 126 127
      expect(layer.debugSubtreeNeedsAddToScene, false);
    }

128
    b.markNeedsAddToScene();
129 130 131 132 133 134 135 136 137
    a.updateSubtreeNeedsAddToScene();

    expect(a.debugSubtreeNeedsAddToScene, true);
    expect(b.debugSubtreeNeedsAddToScene, true);
    expect(c.debugSubtreeNeedsAddToScene, false);
    expect(d.debugSubtreeNeedsAddToScene, false);
    expect(e.debugSubtreeNeedsAddToScene, false);
    expect(f.debugSubtreeNeedsAddToScene, false);
    expect(g.debugSubtreeNeedsAddToScene, false);
138

139
    g.markNeedsAddToScene();
140 141 142 143 144 145 146 147
    a.updateSubtreeNeedsAddToScene();

    expect(a.debugSubtreeNeedsAddToScene, true);
    expect(b.debugSubtreeNeedsAddToScene, true);
    expect(c.debugSubtreeNeedsAddToScene, true);
    expect(d.debugSubtreeNeedsAddToScene, false);
    expect(e.debugSubtreeNeedsAddToScene, false);
    expect(f.debugSubtreeNeedsAddToScene, false);
148 149 150
    expect(g.debugSubtreeNeedsAddToScene, true);

    a.buildScene(SceneBuilder());
151
    for (final ContainerLayer layer in allLayers) {
152 153
      expect(layer.debugSubtreeNeedsAddToScene, false);
    }
154 155 156 157 158 159 160 161 162 163 164 165 166
  });

  test('leader and follower layers are always dirty', () {
    final LayerLink link = LayerLink();
    final LeaderLayer leaderLayer = LeaderLayer(link: link);
    final FollowerLayer followerLayer = FollowerLayer(link: link);
    leaderLayer.debugMarkClean();
    followerLayer.debugMarkClean();
    leaderLayer.updateSubtreeNeedsAddToScene();
    followerLayer.updateSubtreeNeedsAddToScene();
    expect(leaderLayer.debugSubtreeNeedsAddToScene, true);
    expect(followerLayer.debugSubtreeNeedsAddToScene, true);
  });
167

168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
  test('depthFirstIterateChildren', () {
    final ContainerLayer a = ContainerLayer();
    final ContainerLayer b = ContainerLayer();
    final ContainerLayer c = ContainerLayer();
    final ContainerLayer d = ContainerLayer();
    final ContainerLayer e = ContainerLayer();
    final ContainerLayer f = ContainerLayer();
    final ContainerLayer g = ContainerLayer();

    final PictureLayer h = PictureLayer(Rect.zero);
    final PictureLayer i = PictureLayer(Rect.zero);
    final PictureLayer j = PictureLayer(Rect.zero);

    // The tree is like the following:
    //        a____
    //       /     \
    //      b___    c
    //     / \  \   |
    //    d   e  f  g
    //   / \        |
    //  h   i       j
    a.append(b);
    a.append(c);
    b.append(d);
    b.append(e);
    b.append(f);
    d.append(h);
    d.append(i);
    c.append(g);
    g.append(j);

    expect(
      a.depthFirstIterateChildren(),
      <Layer>[b, d, h, i, e, f, c, g, j],
    );

    d.remove();
    //        a____
    //       /     \
    //      b___    c
    //       \  \   |
    //        e  f  g
    //              |
    //              j
    expect(
      a.depthFirstIterateChildren(),
      <Layer>[b, e, f, c, g, j],
    );
  });

218 219
  void checkNeedsAddToScene(Layer layer, void mutateCallback()) {
    layer.debugMarkClean();
220
    layer.updateSubtreeNeedsAddToScene();
221 222
    expect(layer.debugSubtreeNeedsAddToScene, false);
    mutateCallback();
223
    layer.updateSubtreeNeedsAddToScene();
224 225 226
    expect(layer.debugSubtreeNeedsAddToScene, true);
  }

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
  List<String> _getDebugInfo(Layer layer) {
    final DiagnosticPropertiesBuilder builder = DiagnosticPropertiesBuilder();
    layer.debugFillProperties(builder);
    return builder.properties
        .where((DiagnosticsNode node) => !node.isFiltered(DiagnosticLevel.info))
        .map((DiagnosticsNode node) => node.toString()).toList();
  }

  test('ClipRectLayer prints clipBehavior in debug info', () {
    expect(_getDebugInfo(ClipRectLayer()), contains('clipBehavior: Clip.hardEdge'));
    expect(
      _getDebugInfo(ClipRectLayer(clipBehavior: Clip.antiAliasWithSaveLayer)),
      contains('clipBehavior: Clip.antiAliasWithSaveLayer'),
    );
  });

  test('ClipRRectLayer prints clipBehavior in debug info', () {
    expect(_getDebugInfo(ClipRRectLayer()), contains('clipBehavior: Clip.antiAlias'));
    expect(
      _getDebugInfo(ClipRRectLayer(clipBehavior: Clip.antiAliasWithSaveLayer)),
      contains('clipBehavior: Clip.antiAliasWithSaveLayer'),
    );
  });

  test('ClipPathLayer prints clipBehavior in debug info', () {
    expect(_getDebugInfo(ClipPathLayer()), contains('clipBehavior: Clip.antiAlias'));
    expect(
      _getDebugInfo(ClipPathLayer(clipBehavior: Clip.antiAliasWithSaveLayer)),
      contains('clipBehavior: Clip.antiAliasWithSaveLayer'),
    );
  });

259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
  test('PictureLayer prints picture, engine layer, and raster cache hints in debug info', () {
    final PictureRecorder recorder = PictureRecorder();
    final Canvas canvas = Canvas(recorder);
    canvas.drawPaint(Paint());
    final Picture picture = recorder.endRecording();
    final PictureLayer layer = PictureLayer(const Rect.fromLTRB(0, 0, 1, 1));
    layer.picture = picture;
    layer.isComplexHint = true;
    layer.willChangeHint = false;
    final List<String> info = _getDebugInfo(layer);
    expect(info, contains('picture: ${describeIdentity(picture)}'));
    expect(info, contains('engine layer: ${describeIdentity(null)}'));
    expect(info, contains('raster cache hints: isComplex = true, willChange = false'));
  });

274 275 276 277
  test('mutating PictureLayer fields triggers needsAddToScene', () {
    final PictureLayer pictureLayer = PictureLayer(Rect.zero);
    checkNeedsAddToScene(pictureLayer, () {
      final PictureRecorder recorder = PictureRecorder();
278
      Canvas(recorder);
279 280 281 282 283 284 285 286 287 288 289 290 291 292
      pictureLayer.picture = recorder.endRecording();
    });

    pictureLayer.isComplexHint = false;
    checkNeedsAddToScene(pictureLayer, () {
      pictureLayer.isComplexHint = true;
    });

    pictureLayer.willChangeHint = false;
    checkNeedsAddToScene(pictureLayer, () {
      pictureLayer.willChangeHint = true;
    });
  });

Dan Field's avatar
Dan Field committed
293
  const Rect unitRect = Rect.fromLTRB(0, 0, 1, 1);
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323

  test('mutating PerformanceOverlayLayer fields triggers needsAddToScene', () {
    final PerformanceOverlayLayer layer = PerformanceOverlayLayer(
        overlayRect: Rect.zero, optionsMask: 0, rasterizerThreshold: 0,
        checkerboardRasterCacheImages: false, checkerboardOffscreenLayers: false);
    checkNeedsAddToScene(layer, () {
      layer.overlayRect = unitRect;
    });
  });

  test('mutating OffsetLayer fields triggers needsAddToScene', () {
    final OffsetLayer layer = OffsetLayer();
    checkNeedsAddToScene(layer, () {
      layer.offset = const Offset(1, 1);
    });
  });

  test('mutating ClipRectLayer fields triggers needsAddToScene', () {
    final ClipRectLayer layer = ClipRectLayer(clipRect: Rect.zero);
    checkNeedsAddToScene(layer, () {
      layer.clipRect = unitRect;
    });
    checkNeedsAddToScene(layer, () {
      layer.clipBehavior = Clip.antiAliasWithSaveLayer;
    });
  });

  test('mutating ClipRRectLayer fields triggers needsAddToScene', () {
    final ClipRRectLayer layer = ClipRRectLayer(clipRRect: RRect.zero);
    checkNeedsAddToScene(layer, () {
324
      layer.clipRRect = RRect.fromRectAndRadius(unitRect, Radius.zero);
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
    });
    checkNeedsAddToScene(layer, () {
      layer.clipBehavior = Clip.antiAliasWithSaveLayer;
    });
  });

  test('mutating ClipPath fields triggers needsAddToScene', () {
    final ClipPathLayer layer = ClipPathLayer(clipPath: Path());
    checkNeedsAddToScene(layer, () {
      final Path newPath = Path();
      newPath.addRect(unitRect);
      layer.clipPath = newPath;
    });
    checkNeedsAddToScene(layer, () {
      layer.clipBehavior = Clip.antiAliasWithSaveLayer;
    });
  });

  test('mutating OpacityLayer fields triggers needsAddToScene', () {
    final OpacityLayer layer = OpacityLayer(alpha: 0);
    checkNeedsAddToScene(layer, () {
      layer.alpha = 1;
    });
    checkNeedsAddToScene(layer, () {
      layer.offset = const Offset(1, 1);
    });
  });

353 354 355 356 357 358 359 360 361
  test('mutating ColorFilterLayer fields triggers needsAddToScene', () {
    final ColorFilterLayer layer = ColorFilterLayer(
      colorFilter: const ColorFilter.mode(Color(0xFFFF0000), BlendMode.color),
    );
    checkNeedsAddToScene(layer, () {
      layer.colorFilter = const ColorFilter.mode(Color(0xFF00FF00), BlendMode.color);
    });
  });

362
  test('mutating ShaderMaskLayer fields triggers needsAddToScene', () {
363
    const Gradient gradient = RadialGradient(colors: <Color>[Color(0x00000000), Color(0x00000001)]);
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
    final Shader shader = gradient.createShader(Rect.zero);
    final ShaderMaskLayer layer = ShaderMaskLayer(shader: shader, maskRect: Rect.zero, blendMode: BlendMode.clear);
    checkNeedsAddToScene(layer, () {
      layer.maskRect = unitRect;
    });
    checkNeedsAddToScene(layer, () {
      layer.blendMode = BlendMode.color;
    });
    checkNeedsAddToScene(layer, () {
      layer.shader = gradient.createShader(unitRect);
    });
  });

  test('mutating BackdropFilterLayer fields triggers needsAddToScene', () {
    final BackdropFilterLayer layer = BackdropFilterLayer(filter: ImageFilter.blur());
    checkNeedsAddToScene(layer, () {
      layer.filter = ImageFilter.blur(sigmaX: 1.0);
    });
  });

  test('mutating PhysicalModelLayer fields triggers needsAddToScene', () {
    final PhysicalModelLayer layer = PhysicalModelLayer(
386
        clipPath: Path(), elevation: 0, color: const Color(0x00000000), shadowColor: const Color(0x00000000));
387 388 389 390 391 392 393 394 395
    checkNeedsAddToScene(layer, () {
      final Path newPath = Path();
      newPath.addRect(unitRect);
      layer.clipPath = newPath;
    });
    checkNeedsAddToScene(layer, () {
      layer.elevation = 1;
    });
    checkNeedsAddToScene(layer, () {
396
      layer.color = const Color(0x00000001);
397 398
    });
    checkNeedsAddToScene(layer, () {
399
      layer.shadowColor = const Color(0x00000001);
400 401
    });
  });
402 403 404 405 406 407 408 409 410

  group('PhysicalModelLayer checks elevations', () {
    /// Adds the layers to a container where A paints before B.
    ///
    /// Expects there to be `expectedErrorCount` errors.  Checking elevations is
    /// enabled by default.
    void _testConflicts(
      PhysicalModelLayer layerA,
      PhysicalModelLayer layerB, {
411
      required int expectedErrorCount,
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
      bool enableCheck = true,
    }) {
      assert(expectedErrorCount != null);
      assert(enableCheck || expectedErrorCount == 0, 'Cannot disable check and expect non-zero error count.');
      final OffsetLayer container = OffsetLayer();
      container.append(layerA);
      container.append(layerB);
      debugCheckElevationsEnabled = enableCheck;
      debugDisableShadows = false;
      int errors = 0;
      if (enableCheck) {
        FlutterError.onError = (FlutterErrorDetails details) {
          errors++;
        };
      }
      container.buildScene(SceneBuilder());
      expect(errors, expectedErrorCount);
      debugCheckElevationsEnabled = false;
    }

    // Tests:
    //
    //  ─────────────                    (LayerA, paints first)
    //      │     ─────────────          (LayerB, paints second)
    //      │          │
    // ───────────────────────────
    test('Overlapping layers at wrong elevation', () {
      final PhysicalModelLayer layerA = PhysicalModelLayer(
Dan Field's avatar
Dan Field committed
440
        clipPath: Path()..addRect(const Rect.fromLTWH(0, 0, 20, 20)),
441
        elevation: 3.0,
442 443
        color: const Color(0x00000000),
        shadowColor: const Color(0x00000000),
444 445
      );
      final PhysicalModelLayer layerB =PhysicalModelLayer(
Dan Field's avatar
Dan Field committed
446
        clipPath: Path()..addRect(const Rect.fromLTWH(10, 10, 20, 20)),
447
        elevation: 2.0,
448 449
        color: const Color(0x00000000),
        shadowColor: const Color(0x00000000),
450 451
      );
      _testConflicts(layerA, layerB, expectedErrorCount: 1);
452
    }, skip: isBrowser); // https://github.com/flutter/flutter/issues/44572
453 454 455 456 457 458 459 460 461 462 463

    // Tests:
    //
    //  ─────────────                    (LayerA, paints first)
    //      │     ─────────────          (LayerB, paints second)
    //      │         │
    // ───────────────────────────
    //
    // Causes no error if check is disabled.
    test('Overlapping layers at wrong elevation, check disabled', () {
      final PhysicalModelLayer layerA = PhysicalModelLayer(
Dan Field's avatar
Dan Field committed
464
        clipPath: Path()..addRect(const Rect.fromLTWH(0, 0, 20, 20)),
465
        elevation: 3.0,
466 467
        color: const Color(0x00000000),
        shadowColor: const Color(0x00000000),
468 469
      );
      final PhysicalModelLayer layerB =PhysicalModelLayer(
Dan Field's avatar
Dan Field committed
470
        clipPath: Path()..addRect(const Rect.fromLTWH(10, 10, 20, 20)),
471
        elevation: 2.0,
472 473
        color: const Color(0x00000000),
        shadowColor: const Color(0x00000000),
474 475 476 477 478 479 480 481 482 483 484 485
      );
      _testConflicts(layerA, layerB, expectedErrorCount: 0, enableCheck: false);
    });

    // Tests:
    //
    //   ──────────                      (LayerA, paints first)
    //        │       ───────────        (LayerB, paints second)
    //        │            │
    // ────────────────────────────
    test('Non-overlapping layers at wrong elevation', () {
      final PhysicalModelLayer layerA = PhysicalModelLayer(
Dan Field's avatar
Dan Field committed
486
        clipPath: Path()..addRect(const Rect.fromLTWH(0, 0, 20, 20)),
487
        elevation: 3.0,
488 489
        color: const Color(0x00000000),
        shadowColor: const Color(0x00000000),
490 491
      );
      final PhysicalModelLayer layerB =PhysicalModelLayer(
Dan Field's avatar
Dan Field committed
492
        clipPath: Path()..addRect(const Rect.fromLTWH(20, 20, 20, 20)),
493
        elevation: 2.0,
494 495
        color: const Color(0x00000000),
        shadowColor: const Color(0x00000000),
496 497
      );
      _testConflicts(layerA, layerB, expectedErrorCount: 0);
498
    }, skip: isBrowser); // https://github.com/flutter/flutter/issues/44572
499 500 501 502 503 504 505 506 507 508 509

    // Tests:
    //
    //     ───────                       (Child of A, paints second)
    //        │
    //   ───────────                     (LayerA, paints first)
    //        │       ────────────       (LayerB, paints third)
    //        │             │
    // ────────────────────────────
    test('Non-overlapping layers at wrong elevation, child at lower elevation', () {
      final PhysicalModelLayer layerA = PhysicalModelLayer(
Dan Field's avatar
Dan Field committed
510
        clipPath: Path()..addRect(const Rect.fromLTWH(0, 0, 20, 20)),
511
        elevation: 3.0,
512 513
        color: const Color(0x00000000),
        shadowColor: const Color(0x00000000),
514 515 516
      );

      layerA.append(PhysicalModelLayer(
Dan Field's avatar
Dan Field committed
517
        clipPath: Path()..addRect(const Rect.fromLTWH(2, 2, 10, 10)),
518
        elevation: 1.0,
519 520
        color: const Color(0x00000000),
        shadowColor: const Color(0x00000000),
521 522 523
      ));

      final PhysicalModelLayer layerB =PhysicalModelLayer(
Dan Field's avatar
Dan Field committed
524
        clipPath: Path()..addRect(const Rect.fromLTWH(20, 20, 20, 20)),
525
        elevation: 2.0,
526 527
        color: const Color(0x00000000),
        shadowColor: const Color(0x00000000),
528 529
      );
      _testConflicts(layerA, layerB, expectedErrorCount: 0);
530
    }, skip: isBrowser); // https://github.com/flutter/flutter/issues/44572
531 532 533 534 535 536 537 538 539 540 541 542 543 544

    // Tests:
    //
    //        ───────────                (Child of A, paints second, overflows)
    //           │    ────────────       (LayerB, paints third)
    //   ───────────       │             (LayerA, paints first)
    //         │           │
    //         │           │
    // ────────────────────────────
    //
    // Which fails because the overflowing child overlaps something that paints
    // after it at a lower elevation.
    test('Child overflows parent and overlaps another physical layer', () {
      final PhysicalModelLayer layerA = PhysicalModelLayer(
Dan Field's avatar
Dan Field committed
545
        clipPath: Path()..addRect(const Rect.fromLTWH(0, 0, 20, 20)),
546
        elevation: 3.0,
547 548
        color: const Color(0x00000000),
        shadowColor: const Color(0x00000000),
549 550 551
      );

      layerA.append(PhysicalModelLayer(
Dan Field's avatar
Dan Field committed
552
        clipPath: Path()..addRect(const Rect.fromLTWH(15, 15, 25, 25)),
553
        elevation: 2.0,
554 555
        color: const Color(0x00000000),
        shadowColor: const Color(0x00000000),
556 557 558
      ));

      final PhysicalModelLayer layerB =PhysicalModelLayer(
Dan Field's avatar
Dan Field committed
559
        clipPath: Path()..addRect(const Rect.fromLTWH(20, 20, 20, 20)),
560
        elevation: 4.0,
561 562
        color: const Color(0x00000000),
        shadowColor: const Color(0x00000000),
563 564 565
      );

      _testConflicts(layerA, layerB, expectedErrorCount: 1);
566 567
    }, skip: isBrowser); // https://github.com/flutter/flutter/issues/44572
  });
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584

  test('ContainerLayer.toImage can render interior layer', () {
    final OffsetLayer parent = OffsetLayer();
    final OffsetLayer child = OffsetLayer();
    final OffsetLayer grandChild = OffsetLayer();
    child.append(grandChild);
    parent.append(child);

    // This renders the layers and generates engine layers.
    parent.buildScene(SceneBuilder());

    // Causes grandChild to pass its engine layer as `oldLayer`
    grandChild.toImage(const Rect.fromLTRB(0, 0, 10, 10));

    // Ensure we can render the same scene again after rendering an interior
    // layer.
    parent.buildScene(SceneBuilder());
585
  }, skip: isBrowser); // TODO(yjbanov): `toImage` doesn't work on the Web: https://github.com/flutter/flutter/issues/42767
586 587 588 589 590
}

class _TestAlwaysNeedsAddToSceneLayer extends ContainerLayer {
  @override
  bool get alwaysNeedsAddToScene => true;
591
}