overflow_test.dart 1.72 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
Ian Hickson's avatar
Ian Hickson committed
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
// @dart = 2.8

7 8
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
9
import '../flutter_test_alternative.dart';
10 11 12 13

import 'rendering_tester.dart';

void main() {
Ian Hickson's avatar
Ian Hickson committed
14
  test('overflow should not affect baseline', () {
15 16 17
    RenderBox root, child, text;
    double baseline1, baseline2, height1, height2;

18 19 20
    root = RenderPositionedBox(
      child: RenderCustomPaint(
        child: child = text = RenderParagraph(
Ian Hickson's avatar
Ian Hickson committed
21 22 23
          const TextSpan(text: 'Hello World'),
          textDirection: TextDirection.ltr,
        ),
24
        painter: TestCallbackPainter(
25 26 27
          onPaint: () {
            baseline1 = child.getDistanceToBaseline(TextBaseline.alphabetic);
            height1 = text.size.height;
28 29 30
          },
        ),
      ),
31 32 33
    );
    layout(root, phase: EnginePhase.paint);

34 35 36 37
    root = RenderPositionedBox(
      child: RenderCustomPaint(
        child: child = RenderConstrainedOverflowBox(
          child: text = RenderParagraph(
Ian Hickson's avatar
Ian Hickson committed
38 39 40
            const TextSpan(text: 'Hello World'),
            textDirection: TextDirection.ltr,
          ),
41
          maxHeight: height1 / 2.0,
42
          alignment: Alignment.topLeft,
43
        ),
44
        painter: TestCallbackPainter(
45 46 47
          onPaint: () {
            baseline2 = child.getDistanceToBaseline(TextBaseline.alphabetic);
            height2 = text.size.height;
48 49 50
          },
        ),
      ),
51 52 53 54 55 56 57 58 59
    );
    layout(root, phase: EnginePhase.paint);

    expect(baseline1, lessThan(height1));
    expect(height2, equals(height1 / 2.0));
    expect(baseline2, equals(baseline1));
    expect(baseline2, greaterThan(height2));
  });
}