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

import 'package:flutter/rendering.dart';
6
import '../flutter_test_alternative.dart';
7 8 9 10

import 'rendering_tester.dart';

void main() {
Ian Hickson's avatar
Ian Hickson committed
11
  test('RenderFractionallySizedBox constraints', () {
12
    RenderBox root, leaf, test;
13 14 15 16
    root = RenderPositionedBox(
      child: RenderConstrainedBox(
        additionalConstraints: BoxConstraints.tight(const Size(200.0, 200.0)),
        child: test = RenderFractionallySizedOverflowBox(
17 18
          widthFactor: 2.0,
          heightFactor: 0.5,
19
          child: leaf = RenderConstrainedBox(
20
            additionalConstraints: const BoxConstraints.expand()
21 22 23
          ),
        ),
      ),
24 25 26 27 28 29 30 31 32
    );
    layout(root);
    expect(root.size.width, equals(800.0));
    expect(root.size.height, equals(600.0));
    expect(test.size.width, equals(200.0));
    expect(test.size.height, equals(200.0));
    expect(leaf.size.width, equals(400.0));
    expect(leaf.size.height, equals(100.0));
  });
33

Ian Hickson's avatar
Ian Hickson committed
34
  test('BoxConstraints with NaN', () {
35 36 37 38
    String result;

    result = 'no exception';
    try {
39
      const BoxConstraints constraints = BoxConstraints(minWidth: double.nan, maxWidth: double.nan, minHeight: 2.0, maxHeight: double.nan);
40
      assert(constraints.debugAssertIsValid());
41 42 43 44 45
    } on FlutterError catch (e) {
      result = '$e';
    }
    expect(result, equals(
      'BoxConstraints has NaN values in minWidth, maxWidth, and maxHeight.\n'
46 47
      'The offending constraints were:\n'
      '  BoxConstraints(NaN<=w<=NaN, 2.0<=h<=NaN; NOT NORMALIZED)'
48 49 50 51
    ));

    result = 'no exception';
    try {
52
      const BoxConstraints constraints = BoxConstraints(minHeight: double.nan);
53
      assert(constraints.debugAssertIsValid());
54 55 56 57 58
    } on FlutterError catch (e) {
      result = '$e';
    }
    expect(result, equals(
      'BoxConstraints has a NaN value in minHeight.\n'
59 60
      'The offending constraints were:\n'
      '  BoxConstraints(0.0<=w<=Infinity, NaN<=h<=Infinity; NOT NORMALIZED)'
61 62 63 64
    ));

    result = 'no exception';
    try {
65
      const BoxConstraints constraints = BoxConstraints(minHeight: double.nan, maxWidth: 0.0/0.0);
66
      assert(constraints.debugAssertIsValid());
67 68 69 70 71
    } on FlutterError catch (e) {
      result = '$e';
    }
    expect(result, equals(
      'BoxConstraints has NaN values in maxWidth and minHeight.\n'
72 73
      'The offending constraints were:\n'
      '  BoxConstraints(0.0<=w<=NaN, NaN<=h<=Infinity; NOT NORMALIZED)'
74 75
    ));
  });
76
}