constraints_test.dart 2.53 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
// 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/rendering.dart';
import 'package:test/test.dart';

import 'rendering_tester.dart';

void main() {
Ian Hickson's avatar
Ian Hickson committed
11
  test('RenderFractionallySizedBox constraints', () {
12 13 14 15
    RenderBox root, leaf, test;
    root = new RenderPositionedBox(
      child: new RenderConstrainedBox(
        additionalConstraints: new BoxConstraints.tight(const Size(200.0, 200.0)),
16
        child: test = new RenderFractionallySizedOverflowBox(
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
          widthFactor: 2.0,
          heightFactor: 0.5,
          child: leaf = new RenderConstrainedBox(
            additionalConstraints: const BoxConstraints.expand()
          )
        )
      )
    );
    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
      final BoxConstraints constraints = const 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
      final BoxConstraints constraints = const 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
      final BoxConstraints constraints = const 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
}